﻿/* ============================
   VARIABLES
   ============================ */
:root {
    --bg:       #09090b;
    --bg-alt:   #0d0d10;
    --surface:  #18181b;
    --elevated: #27272a;
    --border:   #27272a;
    --border2:  #3f3f46;
    --text:     #fafafa;
    --secondary:#a1a1aa;
    --muted:    #71717a;
    --dim:      #52525b;
    --blue:     #3b82f6;
    --blue-dim: #1e3a5f;
    --blue-lt:  #60a5fa;
    --green:    #22c55e;
    --amber:    #f59e0b;
    --violet:   #8b5cf6;
    --pink:     #ec4899;
    --teal:     #14b8a6;
    --red:      #ef4444;
    --font:     "Inter", system-ui, sans-serif;
    --mono:     "JetBrains Mono", monospace;
}

/* ============================
   RESET
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; outline: none; }
ul { list-style: none; }

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.will-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.will-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}
.bento-grid .bento-card:nth-child(2) { transition-delay: 60ms; }
.bento-grid .bento-card:nth-child(3) { transition-delay: 30ms; }
.bento-grid .bento-card:nth-child(4) { transition-delay: 90ms; }
.bento-grid .bento-card:nth-child(5) { transition-delay: 120ms; }
.agents-cards .agent-card:nth-child(2) { transition-delay: 50ms; }
.agents-cards .agent-card:nth-child(3) { transition-delay: 100ms; }
.agents-cards .agent-card:nth-child(4) { transition-delay: 150ms; }
.agents-cards .agent-card:nth-child(5) { transition-delay: 200ms; }
.steps-grid .step-card:nth-child(3)   { transition-delay: 80ms; }
.steps-grid .step-card:nth-child(5)   { transition-delay: 160ms; }

/* ============================
   KEYFRAMES
   ============================ */
@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50%       { transform: scale(2.2); opacity: 0; }
}
@keyframes miniDotPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50%       { transform: scale(2.8); opacity: 0; }
}
@keyframes greenDotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@keyframes overlaySlide {
    0%   { transform: translateX(-50%) translateY(-120px); opacity: 0; }
    12%  { transform: translateX(-50%) translateY(0);      opacity: 1; }
    72%  { transform: translateX(-50%) translateY(0);      opacity: 1; }
    86%  { transform: translateX(-50%) translateY(-120px); opacity: 0; }
    100% { transform: translateX(-50%) translateY(-120px); opacity: 0; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}
@keyframes soundPulse {
    0%, 100% { transform: scaleY(0.35); opacity: 0.4; }
    50%       { transform: scaleY(1);    opacity: 1; }
}
@keyframes cardGlow {
    0%, 100% { border-color: var(--border); box-shadow: 0 4px 32px rgba(0,0,0,0.35); }
    50%       { border-color: rgba(59,130,246,0.35); box-shadow: 0 4px 48px rgba(59,130,246,0.1); }
}
@keyframes starPulse {
    0%, 100% { opacity: 0.15; }
    50%       { opacity: 0.45; }
}

/* ============================
   NAV — pill flottant
   ============================ */
nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 64px);
    max-width: 1140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(18,18,27,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: background 200ms, box-shadow 200ms, border-color 200ms;
}
nav.scrolled {
    background: rgba(18,18,27,0.97);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--blue);
    position: relative;
}
.nav-dot::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.3;
    animation: dotPulse 1.8s ease-out infinite;
}
.nav-brand  { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
.nav-badge  { background: var(--blue-dim); color: var(--blue-lt); font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 20px; }
.nav-links  { display: flex; align-items: center; gap: 24px; }
.nav-link   { font-size: 14px; color: var(--muted); transition: color 150ms; }
.nav-link:hover { color: var(--text); }
.btn-primary {
    background: var(--blue); color: #fff;
    font-size: 14px; font-weight: 600;
    padding: 10px 20px; border-radius: 6px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background 150ms;
}
.btn-primary:hover { background: #2563eb; }
.theme-toggle {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--elevated); border: 1px solid var(--border);
    color: var(--muted); font-size: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 150ms; flex-shrink: 0;
}
.theme-toggle:hover { color: var(--text); border-color: var(--border2); background: var(--surface); }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: 20px;
    background: var(--elevated); border: 1px solid var(--border);
    color: var(--text); font-size: 13px; font-weight: 500;
    cursor: pointer; transition: all 150ms; white-space: nowrap;
}
.lang-btn:hover { border-color: var(--border2); }
.lang-chevron { font-size: 10px; color: var(--muted); transition: transform 200ms; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }
.lang-menu {
    position: absolute; top: calc(100% + 10px); right: 0;
    min-width: 160px; background: var(--surface);
    border: 1px solid var(--border); border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35); overflow: hidden;
    opacity: 0; pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 150ms, transform 150ms;
    z-index: 1010;
}
.lang-switcher.open .lang-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-option {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; background: transparent; border: none;
    color: var(--text); font-size: 14px; cursor: pointer; transition: background 100ms;
}
.lang-option:hover { background: var(--elevated); }
.lang-check { font-size: 12px; color: var(--blue); }

/* Burger */
.nav-burger {
    display: none; flex-direction: column; justify-content: center;
    align-items: center; gap: 5px;
    width: 36px; height: 36px;
    background: var(--elevated); border: 1px solid var(--border);
    border-radius: 8px; padding: 0; cursor: pointer;
    transition: border-color 150ms; flex-shrink: 0;
}
.nav-burger:hover { border-color: var(--border2); }
.burger-bar {
    width: 18px; height: 2px;
    background: var(--text); border-radius: 2px;
    display: block; transition: transform 300ms ease, opacity 300ms ease;
}
.nav-burger.open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open .burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   MOBILE MENU
   ============================ */
.mobile-menu {
    display: none; position: fixed;
    top: 88px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 32px); max-width: 600px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    z-index: 998; overflow: hidden;
    max-height: 0; opacity: 0; pointer-events: none;
    transition: max-height 350ms cubic-bezier(0.4,0,0.2,1), opacity 220ms ease;
}
.mobile-menu.open { max-height: 520px; opacity: 1; pointer-events: all; }
.mobile-menu-inner { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
    display: block; padding: 13px 16px;
    color: var(--text); font-size: 15px; font-weight: 500;
    border-radius: 10px; transition: background 150ms;
}
.mobile-nav-link:hover { background: var(--elevated); }
.mobile-divider { height: 1px; background: var(--border); margin: 6px 0; }
.mobile-lang-row { display: flex; gap: 8px; }
.mobile-lang-opt {
    flex: 1; padding: 11px 8px;
    background: var(--elevated); border: 1px solid var(--border);
    border-radius: 10px; color: var(--muted);
    font-size: 14px; font-weight: 500; font-family: var(--font);
    cursor: pointer; transition: all 150ms;
}
.mobile-lang-opt.active {
    background: rgba(59,130,246,0.1);
    border-color: rgba(59,130,246,0.35);
    color: var(--blue-lt);
}
.mobile-theme-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 16px;
    background: var(--elevated); border: 1px solid var(--border);
    border-radius: 10px;
}
.mobile-theme-label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.mobile-theme-label i { color: var(--muted); font-size: 14px; width: 16px; text-align: center; }
.mobile-theme-toggle-btn {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--surface); border: 1px solid var(--border);
    color: var(--muted); font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 150ms; font-family: var(--font);
}
.mobile-cta-btn {
    display: block; padding: 14px;
    background: var(--blue); color: #fff;
    font-size: 15px; font-weight: 600;
    border-radius: 10px; text-align: center;
    transition: background 150ms; margin-top: 4px;
}
.mobile-cta-btn:hover { background: #2563eb; }

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--blue); color: #fff; border: none;
    font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(59,130,246,0.4);
    opacity: 0; transform: translateY(8px);
    transition: opacity 200ms, transform 200ms, background 150ms;
    z-index: 999; pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover   { background: #2563eb; }

/* ============================
   LIGHT MODE
   ============================ */
body.light-mode {
    --bg: #f4f4f5; --bg-alt: #eaeaec; --surface: #ffffff;
    --elevated: #ebebed; --border: #e4e4e7; --border2: #d4d4d8;
    --text: #09090b; --secondary: #3f3f46; --muted: #52525b;
    --dim: #71717a; --blue-dim: #dbeafe; --blue-lt: #2563eb;
}
body.light-mode nav {
    background: rgba(255,255,255,0.92);
    border-color: #e4e4e7;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
body.light-mode nav.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
body.light-mode .hero { background: linear-gradient(135deg, #eff6ff 0%, #f0f4ff 100%); }
body.light-mode #stars-canvas { opacity: 0.08; }
body.light-mode .eyebrow {
    background: rgba(59,130,246,0.08);
    border-color: rgba(59,130,246,0.25);
    color: #2563eb;
}
body.light-mode .app-mockup {
    background: #f0f0f2;
    border-color: #e4e4e7;
}
body.light-mode .app-titlebar { background: #e8e8eb; border-color: #d4d4d8; }
body.light-mode .app-sidebar-mini { background: #e8e8eb; border-color: #d4d4d8; }
body.light-mode .mini-agent { background: #f0f0f2; border-color: #e4e4e7; }
body.light-mode .mini-stat  { background: #f0f0f2; border-color: #e4e4e7; }
body.light-mode .footer-cta { background: linear-gradient(135deg, #eff6ff 0%, #f4f4f5 100%); }
body.light-mode .mobile-menu { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

/* ============================
   SEO H1 (invisible pour les users, indexé par Google)
   ============================ */
.seo-h1 {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    font-size: 0 !important;
}

/* ============================
   CURSOR (typewriter)
   ============================ */
.cursor {
    display: inline-block;
    font-size: inherit !important;
    line-height: inherit !important;
    vertical-align: baseline;
    color: #3b82f6;
    font-weight: 300;
    animation: blink 1s step-end infinite;
    opacity: 0;
}
.cursor.visible { opacity: 1; }
#typewriter { display: inline; }

/* ============================
   SECTION COMMONS
   ============================ */
.section-label {
    display: inline-block;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 14px;
}
.section-title {
    font-size: 38px; font-weight: 700;
    letter-spacing: -0.5px; color: var(--text);
    margin-bottom: 16px; line-height: 1.15;
}
.section-sub {
    font-size: 17px; color: var(--muted);
    max-width: 600px; margin: 0 auto 64px; line-height: 1.6;
}

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    background: linear-gradient(160deg, #09090b 0%, #0d1220 60%, #09090b 100%);
    padding: 140px 48px 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(
        ellipse 70% 55% at 65% 40%,
        rgba(59,130,246,0.14) 0%,
        rgba(59,130,246,0.04) 50%,
        transparent 70%
    );
    pointer-events: none; z-index: 0;
}
.hero::after {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.035; pointer-events: none; z-index: 0;
}
#stars-canvas { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* LEFT */
.hero-left { animation: fadeInUp 0.6s ease-out both; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--border); background: var(--surface);
    color: var(--muted); font-size: 12px; font-weight: 500;
    padding: 5px 14px; border-radius: 20px; margin-bottom: 28px;
}
.eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue); flex-shrink: 0;
    animation: dotPulse 1.8s ease-out infinite;
}
.hero-left h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: var(--text);
    margin-bottom: 24px;
    height: 2.6em;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    max-width: 720px;
}
.hero-left h1 .gradient-text {
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 18px; color: var(--muted);
    max-width: 520px; margin-bottom: 36px; line-height: 1.65;
}
.hero-ctas {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 16px;
}
.btn-hero-primary {
    background: var(--blue); color: #fff;
    font-size: 16px; font-weight: 600;
    padding: 14px 28px; border-radius: 8px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 200ms, transform 200ms;
    box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}
.btn-hero-primary:hover { background: #2563eb; transform: translateY(-1px); }
.btn-hero-secondary {
    background: transparent; color: var(--secondary);
    font-size: 16px; padding: 14px 28px; border-radius: 8px;
    border: 1px solid var(--border);
    display: inline-flex; align-items: center;
    transition: color 200ms, border-color 200ms;
}
.btn-hero-secondary:hover { color: var(--text); border-color: var(--border2); }
.hero-note {
    font-size: 13px; color: var(--dim); margin-bottom: 8px;
}
.hero-gumroad-tip {
    font-size: 12px;
    color: var(--dim);
    margin-bottom: 20px;
    opacity: 0.7;
}
.hero-trust {
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap;
}
.trust-item {
    font-size: 12px; color: var(--dim);
    display: inline-flex; align-items: center; gap: 5px;
}
.trust-item i { color: var(--border2); }
.trust-sep { color: var(--border2); font-size: 12px; }

/* RIGHT — app mockup */
.hero-right {
    position: relative;
    animation: fadeInUp 0.6s 0.15s ease-out both;
}

/* Overlay pill — sibling of mockup */
.overlay-pill {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) translateY(-120px);
    background: rgba(24,24,27,0.97);
    border: 1px solid rgba(99,102,241,0.4);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 0 0 1px rgba(59,130,246,0.25), 0 8px 32px rgba(0,0,0,0.7);
    min-width: 260px; white-space: nowrap;
    animation: overlaySlide 4s ease-in-out infinite;
    opacity: 0; z-index: 20;
}
.pill-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
    flex-shrink: 0;
    animation: greenDotPulse 1.5s ease-out infinite;
}
.pill-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pill-header { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.pill-agent  { font-size: 14px; font-weight: 600; color: #fff; }
.pill-msg    { font-size: 12px; color: #a1a1aa; margin: 0; }
.pill-ts     { font-family: var(--mono); font-size: 10px; color: #52525b; flex-shrink: 0; }

/* App window mockup */
.app-mockup {
    background: #0a0a0f;
    border: 1px solid #27272a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(59,130,246,0.06),
        0 32px 80px rgba(0,0,0,0.6),
        0 8px 24px rgba(0,0,0,0.35);
    max-width: 480px;
    margin: 0 auto;
}
.app-titlebar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 16px;
    background: #09090b;
    border-bottom: 1px solid #18181b;
    user-select: none;
}
.app-dots { display: flex; gap: 6px; }
.dot-c { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #22c55e; }
.app-title-name { font-size: 13px; font-weight: 500; color: var(--dim); }
.app-ctrl { display: flex; gap: 14px; font-size: 11px; color: #3f3f46; }

.app-body { display: flex; min-height: 260px; }
.app-sidebar-mini {
    width: 48px; background: #09090b;
    border-right: 1px solid #18181b;
    display: flex; flex-direction: column;
    align-items: center; gap: 2px; padding: 10px 0;
}
.sb-item {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px; font-size: 13px; color: #52525b;
    cursor: default; transition: all 150ms;
}
.sb-item.active { background: rgba(59,130,246,0.12); color: #3b82f6; }

.app-content-mini {
    flex: 1; padding: 14px 16px;
    display: flex; flex-direction: column; gap: 8px;
}
.mini-header { font-size: 13px; font-weight: 600; color: #e4e4e7; }
.mini-sub    { font-size: 10px; color: #52525b; margin-top: -4px; }
.mini-stats  { display: flex; gap: 10px; margin-bottom: 2px; }
.mini-stat {
    background: #18181b; border: 1px solid #27272a;
    border-radius: 6px; padding: 7px 12px;
    display: flex; flex-direction: column; gap: 2px;
}
.mini-stat-val   { font-size: 18px; font-weight: 700; color: #e4e4e7; line-height: 1; }
.mini-stat-val.blue { color: #3b82f6; }
.mini-stat-label { font-size: 9px; color: #52525b; white-space: nowrap; }
.mini-section-label {
    font-size: 9px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: #3f3f46;
}
.mini-agent {
    display: flex; align-items: center; gap: 8px;
    background: #18181b; border: 1px solid #27272a;
    border-radius: 6px; padding: 7px 10px;
}
.mini-agent.active {
    border-color: rgba(59,130,246,0.3);
    box-shadow: 0 0 0 1px rgba(59,130,246,0.06);
}
.mini-dot-wrap {
    position: relative; width: 14px; height: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mini-dot { width: 8px; height: 8px; border-radius: 50%; position: relative; z-index: 1; }
.mini-dot.blue { background: #3b82f6; }
.mini-dot.gray { background: #3f3f46; }
.mini-dot-ring {
    position: absolute; inset: 0; border-radius: 50%;
    background: #3b82f6; opacity: 0;
    animation: miniDotPulse 1.8s ease-out infinite;
}
.mini-agent-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.mini-agent-name { font-size: 11px; font-weight: 500; color: #d4d4d8; }
.mini-agent-proc { font-family: var(--mono); font-size: 9px; color: #52525b; }
.mini-badge { font-size: 9px; font-weight: 700; font-family: var(--mono); letter-spacing: 0.05em; }
.mini-badge.active { color: #3b82f6; }
.mini-badge.idle   { color: #3f3f46; }

.demo-badge { font-size: 12px; color: var(--dim); text-align: center; margin-top: 12px; }

/* ============================
   COMPAT BAR
   ============================ */
.compat-bar {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 48px;
}
.compat-inner {
    max-width: 960px; margin: 0 auto;
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap; justify-content: center;
}
.compat-label {
    font-size: 12px; font-weight: 500;
    color: var(--muted); white-space: nowrap;
}
.compat-agents {
    display: flex; align-items: center;
    gap: 14px; flex-wrap: wrap; justify-content: center;
}
.compat-agents span {
    font-size: 13px; color: var(--secondary);
    display: inline-flex; align-items: center; gap: 6px;
}
.compat-agents span i { color: var(--muted); font-size: 12px; }
.compat-sep { color: var(--border2) !important; font-size: 14px !important; }

/* ============================
   HOW IT WORKS
   ============================ */
.hiw {
    background: var(--bg-alt);
    padding: 100px 48px;
    text-align: center;
}
.hiw-inner { max-width: 1060px; margin: 0 auto; }
.hiw .section-title { margin-bottom: 64px; }

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}
.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 24px;
    text-align: left;
    transition: border-color 250ms, transform 250ms;
}
.step-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.step-num {
    font-size: 10px; font-weight: 700;
    font-family: var(--mono); color: var(--dim);
    letter-spacing: 0.12em; margin-bottom: 16px;
    display: block;
}
.step-icon-wrap {
    width: 44px; height: 44px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; margin-bottom: 16px;
}
.step-icon-wrap.blue  { background: rgba(59,130,246,0.1);  color: #3b82f6; }
.step-icon-wrap.amber { background: rgba(245,158,11,0.1);  color: #f59e0b; }
.step-icon-wrap.green { background: rgba(34,197,94,0.1);   color: #22c55e; }
.step-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }
.step-arrow {
    display: flex; align-items: center; justify-content: center;
    padding: 0 28px; color: var(--border2); font-size: 16px;
}

/* ============================
   PROBLEM
   ============================ */
.problem {
    background: var(--bg);
    padding: 100px 48px;
    text-align: center;
}
.problem-header { margin-bottom: 48px; }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px; margin: 0 auto;
}
.problem-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 24px;
    text-align: left;
    transition: border-color 200ms;
}
.problem-card:hover   { border-color: var(--border2); }
.problem-card.red     { border-color: #7f1d1d; }
.problem-card.red:hover { border-color: #991b1b; }
.problem-num {
    display: block;
    font-size: 10px; font-weight: 700;
    font-family: var(--mono); color: var(--dim);
    letter-spacing: 0.12em; margin-bottom: 12px;
}
.problem-num.red { color: rgba(239,68,68,0.5); }
.problem-icon { font-size: 22px; margin-bottom: 14px; display: block; }
.problem-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.problem-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

.problem-solution {
    display: flex; align-items: center; gap: 24px;
    max-width: 560px; margin: 56px auto 0;
}
.solution-line { flex: 1; height: 1px; }
.solution-line:first-child { background: linear-gradient(90deg, transparent, var(--border2)); }
.solution-line:last-child  { background: linear-gradient(270deg, transparent, var(--border2)); }
.problem-conclusion {
    font-size: 17px; font-weight: 600;
    color: var(--blue-lt); white-space: nowrap;
}

/* ============================
   FEATURES — BENTO GRID
   ============================ */
.features {
    background: var(--bg-alt);
    padding: 100px 48px;
    text-align: center;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px; margin: 0 auto;
}
.bento-hero { grid-column: 1 / 3; }

.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    text-align: left;
    display: flex; flex-direction: column;
    transition: border-color 250ms, transform 250ms, box-shadow 250ms;
}
.bento-card:hover {
    border-color: var(--border2);
    transform: translateY(-2px);
}
.bento-hero:hover {
    border-color: rgba(59,130,246,0.35);
    box-shadow: 0 0 0 1px rgba(59,130,246,0.08), 0 8px 32px rgba(59,130,246,0.06);
}
.bento-icon-wrap {
    width: 44px; height: 44px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 18px; flex-shrink: 0;
}
.bento-card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.bento-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Bento: overlay demo */
.bento-demo-wrap { margin-top: auto; padding-top: 24px; }
.bento-overlay-demo {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(9,9,11,0.9);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: 10px; padding: 11px 16px;
    box-shadow: 0 0 0 1px rgba(59,130,246,0.12), 0 4px 20px rgba(0,0,0,0.5);
}
.bento-demo-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    flex-shrink: 0;
    animation: greenDotPulse 1.5s ease-out infinite;
}
.bento-demo-top { display: flex; align-items: baseline; gap: 10px; margin-bottom: 2px; }
.bento-demo-agent { font-size: 13px; font-weight: 600; color: #fff; }
.bento-demo-ts    { font-family: var(--mono); font-size: 10px; color: #52525b; }
.bento-demo-msg   { font-size: 11px; color: #a1a1aa; margin: 0; }

/* Bento: agent dots */
.bento-agent-dots { display: flex; gap: 8px; margin-top: auto; padding-top: 20px; }
.bento-agent-dot  { width: 12px; height: 12px; border-radius: 50%; }

/* Bento: metric */
.bento-metric { display: flex; gap: 20px; margin-top: auto; padding-top: 20px; }
.metric-val   {
    font-size: 30px; font-weight: 700;
    color: var(--text); font-family: var(--mono);
    letter-spacing: -1px; line-height: 1;
}
.metric-unit  { font-size: 12px; font-weight: 500; color: var(--muted); margin-left: 1px; }

/* Bento: privacy tags */
.bento-privacy-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 20px; }
.privacy-tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; color: #f87171;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.15);
    border-radius: 4px; padding: 4px 8px;
}
.privacy-tag i { font-size: 9px; }

/* Bento: sound bars */
.bento-sound-bars {
    display: flex; align-items: flex-end; gap: 4px;
    margin-top: auto; padding-top: 20px; height: 36px;
    transform-origin: bottom;
}
.sound-bar {
    width: 6px; height: var(--h, 12px);
    background: linear-gradient(to top, #ec4899, rgba(236,72,153,0.25));
    border-radius: 3px;
    animation: soundPulse 1.4s ease-in-out infinite;
    transform-origin: bottom;
}

/* ============================
   AGENTS — CARDS
   ============================ */
.agents {
    background: var(--bg);
    padding: 100px 48px;
}
.agents-inner { max-width: 1100px; margin: 0 auto; }
.agents-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.agent-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 18px;
    display: flex; flex-direction: column; gap: 14px;
    transition: border-color 200ms, transform 200ms;
}
.agent-card:hover  { border-color: var(--border2); transform: translateY(-2px); }
.agent-card.custom { border-style: dashed; }

.agent-card-status {
    position: relative; width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
}
.acard-dot { width: 10px; height: 10px; border-radius: 50%; }
.acard-dot-ring {
    position: absolute; inset: 0; border-radius: 50%;
    animation: dotPulse 1.8s ease-out infinite;
}
.blue-dot   { background: #3b82f6; }
.violet-dot { background: #a855f7; }
.green-dot  { background: #22c55e; }
.teal-dot   { background: #14b8a6; }
.amber-dot  { background: #f59e0b; }
.blue-dot + .acard-dot-ring   { background: #3b82f6; opacity: 0.25; }

.agent-card-body { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.acard-name { font-size: 13px; font-weight: 600; color: var(--text); }
.acard-proc {
    font-family: var(--mono); font-size: 11px;
    color: var(--blue-lt);
}
.agent-card-footer {
    border-top: 1px solid var(--border); padding-top: 12px;
}
.acard-method { font-size: 11px; color: var(--muted); }
.agents-note {
    font-size: 12px; color: var(--dim);
    text-align: center; margin-top: 8px;
}

/* ============================
   PRICING
   ============================ */
#pricing {
    background: var(--bg-alt);
    padding: 100px 48px;
    text-align: center;
}
.pricing-eyebrow {
    display: inline-block; font-size: 11px; letter-spacing: 2px;
    color: #a1a1aa; background: #18181b;
    border: 1px solid #3f3f46; padding: 4px 14px;
    border-radius: 20px; margin-bottom: 24px;
}
body.light-mode .pricing-eyebrow {
    color: #fafafa; background: #27272a;
    border-color: #3f3f46;
}
.pricing-title { font-size: 36px; font-weight: 700; color: var(--text); margin-bottom: 12px; letter-spacing: -1px; }
.pricing-sub   { font-size: 16px; color: var(--muted); margin-bottom: 48px; }
.pricing-card {
    max-width: 440px; margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
    animation: cardGlow 4s ease-in-out infinite;
}
.pricing-tabs { display: flex; border-bottom: 1px solid var(--border); }
.tab {
    flex: 1; padding: 14px 0;
    background: transparent; border: none;
    color: var(--muted); font-size: 14px; font-weight: 500;
    cursor: pointer; transition: all 200ms; font-family: var(--font);
    border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tab:hover { color: var(--secondary); background: rgba(255,255,255,0.02); }
.tab.active { color: var(--text); border-bottom: 2px solid #3b82f6; background: rgba(59,130,246,0.04); }
.pricing-body { padding: 36px 40px 40px; }
.pricing-badge {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: 1.5px; padding: 4px 10px;
    border-radius: 4px; margin-bottom: 24px; transition: all 300ms;
}
.badge-early   { background: rgba(245,158,11,0.1); color: #f59e0b; border: 1px solid rgba(245,158,11,0.2); }
.badge-popular { background: rgba(59,130,246,0.1); color: #60a5fa; border: 1px solid rgba(59,130,246,0.2); }
.badge-value   { background: rgba(34,197,94,0.1);  color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.pricing-price { margin-bottom: 8px; }
#plan-price {
    font-size: 56px; font-weight: 700;
    color: var(--text); letter-spacing: -2px; transition: all 250ms;
}
.pricing-period { display: block; font-size: 13px; color: var(--dim); margin-top: 4px; }
.pricing-saving { font-size: 13px; color: #22c55e; min-height: 20px; margin-bottom: 28px; }
.pricing-btn {
    display: block; width: 100%; padding: 18px 24px;
    background: #3b82f6; color: #fff;
    font-size: 15px; font-weight: 600; border-radius: 8px;
    text-decoration: none; transition: all 200ms; margin-bottom: 16px;
    text-align: center;
}
.pricing-btn:hover { background: #2563eb; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(59,130,246,0.3); }
.pricing-trial { font-size: 12px; color: var(--dim); margin-bottom: 28px; }
.pricing-features {
    list-style: none; text-align: left;
    border-top: 1px solid var(--border); padding-top: 24px;
    display: flex; flex-direction: column; gap: 10px;
}
.pricing-features li { font-size: 13px; color: var(--secondary); display: flex; align-items: center; gap: 8px; }
.pricing-features li::first-letter { color: #22c55e; font-weight: 700; }
.pf-check { color: #22c55e; font-weight: 700; flex-shrink: 0; }
.pf-divider {
    display: flex; align-items: center; gap: 10px;
    font-size: 10px; letter-spacing: 1.5px; font-weight: 700;
    color: var(--dim); text-transform: uppercase; margin: 4px 0;
}
.pf-divider::before, .pf-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}
.pf-divider::first-letter { color: var(--dim); font-weight: 700; }
.pf-promise { color: var(--dim) !important; font-size: 12px !important; }
.pf-promise::first-letter { color: var(--dim); font-weight: normal; }
.pf-shield { color: #60a5fa; font-size: 11px; flex-shrink: 0; width: 14px; text-align: center; }

/* ============================
   FAQ
   ============================ */
.faq { background: var(--bg); padding: 100px 48px; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq h2 {
    font-size: 30px; font-weight: 700;
    text-align: center; margin-bottom: 56px; letter-spacing: -0.3px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; background: transparent;
    padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-size: 15px; font-weight: 500;
    color: var(--text); text-align: left; transition: color 150ms;
}
.faq-question:hover { color: var(--secondary); }
.faq-icon {
    font-size: 18px; color: var(--muted);
    flex-shrink: 0; transition: transform 300ms ease; line-height: 1;
}
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 300ms ease; }
.faq-answer-inner { padding-bottom: 20px; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ============================
   FOOTER CTA
   ============================ */
.footer-cta {
    position: relative;
    background: linear-gradient(160deg, #0a0e1a 0%, #09090b 60%, #0a0e1a 100%);
    padding: 120px 48px;
    text-align: center;
    overflow: hidden;
}
.footer-cta-glow {
    position: absolute;
    bottom: -60px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(59,130,246,0.14) 0%, transparent 68%);
    pointer-events: none; z-index: 0;
}
.footer-cta > *:not(.footer-cta-glow) { position: relative; z-index: 1; }
.footer-cta h2 {
    font-size: 44px; font-weight: 700;
    letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.1;
}
.footer-cta p {
    font-size: 18px; color: var(--muted); margin-bottom: 40px; line-height: 1.6;
}
.btn-cta-main {
    display: inline-block;
    background: var(--blue); color: #fff;
    font-size: 17px; font-weight: 600;
    padding: 16px 44px; border-radius: 8px;
    transition: background 200ms, transform 200ms, box-shadow 200ms;
    box-shadow: 0 4px 24px rgba(59,130,246,0.35);
}
.btn-cta-main:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59,130,246,0.45);
}
.footer-stats {
    display: flex; justify-content: center; gap: 48px;
    margin-top: 48px; flex-wrap: wrap;
}
.footer-stat {
    font-size: 13px; color: var(--dim);
    font-family: var(--mono);
    display: inline-flex; align-items: center; gap: 6px;
}
.footer-stat i { color: var(--border2); font-size: 12px; }

/* ============================
   FOOTER BOTTOM
   ============================ */
.footer-bottom {
    background: var(--bg);
    border-top: 1px solid var(--surface);
    padding: 32px 48px;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span, .footer-bottom a { font-size: 13px; color: var(--dim); transition: color 150ms; }
.footer-bottom a:hover { color: var(--secondary); }

/* ============================
   RESPONSIVE — TABLET ≤ 1024px
   ============================ */
@media (max-width: 1024px) {
    .agents-cards { grid-template-columns: repeat(3, 1fr); }
    .bento-grid   { grid-template-columns: repeat(2, 1fr); }
    .bento-hero   { grid-column: 1 / -1; }
}

/* ============================
   RESPONSIVE — TABLET ≤ 768px
   ============================ */
@media (max-width: 768px) {
    /* Nav */
    .nav-burger { display: flex; }
    .nav-links  { display: none; }
    .mobile-menu { display: block; }
    nav { width: calc(100% - 32px); padding: 0 16px; border-radius: 40px; }

    /* Hero */
    .hero { padding: 120px 24px 80px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-left h1 { font-size: 38px; letter-spacing: -1.5px; }
    .hero-sub { font-size: 16px; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; }
    .eyebrow { margin-left: auto; margin-right: auto; display: inline-flex; }
    .hero-left { text-align: center; }
    .app-mockup { max-width: 400px; }

    /* Compat */
    .compat-bar { padding: 14px 24px; }

    /* HIW */
    .hiw { padding: 72px 24px; }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .step-arrow { padding: 0; transform: rotate(90deg); font-size: 14px; }

    /* Problem */
    .problem { padding: 72px 24px; }
    .problem-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Features */
    .features { padding: 72px 24px; }
    .bento-grid { grid-template-columns: 1fr; gap: 14px; }
    .bento-hero { grid-column: auto; }

    /* Agents */
    .agents { padding: 72px 24px; }
    .agents-cards { grid-template-columns: repeat(2, 1fr); }

    /* Pricing */
    #pricing { padding: 72px 24px; }
    .pricing-body { padding: 28px 24px 32px; }

    /* FAQ */
    .faq { padding: 72px 24px; }

    /* Footer CTA */
    .footer-cta { padding: 80px 24px; }
    .footer-cta h2 { font-size: 30px; }
    .footer-stats { gap: 24px; }
    .footer-bottom { padding: 24px 20px; flex-direction: column; gap: 8px; text-align: center; }

    .section-title { font-size: 28px; }
}

/* ============================
   RESPONSIVE — MOBILE ≤ 480px
   ============================ */
@media (max-width: 480px) {
    .nav-badge { display: none; }
    .hero-left h1 { font-size: 30px; letter-spacing: -1px; }
    .hero-sub { font-size: 15px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
    .app-mockup { max-width: 100%; }
    .agents-cards { grid-template-columns: 1fr; }
    .pricing-body { padding: 20px 16px 24px; }
    #plan-price { font-size: 44px; }
    .footer-stats { gap: 14px; }
    .footer-cta h2 { font-size: 26px; }
    .bento-grid { gap: 12px; }
    .section-title { font-size: 24px; }
}

/* ============================
   PROBLEM SECTION — NEW ELEMENTS
   ============================ */
.problem-waste {
    background: linear-gradient(135deg, rgba(239,68,68,.08), rgba(239,68,68,.03));
    border: 1px solid rgba(239,68,68,.25);
    border-radius: 12px;
    padding: 18px 24px;
    margin: 0 auto 48px;
    max-width: 960px;
    text-align: left;
}
.waste-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.waste-icon {
    color: #ef4444;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}
.waste-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}
.waste-text strong { color: #ef4444; font-weight: 700; }

.problem-icon-wrap {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    background: rgba(255,255,255,.06);
    color: var(--muted);
}
.problem-icon-wrap.red-wrap {
    background: rgba(239,68,68,.12);
    color: #ef4444;
}
/* Pseudo-element track so .meter-label sibling is never clipped */
.problem-card-meter { margin-top: 16px; position: relative; }
.problem-card-meter::before {
    content: '';
    display: block;
    height: 6px;
    background: rgba(255,255,255,.08);
    border-radius: 3px;
    position: absolute;
    top: 0; left: 0; right: 0;
}
.meter-bar {
    display: block;
    height: 6px;
    background: linear-gradient(90deg, #ef4444, #f97316);
    border-radius: 3px;
    position: relative;
    z-index: 1;
}
.meter-label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 10px;
}
.problem-lost-time {
    margin-top: 14px;
    display: flex; align-items: baseline; gap: 6px;
}
.lost-number { font-size: 32px; font-weight: 800; color: #ef4444; line-height: 1; }
.lost-unit   { font-size: 13px; color: var(--muted); line-height: 1.4; }

.problem-solution-card {
    display: flex; align-items: center; gap: 16px;
    background: linear-gradient(135deg, rgba(139,92,246,.1), rgba(139,92,246,.03));
    border: 1px solid rgba(139,92,246,.3);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 40px auto 0;
    max-width: 960px;
    text-align: left;
    transition: border-color .2s;
}
.problem-solution-card:hover { border-color: rgba(139,92,246,.6); }
.psc-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #8b5cf6;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(139,92,246,.6);
}
.psc-content { flex: 1; }
.psc-main { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.psc-sub  { font-size: 13px; color: var(--muted); margin: 0; }
.psc-arrow { color: #8b5cf6; font-size: 16px; flex-shrink: 0; }

/* ============================
   PRICING — 2-COLUMN LAYOUT
   ============================ */
#pricing { max-width: none; }

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 48px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}
/* Context column */
.pricing-context { padding-top: 8px; }
.pricing-ctx-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 20px;
}
.pricing-vs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}
.pricing-vs-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
}
.pricing-vs-row:last-child { border-bottom: none; }
.pvr-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pvr-name { font-size: 14px; font-weight: 600; color: var(--text); }
.pvr-name-win { color: #a78bfa; }
.pvr-cadence { font-size: 11px; color: var(--dim); }
.pvr-amount { font-size: 14px; font-weight: 600; color: var(--muted); }
.pvr-amount-win { font-size: 22px; font-weight: 800; color: #a78bfa; }
.pvr-icon-no  { color: #ef4444; font-size: 13px; }
.pvr-icon-yes { color: #22c55e; font-size: 13px; }

.pricing-vs-row.loss { background: rgba(255,255,255,.015); }
.pricing-vs-row.win  {
    background: linear-gradient(135deg, rgba(139,92,246,.1), rgba(99,102,241,.04));
}

.pricing-vs-sep {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.pvs-line { flex: 1; height: 1px; background: var(--border); }
.pvs-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #8b5cf6;
}

/* Trust list */
.pricing-trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pricing-trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}
.pricing-trust-list li i {
    color: #8b5cf6;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}
.pricing-trust-list li strong { color: var(--text); }
.pricing-trust-list li a     { color: #a78bfa; text-decoration: none; }
.pricing-trust-list li a:hover { text-decoration: underline; }

/* Reset pricing-card max-width since it's now in the grid */
.pricing-layout .pricing-card { max-width: none; margin: 0; }

/* ============================
   FAQ — STRUCTURAL REDESIGN
   ============================ */
.faq-head {
    text-align: center;
    margin-bottom: 48px;
}
/* Override the large margin from .faq h2 when inside .faq-head */
.faq-head h2 { margin-bottom: 0; }

/* Icon on each question */
.faq-q-icon {
    font-size: 14px;
    color: #8b5cf6;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    opacity: .75;
}
/* Override question layout to include icon */
.faq-question {
    gap: 12px;
}

/* Support card at the bottom of FAQ */
.faq-support {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(139,92,246,.08), rgba(99,102,241,.03));
    border: 1px solid rgba(139,92,246,.25);
    border-radius: 12px;
}
.faq-support-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(139,92,246,.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.faq-support-icon i { font-size: 20px; color: #a78bfa; }
.faq-support-body { flex: 1; }
.faq-support-title {
    font-size: 15px; font-weight: 600;
    color: var(--text); margin-bottom: 4px;
}
.faq-support-sub {
    font-size: 13px; color: var(--muted);
}
.faq-support-btn {
    display: inline-flex; align-items: center;
    padding: 10px 20px;
    background: rgba(139,92,246,.15);
    border: 1px solid rgba(139,92,246,.4);
    border-radius: 8px;
    font-size: 13px; font-weight: 600;
    color: #a78bfa;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, border-color .2s;
    flex-shrink: 0;
}
.faq-support-btn:hover {
    background: rgba(139,92,246,.25);
    border-color: rgba(139,92,246,.7);
}

/* ============================
   FOOTER CTA — 2-COLUMN LAYOUT
   ============================ */
.footer-cta-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}
/* Left column keeps existing footer-cta h2 and p styles */
.footer-cta-left { position: relative; z-index: 1; }
/* Override footer-cta h2 alignment since we go left */
.footer-cta-left h2 { text-align: left; }
.footer-cta-left p  { text-align: left; }

.footer-cta-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.btn-cta-ghost {
    display: inline-flex; align-items: center;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 15px; font-weight: 600;
    text-decoration: none;
    color: var(--muted);
    border: 1px solid var(--border);
    background: transparent;
    transition: color .2s, border-color .2s;
}
.btn-cta-ghost:hover {
    color: var(--text);
    border-color: rgba(139,92,246,.5);
}
/* footer-stats stays in left column, reset its top margin */
.footer-cta-left .footer-stats { margin-top: 0; justify-content: flex-start; }

/* Right column: overlay mockup */
.footer-cta-right { position: relative; z-index: 1; flex-shrink: 0; }
.overlay-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 32px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    width: 320px;
}
.om-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--dim);
    margin: 0;
}
.om-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.om-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(12px);
    width: 100%;
}
.om-working {
    background: rgba(25,25,45,.9);
    border: 1px solid rgba(99,102,241,.45);
}
.om-done {
    background: rgba(15,35,25,.9);
    border: 1px solid rgba(34,197,94,.45);
}
.om-dot {
    width: 8px; height: 8px;
    border-radius: 50%; flex-shrink: 0;
}
.om-blue  { background: #6366f1; box-shadow: 0 0 8px rgba(99,102,241,.7); }
.om-green { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,.7); }
/* Pills are always dark-background → hardcode light text regardless of page theme */
.om-text  { color: #e4e4e7; flex: 1; }
.om-sep   { color: #71717a; }
.om-state-working {
    display: inline-flex; align-items: center; gap: 3px;
    color: #a1a1aa;
}
.om-state-done { color: #22c55e; font-weight: 600; }
.om-timer { font-size: 12px; color: #71717a; margin-left: 4px; }
.om-bounce {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #6366f1;
    display: inline-block;
    animation: omBounce .9s ease-in-out infinite;
}
@keyframes omBounce {
    0%, 100% { opacity: .3; transform: translateY(0); }
    50%       { opacity: 1;  transform: translateY(-3px); }
}
.om-arrow { color: var(--dim); font-size: 12px; opacity: .5; }
.om-caption {
    font-size: 11px;
    color: var(--dim);
    text-align: center;
    margin: 0;
    opacity: .7;
}

/* ============================
   RESPONSIVE — NEW ELEMENTS
   ============================ */
@media (max-width: 1024px) {
    .pricing-layout {
        grid-template-columns: 1fr;
        max-width: 540px;
    }
    .pricing-layout .pricing-card { max-width: none; }
    .footer-cta-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .footer-cta-left h2,
    .footer-cta-left p  { text-align: center; }
    .footer-cta-btns    { justify-content: center; }
    .footer-cta-left .footer-stats { justify-content: center; }
    .footer-cta-right   { display: flex; justify-content: center; }
    .overlay-mockup     { width: 100%; max-width: 340px; }
    .problem-waste,
    .problem-solution-card { max-width: 100%; }
}
@media (max-width: 768px) {
    .problem-waste         { margin-bottom: 28px; }
    .problem-solution-card { padding: 16px 18px; gap: 12px; }
    .pricing-vs-row        { padding: 12px 14px; }
    .pvr-amount-win        { font-size: 18px; }
    .faq-support           { flex-direction: column; text-align: center; }
    .faq-support-icon      { align-self: center; }
    .faq-support-btn       { align-self: stretch; justify-content: center; }
    .btn-cta-ghost         { padding: 12px 20px; font-size: 14px; }
    .overlay-mockup        { padding: 20px 20px; }
}
