/* ╔══════════════════════════════════════════════════════════════════╗
   ║  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 {
    --bg-canvas:    #0a0e14;
    --bg-deep:      #06090d;
    --bg-elevated:  #0f141b;
    --bg-card:      #0c1117;
    --bg-card-hover:#0f151c;

    --border-dim:   rgba(255,255,255,0.06);
    --border:       rgba(255,255,255,0.10);
    --border-strong:rgba(255,255,255,0.16);

    --accent:       #4a9eff;
    --accent-hot:   #6ab0ff;
    --accent-glow:  rgba(74,158,255,0.18);

    --green:        #22d58f;
    --green-glow:   rgba(34,213,143,0.18);
    --amber:        #ffb84d;
    --red:          #ff5247;

    /* 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;
    --radius: 4px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,*::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); } }

/* ─── Background ─── */
.bg-grid {
    position: fixed; inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 70%);
}
.bg-scanline {
    position: fixed; inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 3px,
        rgba(255,255,255,0.012) 3px,
        rgba(255,255,255,0.012) 4px
    );
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

/* ─── 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.6vw, 46px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 var(--s-4);
    color: var(--text);
}
.section-sub {
    font-size: clamp(16px, 2.1vw, 18px);    /* bumped — was 15-17 */
    color: var(--text-2);
    max-width: 680px;
    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 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    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);
    box-shadow: 0 0 0 1px var(--accent) inset, 0 8px 24px -8px var(--accent-glow);
}
.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;
    box-shadow: 0 0 0 1px var(--accent-hot) inset, 0 12px 32px -8px var(--accent-glow);
}
.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-secondary:hover { background: var(--bg-card-hover); color: var(--text); }
.btn-ghost { background: transparent; color: var(--text-2); }
.btn-ghost:hover { color: var(--text); background: var(--bg-elevated); }

/* ─── 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,14,20,0.74);
    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 { display: none; }
    .nav-inner { gap: var(--s-2); }
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-7);
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 420px; gap: var(--s-8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 var(--s-5);
}
.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;
}
@keyframes blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

.hero-sub {
    font-size: clamp(17px, 2.2vw, 19px);   /* bumped */
    color: var(--text-2);
    margin: 0 0 var(--s-6);
    max-width: 600px;
    line-height: 1.55;
}

.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(34,213,143,0.08);
    color: var(--green) !important;
    border: 1px solid rgba(34,213,143,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);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px var(--border-dim),
        0 24px 64px -16px rgba(0,0,0,0.55),
        0 0 80px -24px var(--accent-glow);
    animation: feed-float 7s ease-in-out infinite;
}
@keyframes feed-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
@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(34,213,143,0.45); }
    70%  { box-shadow: 0 0 0 8px rgba(34,213,143,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,213,143,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(34,213,143,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(34,213,143,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.01em;
}
.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-7) 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-5);
}
@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-7); }
}
.stat { text-align: center; }
.stat-value {
    font-family: var(--font-display);
    font-size: clamp(34px, 5.4vw, 52px);     /* bumped */
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--s-2);
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 13px;             /* was 12, bumped */
    color: var(--text-2);        /* was text-3, bumped */
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.45;
}

/* ─── Section padding ─── */
.problem,
.features,
.stealth,
.how,
.compare,
.pricing,
.faq,
.cta-final {
    position: relative;
    z-index: 2;
    padding: var(--s-9) 0;
}
@media (min-width: 768px) {
    .problem, .features, .stealth, .how, .compare, .pricing, .faq, .cta-final {
        padding: var(--s-10) 0;
    }
}

/* ─── 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);
    border-radius: var(--radius);
    padding: var(--s-6);
    position: relative;
    transition: all 220ms var(--ease);
    overflow: hidden;
}
.feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 280ms var(--ease);
}
.feature:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
    transform: translateY(-2px);
}
.feature:hover::before { transform: scaleY(1); }

.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);
    border-radius: var(--radius);
    padding: var(--s-6);
    transition: all 220ms var(--ease);
    display: flex;
    flex-direction: column;
}
.step:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
    transform: translateY(-2px);
}
.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);
    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(74,158,255,0.08) 0%, transparent 100%);
    border: 1px solid rgba(74,158,255,0.25);
    border-radius: var(--radius);
    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);
    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(74,158,255,0.04);
    }
    .compare-head-row .compare-cell-good {
        background: rgba(74,158,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-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(3, 1fr); gap: var(--s-5); align-items: stretch; }
}
.plan {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--s-6);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 220ms var(--ease);
}
.plan:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.plan-popular {
    background: linear-gradient(180deg, rgba(74,158,255,0.10) 0%, transparent 60%);
    border-color: rgba(74,158,255,0.35);
    box-shadow: 0 16px 48px -16px var(--accent-glow);
}
.plan-popular::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    pointer-events: none;
    border: 1px solid rgba(74,158,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;
}
.plan-tag-hot {
    color: var(--accent);
    border-color: rgba(74,158,255,0.4);
    background: rgba(74,158,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(20px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

/* ─── Stealth / Speed vs Safety section ─── */
.stealth {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74, 158, 255, 0.06), transparent 70%),
        var(--bg);
}
.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);
    border-radius: var(--radius);
    padding: var(--s-5);
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    transition: transform 200ms var(--ease), border-color 200ms var(--ease);
}
.stealth-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
}
.stealth-card-highlight {
    background:
        linear-gradient(180deg, rgba(74, 158, 255, 0.06), rgba(74, 158, 255, 0.02)),
        var(--bg-card);
    border-color: rgba(74, 158, 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.02em;
}
.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);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: var(--s-5) var(--s-5);
    max-width: 760px;
    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); }
