/* ╔══════════════════════════════════════════════════════════════════╗
   ║  LUMOS landing — styles.css                                       ║
   ║  Dark terminal × modern SaaS aesthetic.                           ║
   ║                                                                   ║
   ║  Mobile-first. Type scale tightened upward per readability        ║
   ║  feedback (smaller copy went 11-12px → 13-14px). All UI text      ║
   ║  meets WCAG AA on the dark canvas.                                ║
   ╚══════════════════════════════════════════════════════════════════╝ */

:root {
    /* Neutral near-black canvas (blue cast removed) + flat elevated card fills */
    --bg-canvas:    #0a0a0b;
    --bg-deep:      #0e0e10;
    --bg-elevated:  #141417;
    --bg-card:      #141417;
    --bg-card-hover:#1b1b1f;

    --border-dim:   rgba(255,255,255,0.05);
    --border:       rgba(255,255,255,0.08);
    --border-strong:rgba(255,255,255,0.14);

    --accent:       #3c90ff;
    --accent-hot:   #9dd2ff;
    --accent-glow:  rgba(60,144,255,0.12);

    --green:        #0ebc5f;
    --green-glow:   rgba(14,188,95,0.18);
    --amber:        #ffcf03;
    --red:          #ff4c45;

    /* Type tokens — legibility-first; no body smaller than 14px */
    --text:         #ecedf1;
    --text-2:       #c2c8d2;     /* readable body */
    --text-3:       #8d94a0;     /* secondary, still ≥4.5:1 */
    --text-dim:     #5a6068;     /* meta/labels only — still passes for non-body */

    --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono:    'IBM Plex Mono', 'JetBrains Mono', 'Menlo', 'Consolas', monospace;
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;

    --s-1:  4px;
    --s-2:  8px;
    --s-3:  12px;
    --s-4:  16px;
    --s-5:  24px;
    --s-6:  32px;
    --s-7:  48px;
    --s-8:  64px;
    --s-9:  96px;
    --s-10: 128px;

    --container: 1200px;
    --container-text: 760px;     /* editorial reading measure for heads/prose */
    --radius: 4px;
    --radius-card: 8px;
    --radius-lg:   16px;         /* feature/plan/interface/step cards — editorial */
    --radius-xl:   22px;         /* hero feed, large interface card, multi-demo */
    --radius-pill: 999px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    /* ─── Motion tokens (DeepMind-calm: slow, soft, no overshoot) ─── */
    --ease-out:    cubic-bezier(0.16, 1, 0.30, 1);    /* primary — soft decel */
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);    /* symmetric loops */
    --dur-1: 160ms;   /* micro: links, chips */
    --dur-2: 280ms;   /* standard: hover lift, card state */
    --dur-3: 520ms;   /* expressive: image zoom/pan, reveal */
    --dur-4: 720ms;   /* section-grade reveal of large blocks */
    --reveal-rise: 20px;

    /* Layered elevation — calm, wide, low-opacity (DeepMind shadows are soft) */
    --elev-1: 0 1px 2px rgba(0,0,0,0.40);
    --elev-2: 0 8px 24px -12px rgba(0,0,0,0.55);
    --elev-3: 0 20px 48px -24px rgba(0,0,0,0.65);
    --elev-hover: 0 16px 40px -24px rgba(0,0,0,0.6);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-canvas);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
svg { fill: currentColor; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hot); }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul,ol { list-style: none; padding: 0; margin: 0; }
strong { color: var(--text); font-weight: 700; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s-4);
}
@media (min-width: 768px) { .container { padding: 0 var(--s-6); } }

/* ─── Eyebrow / titles ─── */
.eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;             /* was 12, bumped */
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--s-4);
}
.eyebrow-red { color: var(--red); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.2vw, 44px);   /* calmer editorial ceiling */
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.01em;               /* tiny negative tracking */
    margin: 0 0 var(--s-4);
    color: var(--text);
    text-wrap: balance;                    /* balanced headline wraps */
}
.section-sub {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text-2);
    max-width: var(--container-text);
    margin: 0 0 var(--s-7);
    line-height: 1.6;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: 12px 22px;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-pill);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    transition: all 180ms var(--ease);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    isolation: isolate;
}
.btn:hover { transform: translateY(-1px); border-color: var(--border-strong); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-icon { font-family: var(--font-mono); opacity: 0.85; }
.btn-svg  { width: 16px; height: 16px; flex-shrink: 0; }
.btn-meta {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0.02em;
    margin-left: var(--s-2);
    opacity: 0.9;
}
.btn-sm  { padding: 8px 14px; font-size: 13px; }
.btn-sm .btn-svg { width: 14px; height: 14px; }
.btn-lg  { padding: 16px 24px; font-size: 15px; }
.btn-lg .btn-svg { width: 18px; height: 18px; }
.btn-block { display: flex; width: 100%; }

/* btn-equal: pair of CTAs that should always render the same size on
   one row regardless of label/meta length differences. flex:1 splits
   the row evenly; min-width:0 lets long labels truncate cleanly. The
   inner .btn-label stacks the title + meta vertically in centered
   alignment so the meta sits below the title (cleaner than a long
   inline trailing meta).  When the row wraps on narrow viewports
   each btn-equal naturally takes full width. */
.btn-equal {
    flex: 1 1 0;
    min-width: 0;
}
.btn-equal .btn-label {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1.2;
}
.btn-equal .btn-meta {
    margin-left: 0;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 11.5px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary .btn-meta { color: rgba(255,255,255,0.8); }
.btn-primary:hover {
    background: var(--accent-hot);
    border-color: var(--accent-hot);
    color: #fff;
}
/* Outlined pill (the reference "Learn more" treatment) */
.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-secondary:hover { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--text-3); }
.btn-ghost { background: transparent; color: var(--text-2); }
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* Quiet pill link used inside cards (DeepMind "Learn more") */
.pill-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-pill);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    transition: border-color var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out);
}
.pill-link:hover { color: var(--text); border-color: var(--text-3); background: rgba(255,255,255,0.04); }

/* ─── Logo (the wordmark from the app) ─── */
.brand-logo  { width: 92px; height: 20px; color: var(--text); }
.feed-logo   { width: 60px; height: 14px; color: var(--text); }
.compare-logo{ width: 78px; height: 17px; color: var(--accent); margin-bottom: 4px; }

/* ─── Nav ─── */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(10,10,11,0.72);
    border-bottom: 1px solid var(--border-dim);
}
.nav-inner {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding-top: var(--s-3);
    padding-bottom: var(--s-3);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    color: var(--text);
}
.brand-version {
    font-size: 11px;
    color: var(--text-3);
    font-weight: 500;
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
}

.nav-links {
    display: none;
    margin-left: var(--s-7);
    gap: var(--s-5);
}
.nav-links a {
    color: var(--text-2);
    font-size: 14px;
    font-weight: 500;
    transition: color 150ms var(--ease);
}
.nav-links a:hover { color: var(--text); }

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: var(--s-3);
}

.lang-switcher {
    display: inline-flex;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-elevated);
}
.lang-btn {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-3);
    padding: 6px 10px;
    background: transparent;
    border: none;
    border-right: 1px solid var(--border-dim);
    transition: all 150ms var(--ease);
    cursor: pointer;
    min-width: 36px;
}
.lang-btn:last-child { border-right: 0; }
.lang-btn:hover { color: var(--text-2); background: rgba(255,255,255,0.03); }
.lang-btn.is-active { color: #fff; background: var(--accent); }
.lang-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (min-width: 940px) { .nav-links { display: inline-flex; } }
@media (max-width: 540px) {
    .nav-cta {
        width: 38px;
        height: 38px;
        padding: 0;
    }
    .nav-cta span { display: none; }
    .nav-inner { gap: var(--s-2); }
    .nav-right { gap: var(--s-2); }
}

/* ─── Hero ─── */
.hero {
    position: relative;
    z-index: 2;
    padding: var(--s-9) 0 var(--s-9);
}
@media (min-width: 768px) { .hero { padding: 116px 0 96px; } }
@media (min-width: 1180px) { .hero { padding: 140px 0 112px; } }

/* Hero: text left + portrait video placeholder right */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-8);
    align-items: center;
}
@media (min-width: 960px) {
    .hero-grid { grid-template-columns: minmax(0, 1fr) 300px; gap: var(--s-9); }
}
@media (min-width: 1180px) {
    .hero-grid { grid-template-columns: minmax(0, 1fr) 340px; }
}
.hero-content { max-width: 720px; }

/* Portrait phone video placeholder */
.hero-media { display: flex; justify-content: center; }
.hero-video {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    background: linear-gradient(160deg, #1a1c22, #0c0d10);
    border: 1px solid var(--border-strong);
    border-radius: 34px;
    box-shadow: var(--elev-3);
    cursor: pointer;
    transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
    .hero-video:hover { transform: translateY(-4px); box-shadow: var(--elev-3), var(--elev-2); }
}
.hero-video-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--s-4);
    aspect-ratio: 9 / 19;
    border-radius: 24px;
    background:
        radial-gradient(ellipse 70% 50% at 50% 38%, rgba(60,144,255,0.10), transparent 70%),
        #0b0d12;
    overflow: hidden;
}
.hero-video-play {
    display: grid;
    place-items: center;
    width: 64px; height: 64px;
    border-radius: var(--radius-pill);
    color: #fff;
    background: var(--accent);
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.6);
    padding-left: 4px;
}
.hero-video:hover .hero-video-play { background: var(--accent-hot); }
.hero-video-caption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}
.hero-video-caption strong { font-family: var(--font-display); font-size: 15px; color: var(--text); }
.hero-video-caption span { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); }
@media (max-width: 959px) {
    .hero-media { margin-top: var(--s-4); }
    .hero-video { max-width: 240px; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 68px);     /* calmer ceiling reads confident */
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 var(--s-5);
    text-wrap: balance;
}
.hero-title .accent { color: var(--accent); }
.hero-title .type-host { display: inline-block; }
.hero-title .typed { display: inline; color: var(--text); }
.hero-title .caret {
    display: inline-block;
    margin-left: 4px;
    color: var(--accent);
    animation: blink 1s steps(2) infinite;
    font-family: var(--font-mono);
    font-weight: 700;
}
@media (max-width: 640px) {
    .hero-title .caret { display: none; }
}
@keyframes blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

.hero-sub {
    font-size: 17px;
    color: var(--text-2);
    margin: 0 0 var(--s-6);
    max-width: 660px;
    line-height: 1.6;
}
@media (min-width: 768px) { .hero-sub { font-size: 19px; } }

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    margin-bottom: var(--s-5);
}
@media (min-width: 480px) {
    .hero-ctas { flex-direction: row; flex-wrap: wrap; }
}
.hero-ctas-center { justify-content: center; }

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-4) var(--s-5);
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    font-size: 14px;             /* was 13, bumped */
    color: var(--text-2);
    font-family: var(--font-mono);
}
.hero-trust .dot {
    width: 6px; height: 6px;
    background: var(--green);
    box-shadow: 0 0 8px var(--green-glow);
    border-radius: 50%;
}
.trust-android {
    background: rgba(14,188,95,0.08);
    color: var(--green) !important;
    border: 1px solid rgba(14,188,95,0.24);
    padding: 5px 10px;
    border-radius: var(--radius);
    font-weight: 600;
}
.trust-svg { width: 16px; height: 16px; color: var(--green); }

/* ─── Hero feed mock ─── */
.hero-feed { display: flex; justify-content: center; }
.feed-frame {
    width: 100%;
    max-width: 420px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 0 0 1px var(--border-dim),
        var(--elev-3),
        0 0 80px -24px var(--accent-glow);
    animation: feed-float 9s var(--ease-in-out) infinite;
}
@keyframes feed-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-2px); }
}
@media (prefers-reduced-motion: reduce) { .feed-frame { animation: none; } }

.feed-head {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding: 14px 16px;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border-dim);
}
.feed-pulse {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: feed-pulse 2s ease-out infinite;
}
@keyframes feed-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(14,188,95,0.45); }
    70%  { box-shadow: 0 0 0 8px rgba(14,188,95,0); }
    100% { box-shadow: 0 0 0 0 rgba(14,188,95,0); }
}
.feed-title {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
}
.feed-live {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 6px;
    border: 1px solid rgba(14,188,95,0.3);
    border-radius: 2px;
}
.feed-meta {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-3);
}

/* ─── Feed timeline (v4 — minimal step-by-step style) ───
   Inspired by mobile onboarding/navigation cards: a vertical list of
   steps with dot markers connected by a dashed line. Each step shows
   only the essentials (money + status + miles), no store numbers, no
   timestamps, no latency. The pattern reads in <2 seconds. */
.feed-timeline {
    list-style: none;
    margin: 0;
    padding: 18px 18px 12px;
    counter-reset: none;
}
.feed-step {
    position: relative;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
}
.feed-step:last-child { padding-bottom: 4px; }

/* Dashed connector line — drawn from below the marker down to the next
   step's marker. Skipped on the last step. The line uses border-left
   on a pseudo so it sits centered on the 28px marker column. */
.feed-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 13px;                      /* center of the 28px column */
    top: 26px;                       /* below the marker */
    bottom: 0;
    width: 0;
    border-left: 1.5px dashed var(--border-strong);
    opacity: 0.55;
}

/* Marker — round 22px, contains a checkmark for accept, empty for skip.
   position:relative so the ::after halo (is-now state) anchors to it. */
.feed-step-marker {
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--bg-elevated);
    border: 1.5px solid var(--border-strong);
    color: var(--text);
    z-index: 1;
    transition: all 200ms var(--ease);
    margin-top: 2px;                 /* align center w/ money baseline */
}
.feed-step-icon { width: 12px; height: 12px; color: currentColor; }

/* Accepted step — green ring + filled green */
.feed-step.is-accept .feed-step-marker {
    background: var(--green);
    border-color: var(--green);
    color: #052015;
}

/* Skipped step — hollow grey, no icon */
.feed-step.is-skip .feed-step-marker {
    background: transparent;
    border-color: var(--border-strong);
    border-style: dashed;
}

/* Most recent step — outer halo to draw the eye */
.feed-step.is-now .feed-step-marker {
    box-shadow:
        0 0 0 4px rgba(14,188,95,0.15),
        0 0 16px -2px var(--green-glow);
}
.feed-step.is-now .feed-step-marker::after {
    content: '';
    position: absolute;
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--green);
    opacity: 0.6;
    animation: feed-step-ping 2s ease-out infinite;
}
@keyframes feed-step-ping {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .feed-step.is-now .feed-step-marker::after { animation: none; }
}

/* Step content: money line + dim detail line */
.feed-step-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.feed-step-money {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: 0;
}
.feed-step.is-now .feed-step-money {
    font-size: 28px;                 /* most recent is the visual hero */
}
.feed-step-detail {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.4;
}
.feed-step-detail [data-i18n="feed.accepted"] { color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 11px; }
.feed-step-detail [data-i18n="feed.skipped"]  { color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 11px; }

/* Skipped: strike through the money for the visual cue */
.feed-step.is-skip .feed-step-money {
    color: var(--text-dim);
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: rgba(255,255,255,0.22);
}
.feed-step.is-skip .feed-step-detail { color: var(--text-dim); }

/* Footer summary */
.feed-foot {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-dim);
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.feed-summary-num {
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
}
.feed-summary-amount {
    color: var(--green);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
    margin-left: auto;
}

@media (min-width: 1024px) { .hero-feed { justify-content: flex-end; } }

/* ─── Stats ─── */
.stats {
    position: relative;
    z-index: 2;
    padding: var(--s-5) 0;
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
    background: var(--bg-deep);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-3);
}
@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
}
.stat {
    min-height: 122px;
    padding: var(--s-5);
    text-align: left;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.stat-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: var(--s-2);
    letter-spacing: 0;
}
@media (min-width: 768px) { .stat-value { font-size: 34px; } }
@media (min-width: 1180px) { .stat-value { font-size: 38px; } }
.stat-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.45;
}

/* ─── Section padding ─── */
.capabilities,
.performance,
.safety,
.getstarted,
.faq {
    position: relative;
    z-index: 2;
    padding: var(--s-9) 0;
}
@media (min-width: 768px) {
    .capabilities, .performance, .safety, .getstarted, .faq {
        padding: var(--s-10) 0;
    }
}
/* Hairline separators between blocks — flat, no glow */
.performance, .safety, .getstarted, .faq { border-top: 1px solid var(--border-dim); }

/* ─── Product interface cards ─── */
.interface-rail {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-5);
}
@media (min-width: 760px) {
    .interface-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .interface-card-large {
        grid-column: 1 / -1;
        min-height: 420px;
    }
}
@media (min-width: 1080px) {
    .interface-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .interface-card-large {
        grid-column: 1 / -1;
        min-height: 440px;
    }
}
.interface-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-6);
    min-height: 340px;
    padding: var(--s-6);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    transform-style: preserve-3d;
    transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out),
                background var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.interface-card-large {
    border-radius: var(--radius-xl);
}
@media (min-width: 840px) {
    .interface-card-large {
        grid-template-columns: minmax(0, 0.82fr) minmax(330px, 1.18fr);
        align-items: center;
        padding: var(--s-9);
    }
}
.interface-card:hover,
.interface-card.is-tilting {
    border-color: var(--border);
    background: var(--bg-card-hover);
    box-shadow: var(--elev-2);
}
/* On small interface cards, lead with the media (screenshot) on mobile */
@media (max-width: 759px) {
    .interface-card:not(.interface-card-large) {
        display: flex;
        flex-direction: column-reverse;
        gap: var(--s-5);
    }
}
.interface-card-copy {
    position: relative;
    z-index: 1;
    max-width: 560px;
}
.interface-card-kicker {
    margin-bottom: var(--s-3);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.interface-card h3 {
    margin: 0 0 var(--s-4);
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.01em;
}
.interface-card:not(.interface-card-large) h3 {
    font-size: clamp(22px, 2.4vw, 28px);
}
.interface-card p {
    margin: 0;
    color: var(--text-2);
    font-size: 16px;
    line-height: 1.6;
}

/* ─── Real app screenshots — device frame + screen window ─── */
/* Large card: full phone in a soft bezel (the "real device" hero moment) */
.device {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 300px;
    justify-self: center;
    padding: 10px;
    background: linear-gradient(160deg, #1a1c22, #0c0d10);
    border: 1px solid var(--border-strong);
    border-radius: 34px;
    box-shadow: var(--elev-3);
}
.device::before {            /* speaker notch hint */
    content: '';
    position: absolute;
    top: 18px; left: 50%;
    width: 56px; height: 5px;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.16);
    border-radius: var(--radius-pill);
    z-index: 2;
}
.device img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    transition: transform var(--dur-3) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
    .interface-card:hover .device img { transform: scale(1.02); }
}

/* Small cards: a framed "window" onto the real screen, top-anchored.
   Hovering pans down to reveal more of the captured screen. */
.screen-shot {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 360 / 312;
    background: #05070b;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--elev-2);
}
.screen-shot img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: auto;
    transition: transform var(--dur-3) var(--ease-out);
}
.screen-shot::after {       /* soft fade at the bottom so the window reads as a crop */
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 56px;
    background: linear-gradient(transparent, rgba(5,7,11,0.55));
    pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
    .interface-card:hover .screen-shot img { transform: translateY(-26%); }
}
.app-mini {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--s-3);
    width: 100%;
    max-width: 360px;
    justify-self: center;
    padding: var(--s-5);
    background: #05070b;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-card);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 24px 52px -28px rgba(0,0,0,0.78);
    font-family: var(--font-mono);
}
.app-mini-logo {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
}
.app-mini-status {
    margin: -8px 0 var(--s-2);
    color: var(--text-3) !important;
    font-size: 12px !important;
    text-align: center;
}
.app-mini-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    gap: var(--s-3);
    padding: 10px 12px;
    background: #202126;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.app-mini-head-blue { background: var(--accent); }
.app-mini-head strong {
    color: inherit;
    font-size: 11px;
}
.app-mini-body {
    display: grid;
    border: 1px solid #252525;
    border-top: 0;
}
.app-mini-body div {
    display: flex;
    justify-content: space-between;
    gap: var(--s-3);
    min-height: 34px;
    padding: 9px 12px;
    color: var(--text-2);
    border-top: 1px solid #1f1f1f;
    font-size: 12px;
}
.app-mini-body strong,
.mini-entry span {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
}
.app-mini-button {
    display: grid;
    place-items: center;
    min-height: 42px;
    background: var(--accent);
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.app-mini-filters p {
    padding: var(--s-3);
    background: #080808;
    border: 1px solid #252525;
    color: var(--text-2);
    font-size: 12px;
    line-height: 1.45;
}
.mini-slider {
    height: 4px;
    overflow: hidden;
    background: #303030;
    border-radius: 999px;
}
.mini-slider span {
    display: block;
    height: 100%;
    background: var(--accent);
}
.mini-toggles {
    display: grid;
    grid-template-columns: 1fr 38px;
    gap: var(--s-2);
    align-items: center;
    color: var(--text-2);
    font-size: 12px;
}
.mini-toggles i {
    position: relative;
    width: 38px;
    height: 21px;
    border-radius: 999px;
    background: var(--accent);
}
.mini-toggles i::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
}
.mini-entry {
    display: grid;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid #252525;
}
.mini-entry:last-child { border-bottom: 0; }
.mini-entry strong {
    color: var(--text);
    font-size: 13px;
}
.mini-entry small {
    color: var(--text-3);
    font-size: 11px;
}
.mini-entry-muted strong {
    color: var(--text-dim);
    text-decoration: line-through;
}
.mini-entry-muted span { color: var(--amber); }
.mini-code {
    display: grid;
    place-items: center;
    min-height: 72px;
    border: 1px dashed rgba(255,255,255,0.22);
    background: rgba(60,144,255,0.08);
    color: var(--text);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* ─── Multi-offer engine ─── */
.multi-offer {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0.03) 48%, rgba(255,255,255,0.012)),
        var(--bg-canvas);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
}
.multi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-7);
    align-items: center;
}
@media (min-width: 1040px) {
    .multi-grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
        gap: var(--s-9);
    }
}
.multi-copy .section-sub { margin-bottom: var(--s-6); }
.multi-steps {
    display: grid;
    gap: var(--s-3);
}
.multi-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: var(--s-3);
    padding: var(--s-5);
    background: rgba(255,255,255,0.026);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out),
                background var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
    .multi-step:hover {
        transform: translateY(-4px) scale(1.012);
        border-color: var(--border-strong);
        box-shadow: var(--elev-hover);
    }
}
.multi-step span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--accent);
    background: rgba(60,144,255,0.10);
    border: 1px solid rgba(60,144,255,0.24);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
}
.multi-step strong {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.2;
}
.multi-step p {
    grid-column: 2;
    margin: -2px 0 0;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.5;
}
.multi-demo {
    position: relative;
    overflow: hidden;
    padding: var(--s-5);
    background: var(--bg-deep);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-xl);
    box-shadow: var(--elev-2);
}
@media (min-width: 768px) {
    .multi-demo { padding: var(--s-6); }
}
.multi-demo-head,
.multi-decision {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
}
.multi-demo-head {
    margin-bottom: var(--s-4);
    padding-bottom: var(--s-4);
    border-bottom: 1px solid var(--border-dim);
}
.multi-demo-head span,
.multi-decision span,
.multi-demo-state {
    display: block;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.multi-demo-head strong {
    display: block;
    margin-top: 4px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.1;
}
.multi-demo-state {
    color: var(--accent);
    padding: 6px 10px;
    border: 1px solid rgba(60,144,255,0.32);
    background: rgba(60,144,255,0.09);
    border-radius: var(--radius);
}
.multi-phone {
    position: relative;
    display: grid;
    gap: var(--s-3);
    padding: var(--s-4);
    min-height: 430px;
    background: #05070b;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-card);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset;
    font-family: var(--font-mono);
}
.multi-scrollbar {
    position: absolute;
    top: var(--s-4);
    right: 10px;
    bottom: var(--s-4);
    width: 3px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
}
.multi-scrollbar span {
    display: block;
    height: 35%;
    background: var(--accent);
    border-radius: inherit;
    animation: queue-scroll 4.8s var(--ease-in-out) infinite;
}
@keyframes queue-scroll {
    0%, 18% { transform: translateY(0); }
    58%, 72% { transform: translateY(165%); }
    100% { transform: translateY(0); }
}
.multi-offer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-3);
    padding: 13px 16px;
    margin-right: var(--s-3);
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
}
.multi-offer-row strong {
    display: block;
    color: var(--text);
    font-size: 20px;
    line-height: 1.15;
}
.multi-offer-row span {
    display: block;
    margin-top: 3px;
    color: var(--text-3);
    font-size: 12px;
    line-height: 1.35;
}
.multi-offer-row em {
    flex: 0 0 auto;
    color: var(--text-3);
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.multi-offer-row.is-best {
    border-color: rgba(14,188,95,0.55);
    background: linear-gradient(90deg, rgba(14,188,95,0.18), rgba(60,144,255,0.08));
    box-shadow: 0 0 0 1px rgba(14,188,95,0.18) inset;
}
.multi-offer-row.is-best em,
.multi-offer-row.is-best span { color: var(--green); }
.multi-offer-row.is-skip em { color: var(--amber); }
.multi-offer-row.is-dim {
    opacity: 0.62;
}
.multi-scroll-cut {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--s-3);
    margin: 2px var(--s-3) 2px 0;
    color: var(--text-3);
}
.multi-scroll-cut::before,
.multi-scroll-cut::after {
    content: '';
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--border-strong) 0 6px, transparent 6px 12px);
}
.multi-scroll-cut span { display: none; }
.multi-scroll-cut small {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.multi-decision {
    margin-top: var(--s-4);
    padding: var(--s-4);
    background: rgba(255,255,255,0.028);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-card);
}
.multi-decision > div {
    min-width: 0;
}
.multi-decision strong {
    display: block;
    margin-top: 4px;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.35;
}
@media (max-width: 640px) {
    .multi-demo { padding: var(--s-4); }
    .multi-phone { min-height: auto; padding: var(--s-3); }
    .multi-demo-head,
    .multi-decision {
        align-items: flex-start;
        flex-direction: column;
    }
    .multi-decision {
        gap: var(--s-3);
    }
    .multi-offer-row {
        margin-right: var(--s-2);
        padding: 12px;
    }
    .multi-offer-row strong { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
    .multi-scrollbar span { animation: none; }
}

/* ─── Features grid (now 9 items, 3-col on desktop) ─── */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-4);
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }

.feature {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: var(--s-6);
    position: relative;
    transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out),
                background var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
    overflow: hidden;
}
@media (min-width: 1024px) {
    .features-grid .feature:first-child {
        grid-column: span 2;
        min-height: 280px;
    }
    .features-grid .feature:first-child h3 {
        max-width: 520px;
        font-size: 28px;
        line-height: 1.15;
    }
    .features-grid .feature:first-child p {
        max-width: 680px;
        font-size: 16px;
    }
}
.feature:hover {
    background: var(--bg-card-hover);
    border-color: var(--border);
}
@media (hover: hover) and (pointer: fine) {
    .feature:hover { transform: translateY(-4px); box-shadow: var(--elev-2); }
}

.feature-num {
    font-family: var(--font-mono);
    font-size: 13px;             /* bumped */
    color: var(--accent);
    margin-bottom: var(--s-3);
    letter-spacing: 0.06em;
    font-weight: 600;
}
.feature h3 {
    font-family: var(--font-display);
    font-size: 20px;             /* bumped from 19 */
    font-weight: 600;
    color: var(--text);
    margin: 0 0 var(--s-3);
    line-height: 1.3;
}
.feature p {
    font-size: 15px;             /* was 14, bumped */
    color: var(--text-2);
    margin: 0;
    line-height: 1.6;
}

/* ─── How / Steps (4 steps now, with time hints) ─── */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-4);
    margin-bottom: var(--s-7);
}
@media (min-width: 640px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: var(--s-6);
    transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out),
                background var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
    display: flex;
    flex-direction: column;
}
.step:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
}
@media (hover: hover) and (pointer: fine) {
    .step:hover { transform: translateY(-4px) scale(1.012); box-shadow: var(--elev-hover); }
}
.step-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--s-3);
    margin-bottom: var(--s-3);
}
.step-num {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
}
.step-time {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--bg-elevated);
    padding: 3px 8px;
    border: 1px solid var(--border-dim);
    border-radius: 2px;
}
.step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 var(--s-3);
}
.step p {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0 0 var(--s-3);
    flex: 1;
}
.step-action {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    transition: gap 200ms var(--ease);
    gap: 6px;
    align-self: flex-start;
}
.step-action:hover { gap: 10px; color: var(--accent-hot); }
.step-action .btn-svg { width: 14px; height: 14px; }

/* "12h trial" callout under steps */
.how-trial-callout {
    display: flex;
    align-items: center;
    gap: var(--s-5);
    background: linear-gradient(180deg, rgba(60,144,255,0.08) 0%, transparent 100%);
    border: 1px solid rgba(60,144,255,0.25);
    border-radius: var(--radius-lg);
    padding: var(--s-5) var(--s-6);
}
.trial-callout-mark {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 8px 14px;
}
.trial-callout-body h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 var(--s-2);
}
.trial-callout-body p {
    margin: 0;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.55;
}
@media (max-width: 540px) {
    .how-trial-callout { flex-direction: column; align-items: flex-start; padding: var(--s-5); }
    .trial-callout-mark { font-size: 28px; padding: 6px 10px; }
}

/* ─── Compare table ───────────────────────────────────────────
   Two completely different layouts:
   - Desktop (≥768px): 4-column grid table — labels left, 3 value cols
   - Mobile (<768px):  stacked cards — each row is a card titled by its
                       label, with 3 mini-rows showing col tag + value
   The .compare-mobile-col span carries the column name for mobile and
   is display:none on desktop (where the column header row carries it).
   ─────────────────────────────────────────────────────────── */
.compare-table {
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
}
.compare-mobile-col { display: none; }

/* ── Desktop (≥768px) — original 4-col grid ── */
@media (min-width: 768px) {
    .compare-row {
        display: grid;
        grid-template-columns: 200px 1fr 1fr 1fr;
        border-bottom: 1px solid var(--border-dim);
    }
    .compare-row:last-child { border-bottom: 0; }

    .compare-cell {
        padding: var(--s-4) var(--s-5);
        font-size: 15px;
        color: var(--text-2);
        line-height: 1.5;
        border-right: 1px solid var(--border-dim);
    }
    .compare-cell:last-child { border-right: 0; }

    .compare-cell-label {
        font-family: var(--font-mono);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--text-3);
        background: var(--bg-deep);
        font-weight: 600;
    }
    .compare-head-row { background: var(--bg-deep); }
    .compare-head-row .compare-cell {
        padding: var(--s-5);
        font-family: var(--font-mono);
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .compare-cell-bad  { color: var(--red); }
    .compare-cell-meh  { color: var(--amber); }
    .compare-cell-good {
        color: var(--accent);
        background: rgba(60,144,255,0.04);
    }
    .compare-head-row .compare-cell-good {
        background: rgba(60,144,255,0.10);
    }
    .compare-row-emphasis .compare-cell-label {
        color: var(--accent);
    }
    .compare-row-emphasis .compare-cell-good {
        background: rgba(60,144,255,0.10);
    }
}

/* ── Mobile (<768px) — stacked cards, labels become titles ── */
@media (max-width: 767px) {
    /* Header row is redundant: each value cell carries its col tag inline.
       Specificity bumped so the .compare-row { display: block } below
       doesn't override us. */
    .compare-row.compare-head-row { display: none; }

    .compare-row {
        display: block;
        padding: var(--s-5);
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-dim);
    }
    .compare-row:last-child { border-bottom: 0; }
    .compare-row-emphasis {
        background: rgba(60,144,255,0.055);
    }

    .compare-cell {
        padding: 0;
        background: transparent;
        border: 0;
        font-size: 15px;
        line-height: 1.45;
        color: var(--text);
    }

    /* Row label becomes the card header */
    .compare-cell-label {
        font-family: var(--font-mono);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--accent);
        font-weight: 700;
        padding-bottom: var(--s-3);
        margin-bottom: var(--s-3);
        border-bottom: 1px solid var(--border-dim);
    }

    /* Value cells: flex row with column tag (left) + value (right) */
    .compare-cell-bad,
    .compare-cell-meh,
    .compare-cell-good {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: var(--s-3);
        padding: 8px 0;
        align-items: baseline;
    }
    .compare-cell-good {
        background: transparent;
    }
    .compare-mobile-col {
        display: block;
        font-family: var(--font-mono);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        font-weight: 600;
    }
    .compare-cell-bad  .compare-mobile-col { color: var(--red); }
    .compare-cell-meh  .compare-mobile-col { color: var(--amber); }
    .compare-cell-good .compare-mobile-col { color: var(--accent); }
    .compare-cell-bad  .compare-cell-value { color: var(--text-2); }
    .compare-cell-meh  .compare-cell-value { color: var(--text-2); }
    .compare-cell-good .compare-cell-value { color: var(--text); font-weight: 600; }
}

/* Desktop: hide the mobile-only label; cell-value just inherits the cell. */
@media (min-width: 768px) {
    .compare-cell-value { display: inline; }
}

/* Sub-text under column heads on desktop (used only there) */
.compare-cell-sub {
    display: block;
    margin-top: 4px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--text-3);
}

/* ─── Pricing ─── */
.plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-4);
    margin-bottom: var(--s-5);
}
@media (min-width: 768px) {
    .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-5); align-items: stretch; }
}
@media (min-width: 1024px) {
    .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.plan {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: var(--s-7);
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 0;
    transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out),
                background var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.plan:hover { border-color: var(--border-strong); }
@media (hover: hover) and (pointer: fine) {
    .plan:hover { transform: translateY(-4px) scale(1.012); box-shadow: var(--elev-hover); }
}
.plan-popular {
    background: linear-gradient(180deg, rgba(60,144,255,0.06) 0%, transparent 55%);
    border-color: rgba(60,144,255,0.26);
    box-shadow: var(--elev-2);
}
@media (min-width: 1024px) {
    .plan-popular { transform: translateY(-6px); }   /* promoted at rest */
}
@media (hover: hover) and (pointer: fine) {
    .plan-popular:hover { transform: translateY(-10px) scale(1.012); }
}
.plan-popular::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    pointer-events: none;
    border: 1px solid rgba(60,144,255,0.2);
}

.plan-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 10px;
    border: 1px solid var(--border-strong);
    background: var(--bg-elevated);
    margin-bottom: var(--s-4);
    color: var(--text-2);
    align-self: flex-start;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
}
.plan-tag-hot {
    color: var(--accent);
    border-color: rgba(60,144,255,0.4);
    background: rgba(60,144,255,0.10);
}
.plan-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 var(--s-3);
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: var(--s-2);
    margin-bottom: var(--s-5);
    padding-bottom: var(--s-5);
    border-bottom: 1px solid var(--border-dim);
    flex-wrap: wrap;
}
.plan-price-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}
.plan-price-period {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-3);
}
.plan-feats {
    flex: 1;
    margin-bottom: var(--s-5);
}
.plan-feats li {
    padding: var(--s-2) 0 var(--s-2) 24px;
    color: var(--text-2);
    font-size: 15px;             /* bumped */
    position: relative;
    line-height: 1.5;
}
.plan-feats li::before {
    content: '✓';
    position: absolute; left: 0; top: var(--s-2);
    color: var(--green);
    font-family: var(--font-mono);
    font-weight: 700;
}
.plans-note {
    text-align: center;
    color: var(--text-3);
    font-size: 13px;
    font-family: var(--font-mono);
    margin: 0;
    line-height: 1.55;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── FAQ ─── */
.faq-container { max-width: 840px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 0;
    transition: background 200ms var(--ease);
}
.faq-item[open] { background: var(--bg-card); }
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-4);
    padding: var(--s-5) var(--s-4);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 18px;             /* bumped from 17 */
    font-weight: 600;
    color: var(--text);
    list-style: none;
    transition: color 150ms var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-toggle {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-3);
    transition: transform 200ms var(--ease), color 150ms var(--ease);
    line-height: 1;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); color: var(--accent); }
.faq-body {
    padding: 0 var(--s-4) var(--s-5);
    color: var(--text-2);
    line-height: 1.65;
    font-size: 16px;             /* bumped from 15 */
}
.faq-body p { margin: 0 0 var(--s-3); }
.faq-body p:last-child { margin: 0; }

/* ─── Final CTA ─── */
.cta-final {
    text-align: center;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, var(--accent-glow) 0%, transparent 60%),
        var(--bg-deep);
    border-top: 1px solid var(--border-dim);
}
.cta-final-inner { max-width: 760px; margin: 0 auto; }
.cta-final-sub {
    color: var(--text-2);
    font-size: 18px;
    margin: 0 0 var(--s-7);
    line-height: 1.55;
}

/* ─── Footer ─── */
.footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-dim);
    padding: var(--s-6) 0;
    background: var(--bg-deep);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
    align-items: flex-start;
    text-align: left;
}
@media (min-width: 768px) {
    .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-brand { display: inline-flex; align-items: center; gap: var(--s-2); }
.footer-brand .brand-logo { color: var(--text); }
.footer-nav { display: inline-flex; flex-wrap: wrap; gap: var(--s-5); }
.footer-nav a {
    color: var(--text-2);
    font-family: var(--font-mono);
    font-size: 13px;
}
.footer-nav a:hover { color: var(--text); }
.footer-meta {
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 12px;
}
.footer-sep { margin: 0 6px; opacity: 0.5; }

/* ─── Reveal-on-scroll ─── */
.reveal {
    opacity: 0;
    transform: translateY(var(--reveal-rise));
    transition: opacity var(--dur-4) var(--ease-out), transform var(--dur-4) var(--ease-out);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Section heads rise as one calm editorial unit (eyebrow + title + sub) */
.reveal-head { opacity: 0; transform: translateY(24px); }
.reveal-head.is-visible {
    opacity: 1; transform: none;
    transition: opacity var(--dur-4) var(--ease-out), transform var(--dur-4) var(--ease-out);
}

/* ─── Editorial section head (eyebrow + title left, sub offset right) ─── */
.section-head { margin-bottom: var(--s-8); }
@media (min-width: 900px) {
    .section-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
        gap: var(--s-6) var(--s-8);
        align-items: end;
    }
    .section-head .section-sub { margin-bottom: 0; }
}
.section-head-center { text-align: center; }
@media (min-width: 900px) { .section-head-center { display: block; } }
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* Big-screen breathing room (DeepMind airy rhythm) */
@media (min-width: 1180px) {
    .capabilities, .performance, .safety, .getstarted, .faq {
        padding-top: 128px;
        padding-bottom: 128px;
    }
}

/* ─── Reduced motion: nothing hidden, no lift/zoom/pan ─── */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-head { opacity: 1 !important; transform: none !important; }
    .feature:hover, .plan:hover, .plan-popular:hover, .step:hover,
    .stealth-card:hover, .multi-step:hover, .interface-card:hover {
        transform: none !important;
    }
    .plan-popular { transform: none !important; }
    .interface-card:hover .device img,
    .interface-card:hover .screen-shot img { transform: none !important; }
}

::selection { background: var(--accent); color: #000; }

/* ─── Performance metrics + Safety explainer (flat) ─── */
.stealth-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-4);
    margin: var(--s-7) 0 var(--s-6);
}
@media (min-width: 768px)  { .stealth-metrics { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }

.stealth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: var(--s-6);
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out),
                box-shadow var(--dur-2) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
    .stealth-card:hover {
        transform: translateY(-4px) scale(1.012);
        border-color: var(--border-strong);
        box-shadow: var(--elev-hover);
    }
}
.stealth-card-highlight {
    background:
        linear-gradient(180deg, rgba(60, 144, 255, 0.06), rgba(60, 144, 255, 0.02)),
        var(--bg-card);
    border-color: rgba(60, 144, 255, 0.35);
}
.stealth-card-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
}
.stealth-card-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 56px;
    line-height: 1;
    color: var(--text);
    letter-spacing: 0;
}
.stealth-card-highlight .stealth-card-value { color: var(--accent); }
.stealth-card-unit {
    font-size: 24px;
    color: var(--text-2);
    font-weight: 500;
    letter-spacing: 0;
}
.stealth-card-body {
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.5;
}

.stealth-explainer {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: var(--s-5) var(--s-5);
    max-width: var(--container-text);
    margin: 0 auto;
}
@media (min-width: 768px) {
    .stealth-explainer { padding: var(--s-6) var(--s-7); }
}
.stealth-explainer h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 var(--s-3);
    color: var(--text);
}
.stealth-explainer p {
    color: var(--text-2);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}
.stealth-explainer strong { color: var(--text); }

/* ════════════════════════════════════════════════════════════════════
   v2 — calmer tone + simpler structure: dock, sub-block heads, spacing
   ════════════════════════════════════════════════════════════════════ */

/* ─── Floating section dock (appears after the hero, desktop) ─── */
.dock {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%) translateY(14px);
    z-index: 60;
    display: flex;
    gap: 2px;
    padding: 5px;
    background: rgba(20,20,23,0.7);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    box-shadow: var(--elev-3);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out), visibility var(--dur-2);
}
.dock.is-visible { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dock a {
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
    white-space: nowrap;
    transition: color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out);
}
.dock a:hover { color: var(--text); }
.dock a.is-active { color: var(--text); background: rgba(255,255,255,0.08); }
@media (max-width: 759px) { .dock { display: none; } }
@media (prefers-reduced-motion: reduce) {
    .dock { transition: opacity 0.01ms; transform: translateX(-50%); }
    .dock.is-visible { transform: translateX(-50%); }
}

/* ─── Capabilities sub-blocks ─── */
.cap-lead { margin: var(--s-9) 0 96px; }
@media (min-width: 1180px) { .cap-lead { margin-bottom: 112px; } }

/* a kicker label above a demoted block title */
.kicker {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--s-3);
}
.cap-lead-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin: 0 0 var(--s-4);
    color: var(--text);
    text-wrap: balance;
}

/* a smaller section sub-head used between sub-blocks (real screens / vs bots / pricing) */
.cap-subhead {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--text);
    margin: 0 0 var(--s-6);
    text-wrap: balance;
}
.interface-rail { margin-bottom: 96px; }
.cap-features { margin-top: 0; }

/* ─── Performance ─── */
.performance .cap-subhead { margin-top: var(--s-9); }
@media (min-width: 1180px) { .performance .cap-subhead { margin-top: 112px; } }

/* ─── Safety ─── */
.safety-grid { margin-bottom: var(--s-7); }
.safety .stealth-explainer { margin-top: var(--s-4); }

/* ─── Get started ─── */
.getstarted .steps { margin-bottom: var(--s-7); }
.getstarted .cap-subhead {
    margin-top: 96px;
    padding-top: var(--s-8);
    border-top: 1px solid var(--border-dim);
}
@media (min-width: 1180px) { .getstarted .cap-subhead { margin-top: 112px; } }
.getstarted-pricing-sub { margin-bottom: var(--s-7); }

.getstarted-cta {
    margin-top: 96px;
    padding-top: var(--s-8);
    border-top: 1px solid var(--border-dim);
    text-align: center;
}
.getstarted-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 var(--s-4);
    color: var(--text);
    text-wrap: balance;
}
.getstarted-cta .cta-final-sub { margin-left: auto; margin-right: auto; }

/* Distilled grids (capabilities + safety): uniform cards, no first-child hero emphasis */
.cap-features .feature:first-child,
.safety-grid .feature:first-child { grid-column: auto; min-height: 0; }
.cap-features .feature:first-child h3,
.safety-grid .feature:first-child h3 { max-width: none; font-size: 20px; line-height: 1.3; }
.cap-features .feature:first-child p,
.safety-grid .feature:first-child p { max-width: none; font-size: 15px; }
@media (min-width: 1024px) { .cap-features { grid-template-columns: repeat(2, 1fr); } }

/* ─── Condensed speed strip (top of the product block) ─── */
.metric-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--s-4) var(--s-6);
    margin-bottom: var(--s-8);
    padding: var(--s-5) var(--s-6);
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
}
.metric-strip-title {
    font-family: var(--font-display);
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-right: auto;
}
.metric-strip-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-6);
}
.metric-strip .metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.metric-strip .metric strong {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
}
.metric-strip .metric strong span { font-size: 14px; color: var(--text-3); font-weight: 600; margin-left: 2px; }
.metric-strip .metric small {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-3);
}

/* ─── Get started: condensed 2-minute setup line ─── */
.setup-line {
    max-width: var(--container-text);
    margin: 0 0 var(--s-7);
    color: var(--text-2);
    font-size: 16px;
    line-height: 1.65;
}
.setup-line strong { color: var(--text); }

/* ─── Safety: honest-disclaimer callout ─── */
.safety-honest {
    margin-top: var(--s-6);
    padding: var(--s-5) var(--s-6);
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-left: 3px solid var(--text-3);
    border-radius: var(--radius-lg);
    max-width: var(--container-text);
}
.safety-honest h4 {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
    margin: 0 0 var(--s-2);
}
.safety-honest p { margin: 0; color: var(--text-2); font-size: 15px; line-height: 1.65; }

/* Get-started: Telegram-pay trust callout (defuses the scam worry) */
.get-trust {
    margin: var(--s-6) auto 0;
    max-width: var(--container-text);
    padding: var(--s-5) var(--s-6);
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-lg);
}
.get-trust h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--s-2);
}
.get-trust p { margin: 0; color: var(--text-2); font-size: 15px; line-height: 1.65; }

/* Anchor jumps (dock / nav) clear the sticky top nav */
.hero, .capabilities, .performance, .safety, .getstarted, .faq { scroll-margin-top: 76px; }
