/* ===== DESIGN SYSTEM - Kraken Control (Abyss + Seafoam) ===== */
:root {
    /* Colors - Kraken dark theme */
    --bg-primary: #1B222C;
    --bg-secondary: #232d3a;
    --bg-card: #253040;
    --bg-card-hover: #2c3849;
    --text-primary: #F0F4F8;
    --text-secondary: #b0bec5;
    --text-muted: #78909c;
    
    /* Accent - Kraken Seafoam/Aqua */
    --accent-primary: #A2E3D4;
    --accent-secondary: #6EF3D6;
    --accent-gradient: linear-gradient(135deg, #A2E3D4 0%, #6EF3D6 100%);
    
    /* Blue accent for CTAs */
    --blue-primary: #6EF3D6;
    --blue-hover: #5ae0c3;
    
    /* Success/Error */
    --success: #6EF3D6;
    --error: #ef5350;
    
    /* Spacing - 8px grid */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    
    /* Typography */
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
    
    /* Kraken palette reference */
    --kraken-mint: #A2E3D4;
    --kraken-neon: #6EF3D6;
    --kraken-steel: #84A9C0;
    --kraken-abyss: #1B222C;
    --kraken-lavender: #E8B4D1;
    
    /* Borders & Shadows */
    --border-subtle: 1px solid rgba(162, 227, 212, 0.1);
    --border-card: 1px solid rgba(162, 227, 212, 0.08);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(110, 243, 214, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(180deg, #1B222C 0%, #1f2937 50%, #1B222C 100%);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(27, 34, 44, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(162, 227, 212, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-full {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-logo-icon {
    height: 38px;
    width: 38px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(162, 227, 212, 0.2);
}

.nav-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--accent-primary);
    color: var(--kraken-abyss);
    font-size: 1rem;
    font-weight: 700;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(110, 243, 214, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(110, 243, 214, 0.4);
    color: var(--kraken-abyss);
    background: var(--accent-secondary);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(162, 227, 212, 0.25);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(162, 227, 212, 0.08);
    border-color: rgba(162, 227, 212, 0.4);
}

.btn-install {
    font-size: 1.1rem;
    padding: var(--space-sm) var(--space-md);
    animation: btn-kraken-pulse 4s ease-in-out infinite;
}

/* Nav "Get Started" button */
.nav-links .btn-primary {
    background: var(--accent-secondary);
    color: var(--kraken-abyss);
    box-shadow: 0 4px 16px rgba(110, 243, 214, 0.2);
    animation: none;
}

.nav-links .btn-primary:hover {
    background: #5ae0c3;
    box-shadow: 0 6px 24px rgba(110, 243, 214, 0.35);
}

@keyframes btn-kraken-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(110,243,214,0.2); }
    30% { box-shadow: 0 4px 36px rgba(110,243,214,0.4), 0 0 16px rgba(162,227,212,0.2); }
    50% { box-shadow: 0 4px 20px rgba(110,243,214,0.2); }
    75% { box-shadow: 0 4px 30px rgba(162,227,212,0.35), 0 0 12px rgba(110,243,214,0.2); }
}

.chrome-icon {
    margin-right: 4px;
}

/* ===== HERO SECTION - 1fr 2fr Grid ===== */
.hero {
    min-height: calc(100vh - 70px);
    padding: var(--space-md) var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 72px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    align-items: start;
}

/* Left column - Copy (1/3) — centered vertically + horizontally */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

.hero-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Electrified full tagline shimmer — slow nuclear glow */
.hero-headline.electrified {
    overflow: visible;
}

.headline-zone {
    position: relative;
    display: inline-block;
}

.electrified-text {
    background: linear-gradient(135deg, #A2E3D4 0%, #6EF3D6 30%, #84A9C0 60%, #6EF3D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    position: relative;
    display: inline;
    animation: kraken-glow 5s ease-in-out infinite, kraken-shift 8s ease-in-out infinite;
}

/* Kraken deep-sea glow — bioluminescent pulse */
@keyframes kraken-glow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 1px rgba(110,243,214,0.06)); }
    20% { filter: brightness(1.12) drop-shadow(0 0 7px rgba(110,243,214,0.18)); }
    35% { filter: brightness(1.25) drop-shadow(0 0 12px rgba(162,227,212,0.24)); }
    50% { filter: brightness(1.08) drop-shadow(0 0 5px rgba(132,169,192,0.12)); }
    70% { filter: brightness(1.2) drop-shadow(0 0 10px rgba(110,243,214,0.21)); }
    85% { filter: brightness(1.03) drop-shadow(0 0 2px rgba(162,227,212,0.09)); }
}

/* Slow gradient position shift for living water effect */
@keyframes kraken-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Sub-tagline under hero headline — styled like header, gradient text */
.hero-sub-tagline {
    display: block;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    background: linear-gradient(135deg, #b0bec5 0%, #F0F4F8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.hero-sub-tagline i {
    -webkit-text-fill-color: initial;
    color: var(--accent-primary);
    margin-right: 6px;
    font-size: 0.9em;
}

/* (Corner sparks removed — clean Kraken aesthetic) */

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 420px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.cta-subtext {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Metrics - 3 uniform boxes with icons, centered in left column */
.hero-metrics {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-sm);
}

.metric-box {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-sm);
    text-align: center;
    flex: 1;
    max-width: 120px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.metric-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.metric-icon {
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin-bottom: 6px;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Right column - Visual (2/3) — stretch to fill */
.hero-visual {
    position: relative;
    min-height: 580px;
    display: flex;
    flex-direction: column;
}

/* Sandbox frost layer — sits behind toolbar, fades on first click */
.sandbox-frost {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background: rgba(27, 34, 44, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.sandbox-frost.dismissed {
    opacity: 0;
    visibility: hidden;
}

.sandbox-frost-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 100px;
}

/* Product bg starts hidden, fades in when frost dismissed */
.sandbox-bg-hidden {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sandbox-bg-hidden.visible {
    opacity: 1;
}

/* Kraken tentacle arms — SVG arms reaching from CTA up to toolbar */
.tentacle-arms {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px;
    pointer-events: none;
    z-index: 6;
}

.tentacle-svg {
    position: absolute;
    bottom: 0;
    height: 75%;
    width: 60px;
    opacity: 0.9;
}

.tentacle-arm-1 {
    left: 28%;
    animation: tentacle-writhe-1 3.5s ease-in-out infinite;
    transform-origin: bottom center;
}

.tentacle-arm-2 {
    left: 50%;
    margin-left: -30px;
    animation: tentacle-writhe-2 4s ease-in-out infinite;
    transform-origin: bottom center;
    height: 80%;
}

.tentacle-arm-3 {
    right: 28%;
    animation: tentacle-writhe-3 3.8s ease-in-out infinite;
    transform-origin: bottom center;
    height: 70%;
}

@keyframes tentacle-writhe-1 {
    0%, 100% { transform: rotate(-2deg) scaleY(1); }
    25% { transform: rotate(3deg) scaleY(1.03); }
    50% { transform: rotate(-4deg) scaleY(0.98); }
    75% { transform: rotate(1deg) scaleY(1.02); }
}

@keyframes tentacle-writhe-2 {
    0%, 100% { transform: rotate(1deg) scaleY(1); }
    30% { transform: rotate(-3deg) scaleY(1.04); }
    60% { transform: rotate(2deg) scaleY(0.97); }
    85% { transform: rotate(-1deg) scaleY(1.01); }
}

@keyframes tentacle-writhe-3 {
    0%, 100% { transform: rotate(2deg) scaleY(1); }
    20% { transform: rotate(-2deg) scaleY(1.02); }
    45% { transform: rotate(4deg) scaleY(0.98); }
    70% { transform: rotate(-3deg) scaleY(1.03); }
}

.sandbox-cue-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.sandbox-cue-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Pulsating toolbar invite border */
.sandbox-toolbar.toolbar-pulse {
    box-shadow: 0 2px 12px rgba(0,0,0,0.12), 0 0 0 0.5px rgba(0,0,0,0.05),
                0 0 0 3px rgba(110, 243, 214, 0.5);
    animation: toolbar-invite 2s ease-in-out infinite;
}

@keyframes toolbar-invite {
    0%, 100% { box-shadow: 0 2px 12px rgba(0,0,0,0.12), 0 0 0 0.5px rgba(0,0,0,0.05),
                           0 0 0 3px rgba(110, 243, 214, 0.45); }
    50% { box-shadow: 0 2px 12px rgba(0,0,0,0.12), 0 0 0 0.5px rgba(0,0,0,0.05),
                      0 0 0 6px rgba(110, 243, 214, 0.2), 0 0 20px rgba(110, 243, 214, 0.15); }
}

@keyframes cue-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Sandbox shell — no border, clean */
.browser-shell.sandbox-live {
    border: none;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-lg);
    position: relative;
}

/* (Spark/lightning animations removed — clean Kraken aesthetic) */

/* ===== BROWSER SHELL (traffic lights, address bar, puzzle icon) ===== */
.browser-shell {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(0,0,0,0.06);
    overflow: hidden;
    background: var(--bg-card);
}

.browser-shell-chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    background: #2c3849;
    border-bottom: 1px solid rgba(162,227,212,0.1);
}

.browser-shell-dots {
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dot-red { background: #ff5f57; }
.browser-dot-yellow { background: #febc2e; }
.browser-dot-green { background: #28c840; }

.browser-shell-address {
    flex: 1;
    max-width: 400px;
    padding: 5px 12px;
    border: 1px solid rgba(162,227,212,0.15);
    border-radius: 6px;
    background: #1B222C;
    font-size: 12px;
    color: var(--text-secondary);
}

.browser-shell-extensions {
    color: var(--text-muted);
    font-size: 14px;
    padding: 4px 8px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: var(--space-xl) var(--space-md);
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: var(--space-md);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto var(--space-sm);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ===== FEATURES GRID ===== */
.features {
    padding: var(--space-xl) var(--space-md);
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.feature-card.highlight {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

/* Filled circle icon for feature cards — centered, uniform */
.feature-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(110,243,214,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    font-size: 1.4rem;
    color: var(--accent-primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Legacy fallback (keeps old class working) */
.feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    color: var(--accent-primary);
}

.pro-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--accent-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--space-xl) var(--space-md);
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.testimonial-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.testimonial-content {
    margin-bottom: var(--space-md);
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-content p::before {
    content: '"';
    font-size: 2rem;
    color: var(--accent-primary);
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 4px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* ===== PRICING ===== */
.pricing {
    padding: var(--space-xl) var(--space-md);
    background: var(--bg-primary);
    text-align: center;
}

.pricing-subtitle {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    margin-top: calc(var(--space-lg) * -1 + var(--space-sm));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: left;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.features-list {
    list-style: none;
    margin-bottom: var(--space-md);
}

.features-list li {
    padding: var(--space-xs) 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.features-list li.included::before {
    content: "✓ ";
    color: var(--success);
    font-weight: bold;
}

.features-list li.disabled {
    color: var(--text-muted);
}

.features-list li.disabled::before {
    content: "✗ ";
    color: var(--text-muted);
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    justify-content: center;
}

.trial-note {
    display: block;
    text-align: center;
    margin-top: var(--space-xs);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Enterprise+ card */
.pricing-card.enterprise {
    border-color: var(--kraken-steel);
    background: linear-gradient(180deg, #253040 0%, #1f2937 100%);
}

.coming-soon-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #232f3e;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.btn-enterprise {
    border-color: #232f3e;
    color: #232f3e;
}

.btn-enterprise:hover {
    background: #232f3e;
    color: white;
}

.pricing-note {
    margin-top: var(--space-lg);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ===== FAQ ===== */
.faq {
    padding: var(--space-xl) var(--space-md);
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    gap: var(--space-md);
    max-width: 800px;
    margin: var(--space-lg) auto 0;
}

.faq-item {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    border-top: var(--border-subtle);
    padding: var(--space-lg) var(--space-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(162, 227, 212, 0.15);
    margin-bottom: var(--space-xs);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-disclaimer {
    max-width: 800px;
    margin: var(--space-md) auto;
    padding: var(--space-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    text-align: center;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-copyright {
    text-align: center;
    padding-top: var(--space-md);
    border-top: var(--border-subtle);
    margin-top: var(--space-md);
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ===== PRICING TIER TAGLINE ===== */
.pricing-tier-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--space-sm);
    margin-top: calc(var(--space-sm) * -1 + 4px);
}

/* ===== KIP CHAT BUBBLE ===== */
.kip-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.kip-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(110, 243, 214, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.kip-trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(110, 243, 214, 0.5);
}

.kip-trigger-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.kip-notification-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: #ef5350;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    animation: kip-dot-pulse 2s ease-in-out infinite;
}

@keyframes kip-dot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.kip-chat {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid rgba(162, 227, 212, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.kip-chat.kip-chat-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.kip-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(162, 227, 212, 0.1);
    background: rgba(27, 34, 44, 0.6);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.kip-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
}

.kip-chat-header strong {
    color: var(--text-primary);
    font-size: 0.9375rem;
    display: block;
}

.kip-status {
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 500;
}

.kip-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.875rem;
    padding: 4px;
    transition: color 0.2s;
}

.kip-close:hover {
    color: var(--text-primary);
}

.kip-chat-body {
    padding: 16px;
}

.kip-message {
    background: rgba(162, 227, 212, 0.08);
    border: 1px solid rgba(162, 227, 212, 0.1);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 8px;
}

.kip-message p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.kip-message strong {
    color: var(--accent-primary);
}

.kip-message-sub {
    background: transparent;
    border-color: transparent;
    padding: 4px 14px;
}

.kip-message-sub p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}
