/* ===========================================================================
   Chatting HQ — Landing page  ·  v2 (mobile-first, elevated)
   ---------------------------------------------------------------------------
   Loads after styles.css, so every Signal --token, .btn, .badge, .card,
   .input, .grad, .eyebrow is available. This sheet is authored MOBILE-FIRST:
   base rules target phones; min-width queries enhance for tablet/desktop.
   Cyan is the signature; gold marks money, wins and the "most popular" plan.
   ========================================================================= */

/* -------------------------------------------------------------------------
   0 · Fluid scale + scope tokens
   ------------------------------------------------------------------------- */
:root {
  --lp-maxw: 1140px;
  --lp-gut: 20px;
  --lp-sec: clamp(56px, 8.5vw, 124px);     /* section block padding */
  --lp-sec-sm: clamp(44px, 6vw, 84px);

  /* fluid type */
  --fs-hero:  clamp(2.35rem, 1.4rem + 4.6vw, 4.75rem);
  --fs-h2:    clamp(1.85rem, 1.3rem + 2.4vw, 3.05rem);
  --fs-h3:    clamp(1.4rem, 1.15rem + 1.1vw, 2.05rem);
  --fs-lead:  clamp(1.03rem, 0.98rem + 0.4vw, 1.2rem);
  --fs-sub:   clamp(1rem, 0.96rem + 0.3vw, 1.16rem);
}

/* -------------------------------------------------------------------------
   1 · Base + mobile hygiene
   ------------------------------------------------------------------------- */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.lp {
  font-size: 16px; line-height: 1.6;
  overflow-x: hidden;            /* belt-and-suspenders against stray overflow */
}
body.lp.no-scroll { overflow: hidden; }
.lp, .lp * { -webkit-tap-highlight-color: transparent; }
.lp a, .lp button, .lp select, .lp input, .lp textarea { touch-action: manipulation; }
.lp img, .lp svg { display: block; max-width: 100%; }
.lp ::selection { background: var(--accent-soft-2); color: var(--text); }

.lp .wrap { width: 100%; max-width: var(--lp-maxw); margin: 0 auto; padding: 0 var(--lp-gut); }
.lp section { position: relative; }
.lp .sec { padding: var(--lp-sec) 0; }
.lp .sec-tight { padding: var(--lp-sec-sm) 0; }
.lp .soft-bg { background: color-mix(in srgb, var(--surface) 46%, transparent); border-block: 1px solid var(--border); }
.lp .brk { display: none; }      /* forced line-breaks only kick in on desktop */

/* eyebrow */
.lp .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 11px; font-weight: 500;
  color: var(--accent-ink);
}
.lp .eyebrow::before { content: ""; width: 18px; height: 1.5px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), transparent); }
.lp .eyebrow.center { justify-content: center; }
.lp .eyebrow.center::before { width: 22px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }

/* section heads */
.lp .sec-head { max-width: 720px; }
.lp .sec-head.center { margin: 0 auto; text-align: center; }
.lp h2.title { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h2); line-height: 1.06; letter-spacing: -0.025em; margin: 14px 0 0; }
.lp .sec-head p.sub { color: var(--text-2); font-size: var(--fs-sub); margin: 16px 0 0; max-width: 640px; }
.lp .sec-head.center p.sub { margin-left: auto; margin-right: auto; }
.lp .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp .grad-gold { background: linear-gradient(100deg, var(--gold) 0%, color-mix(in srgb, var(--gold) 55%, #f6dd92) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* -------------------------------------------------------------------------
   2 · Buttons (extend .btn)
   ------------------------------------------------------------------------- */
.lp .btn { cursor: pointer; font-family: var(--font); white-space: nowrap; min-height: 44px; }
.lp .btn-xl { padding: 14px 24px; font-size: 16px; border-radius: 13px; font-weight: 650; }
.lp .btn-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--accent-2), var(--accent) 60%, var(--accent-strong));
  color: var(--accent-fg); border: 1px solid transparent; font-weight: 650;
  box-shadow: 0 10px 26px -12px rgba(0,175,240,.85), inset 0 1px 0 rgba(255,255,255,.28);
}
.lp .btn-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.35) 50%, transparent 65%); transform: translateX(-120%); transition: transform .6s var(--ease); }
.lp .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(0,175,240,.95), inset 0 1px 0 rgba(255,255,255,.3); border-color: transparent; }
.lp .btn-cta:hover::after { transform: translateX(120%); }
.lp .btn-cta:active { transform: translateY(0); }
.lp .btn-line { background: var(--surface); color: var(--text); border: 1px solid var(--border-strong); }
.lp .btn-line:hover { background: var(--surface-2); border-color: var(--accent-line); transform: translateY(-2px); }
.lp .btn-soft { background: var(--accent-soft); color: var(--accent-ink); border: 1px solid var(--accent-line); }
.lp .btn-soft:hover { background: var(--accent-soft-2); transform: translateY(-2px); }
.lp .btn .bi { width: 18px; height: 18px; flex: none; }
.lp .btn-arrow .bi { transition: transform var(--t) var(--ease); }
.lp .btn-arrow:hover .bi { transform: translateX(3px); }

/* -------------------------------------------------------------------------
   3 · Scroll progress
   ------------------------------------------------------------------------- */
.lp-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: calc(var(--z-topbar) + 1); background: linear-gradient(90deg, var(--accent), var(--c-blue)); box-shadow: 0 0 12px rgba(0,175,240,.6); transition: width .08s linear; }

/* -------------------------------------------------------------------------
   4 · NAV
   ------------------------------------------------------------------------- */
.lp-nav { position: fixed; inset: 12px 0 auto; z-index: var(--z-topbar); display: flex; justify-content: center; pointer-events: none; transition: inset var(--t-slow) var(--ease); }
.lp-nav .nav-inner {
  pointer-events: auto; width: min(var(--lp-maxw), calc(100% - 24px));
  display: flex; align-items: center; gap: 14px;
  padding: 9px 9px 9px 16px; border-radius: 15px;
  background: var(--topbar-bg);
  -webkit-backdrop-filter: saturate(180%) blur(16px); backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.lp-nav.scrolled { inset: 6px 0 auto; }
.lp-nav.scrolled .nav-inner { box-shadow: var(--shadow); border-color: var(--border-strong); }

.lp-logo { display: inline-flex; align-items: center; gap: 10px; flex: none; text-decoration: none; }
.lp-mark { width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center; font-family: var(--font-mono); font-weight: 600; font-size: 12.5px; letter-spacing: -0.02em; color: var(--accent-fg); background: var(--accent-glow); box-shadow: 0 4px 14px -6px rgba(0,175,240,.7), inset 0 1px 0 rgba(255,255,255,.25); }
.lp-wordmark { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; color: var(--text); }
.lp-wordmark b { color: var(--accent-ink); font-weight: 600; }

.lp-nav nav.nav-links { display: none; align-items: center; gap: 2px; margin-left: 6px; }
.lp-nav .nav-links a { font-size: 14.5px; color: var(--text-2); font-weight: 500; padding: 8px 12px; border-radius: 9px; text-decoration: none; transition: color var(--t-fast), background var(--t-fast); }
.lp-nav .nav-links a:hover { color: var(--text); background: var(--hover-tint); text-decoration: none; }
.lp-nav .nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.lp-icon-btn { width: 44px; height: 44px; border-radius: 11px; flex: none; display: grid; place-items: center; cursor: pointer; background: transparent; border: 1px solid var(--border); color: var(--text-2); transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast); }
.lp-icon-btn:hover { color: var(--text); border-color: var(--border-strong); background: var(--hover-tint); }
.lp-icon-btn .bi { width: 19px; height: 19px; }
.lp-nav .nav-right .btn-line, .lp-nav .nav-right .btn-cta { display: none; }   /* shown on desktop */

/* mobile sheet */
.lp-mobile { position: fixed; inset: 0; z-index: var(--z-modal); background: var(--scrim); opacity: 0; visibility: hidden; transition: opacity var(--t) var(--ease), visibility var(--t); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.lp-mobile.open { opacity: 1; visibility: visible; }
.lp-mobile .sheet { position: absolute; top: 10px; right: 10px; left: 10px; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 18px; padding: 12px; box-shadow: var(--shadow-lg); transform: translateY(-14px); opacity: 0; transition: transform var(--t-slow) var(--ease-out), opacity var(--t) var(--ease); }
.lp-mobile.open .sheet { transform: none; opacity: 1; }
.lp-mobile .sheet-head { display: flex; align-items: center; justify-content: space-between; padding: 6px 6px 10px; }
.lp-mobile .sheet a { display: flex; align-items: center; min-height: 50px; padding: 0 14px; border-radius: 12px; font-size: 16.5px; font-weight: 500; color: var(--text); text-decoration: none; }
.lp-mobile .sheet a:active { background: var(--surface-2); }
.lp-mobile .sheet hr { border: none; border-top: 1px solid var(--border); margin: 8px 4px; }
.lp-mobile .sheet .btn { width: 100%; justify-content: center; margin-top: 6px; }
.lp-mobile .sheet-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 8px 4px; color: var(--text-3); font-size: 13px; }

/* -------------------------------------------------------------------------
   5 · HERO
   ------------------------------------------------------------------------- */
.lp-hero { padding: 116px 0 var(--lp-sec-sm); overflow: hidden; }
.lp-hero .aurora, .lp-hero .lp-grid-bg, .lp-hero::before { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.lp-hero::before {
  content: "";
  background:
    radial-gradient(800px 420px at 80% -6%, var(--accent-soft-2), transparent 60%),
    radial-gradient(620px 340px at 2% 2%, color-mix(in srgb, var(--c-blue) 13%, transparent), transparent 60%);
}
.lp-hero .aurora { background: conic-gradient(from 120deg at 72% 8%, transparent, var(--accent-soft) 18%, transparent 38%, color-mix(in srgb, var(--c-blue) 22%, transparent) 60%, transparent 80%); filter: blur(46px); opacity: .5; animation: spin-slow 26s linear infinite; transform-origin: 70% 10%; }
.lp-hero .lp-grid-bg {
  -webkit-mask-image: radial-gradient(680px 480px at 50% 6%, #000, transparent 76%);
  mask-image: radial-gradient(680px 480px at 50% 6%, #000, transparent 76%);
  background-image: linear-gradient(to right, var(--border) 1px, transparent 1px), linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 44px 44px; opacity: .45;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.lp-hero-inner { display: grid; gap: 40px; align-items: center; text-align: center; }

.hero-pill { display: inline-flex; align-items: center; gap: 9px; padding: 6px 13px 6px 7px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm); font-size: 12.5px; color: var(--text-2); margin: 0 auto; max-width: 92vw; }
.hero-pill .tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; background: var(--accent-soft); color: var(--accent-ink); padding: 3px 9px; border-radius: 999px; font-weight: 600; flex: none; }
.lp h1.hero-h { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-hero); line-height: 1.04; letter-spacing: -0.03em; margin: 18px auto 0; color: var(--text); max-width: 16ch; }
.lp .hero-sub { color: var(--text-2); font-size: var(--fs-lead); line-height: 1.55; margin: 18px auto 0; max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px auto 0; justify-content: center; }
.hero-cta .btn { flex: 1 1 auto; max-width: 320px; }
.hero-trust { display: inline-flex; align-items: center; gap: 12px; margin: 24px auto 0; color: var(--text-3); font-size: 13.5px; flex-wrap: wrap; justify-content: center; }
.hero-trust .dots { display: inline-flex; }
.hero-trust .dots span { width: 28px; height: 28px; border-radius: 50%; margin-left: -9px; border: 2px solid var(--surface); display: grid; place-items: center; font-size: 10px; font-weight: 700; font-family: var(--font-mono); }
.hero-trust .dots span:first-child { margin-left: 0; }
.hero-trust b { color: var(--text-2); font-weight: 600; }

/* hero product mock */
.hero-visual { position: relative; width: 100%; max-width: 560px; margin: 8px auto 0; }
.hero-visual .glow { position: absolute; inset: -6% -4% -10%; z-index: 0; pointer-events: none; background: var(--accent-glow); filter: blur(54px); opacity: .24; border-radius: 50%; }
.mock { position: relative; z-index: 1; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; }
.mock-bar { display: flex; align-items: center; gap: 12px; padding: 12px 15px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.mock-bar .dots3 { display: flex; gap: 6px; }
.mock-bar .dots3 i { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); }
.mock-bar .crumb { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; color: var(--text-3); text-transform: uppercase; }
.mock-bar .ws { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--text-2); padding: 4px 10px; border: 1px solid var(--border); border-radius: 999px; }
.mock-bar .ws .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 var(--ok-soft); animation: livepulse 2.2s var(--ease) infinite; }
@keyframes livepulse { 0%,100% { box-shadow: 0 0 0 0 color-mix(in srgb,var(--ok) 55%, transparent); } 60% { box-shadow: 0 0 0 6px transparent; } }
.mock-body { padding: 14px; display: grid; gap: 11px; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.mock-stat { background: var(--surface-2); border: 1px solid var(--border-soft); border-radius: 11px; padding: 11px; }
.mock-stat .k { font-family: var(--font-mono); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; color: var(--text-3); }
.mock-stat .v { font-family: var(--font-display); font-size: clamp(18px, 5vw, 24px); font-weight: 600; letter-spacing: -0.02em; margin-top: 3px; font-variant-numeric: tabular-nums; }
.mock-stat .v.gold { color: var(--gold-ink); }
.mock-stat .trend { font-size: 10.5px; color: var(--ok-ink); margin-top: 2px; }
.mock-cols { display: grid; grid-template-columns: 1.25fr 1fr; gap: 11px; }
.mock-card { background: var(--surface-2); border: 1px solid var(--border-soft); border-radius: 11px; padding: 12px; }
.mock-card .ch { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.mock-card .ch h5 { font-family: var(--font); font-size: 12px; font-weight: 650; color: var(--text); }
.mock-card .ch .pin { font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.mock-chart { display: flex; align-items: flex-end; gap: 7px; height: 84px; }
.mock-chart .bar { flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, var(--accent), var(--accent-strong)); opacity: .92; transform-origin: bottom; }
.mock-chart .bar.lo { background: var(--surface-3); }
.reveal.in .mock-chart .bar { animation: barGrow .7s var(--ease-out) both; }
.reveal.in .mock-chart .bar:nth-child(2){animation-delay:.05s} .reveal.in .mock-chart .bar:nth-child(3){animation-delay:.1s} .reveal.in .mock-chart .bar:nth-child(4){animation-delay:.15s} .reveal.in .mock-chart .bar:nth-child(5){animation-delay:.2s} .reveal.in .mock-chart .bar:nth-child(6){animation-delay:.25s} .reveal.in .mock-chart .bar:nth-child(7){animation-delay:.3s}
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.mock-rank { display: flex; flex-direction: column; gap: 8px; }
.mock-rank .r { display: flex; align-items: center; gap: 9px; }
.mock-rank .r .n { width: 18px; height: 18px; border-radius: 6px; display: grid; place-items: center; font-family: var(--font-mono); font-size: 10px; font-weight: 700; background: var(--surface-3); color: var(--text-2); flex: none; }
.mock-rank .r.first .n { background: var(--gold-soft); color: var(--gold-ink); }
.mock-rank .r .av { width: 22px; height: 22px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; font-size: 9px; font-weight: 700; flex: none; }
.mock-rank .r .nm { font-size: 11.5px; color: var(--text); font-weight: 500; }
.mock-rank .r .sc { margin-left: auto; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-2); font-variant-numeric: tabular-nums; }
.mock-rank .r.first .sc { color: var(--gold-ink); font-weight: 600; }

.mock-float { position: absolute; z-index: 2; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 9px 12px; display: flex; align-items: center; gap: 10px; font-size: 12px; }
.mock-float .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.mock-float .ic .bi { width: 16px; height: 16px; }
.mock-float .t { font-weight: 650; color: var(--text); }
.mock-float .s { color: var(--text-3); font-size: 11px; }
.mock-float.f1 { top: 14%; left: -14px; }
.mock-float.f2 { bottom: 12%; right: -14px; }

/* -------------------------------------------------------------------------
   6 · CAPABILITY MARQUEE
   ------------------------------------------------------------------------- */
.marquee { overflow: hidden; border-block: 1px solid var(--border); background: color-mix(in srgb, var(--surface) 40%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 40px; width: max-content; padding: 16px 20px; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; color: var(--text-2); font-size: 14.5px; font-weight: 500; white-space: nowrap; }
.marquee-item .bi { width: 17px; height: 17px; color: var(--accent-ink); }
.marquee-item .sep { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* -------------------------------------------------------------------------
   7 · STAT BAND
   ------------------------------------------------------------------------- */
.lp-band .wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 18px; padding-block: 34px; }
.band-stat { text-align: center; }
.band-stat .v { font-family: var(--font-display); font-size: clamp(28px, 8vw, 44px); font-weight: 600; letter-spacing: -0.03em; color: var(--text); font-variant-numeric: tabular-nums; line-height: 1; }
.band-stat .v .u { color: var(--accent-ink); }
.band-stat .v.gold { color: var(--gold-ink); }
.band-stat .k { color: var(--text-3); font-size: 12.5px; margin-top: 9px; }

/* -------------------------------------------------------------------------
   8 · pointer-glow card base (shared)
   ------------------------------------------------------------------------- */
.glowcard { position: relative; isolation: isolate; }
.glowcard::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; opacity: 0; transition: opacity var(--t) var(--ease); background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), var(--accent-soft), transparent 60%); }
.glowcard:hover::before { opacity: 1; }

/* -------------------------------------------------------------------------
   9 · BENTO
   ------------------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
.tile { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; overflow: hidden; transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.tile:hover { transform: translateY(-3px); border-color: var(--border-accent); box-shadow: var(--shadow); }
.tile .t-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); border: 1px solid var(--accent-line); margin-bottom: 15px; }
.tile .t-ic.gold { background: var(--gold-soft); color: var(--gold-ink); border-color: color-mix(in srgb, var(--gold) 34%, transparent); }
.tile .t-ic .bi { width: 23px; height: 23px; }
.tile h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.015em; }
.tile p { color: var(--text-2); font-size: 14.5px; margin: 9px 0 0; line-height: 1.55; }
.tile .t-list { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.tile .t-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--text-2); }
.tile .t-list li .bi { width: 16px; height: 16px; color: var(--ok-ink); flex: none; margin-top: 2px; }
.tile .tile-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.badge.soon { background: var(--surface-3); color: var(--text-2); font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.badge.live { background: var(--ok-soft); color: var(--ok-ink); font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* -------------------------------------------------------------------------
   10 · COMPARISON (old way vs HQ way)
   ------------------------------------------------------------------------- */
.vs { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 44px; }
.vs-col { border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 24px; background: var(--surface); }
.vs-col.bad { background: color-mix(in srgb, var(--bad) 5%, var(--surface)); border-color: color-mix(in srgb, var(--bad) 20%, var(--border)); }
.vs-col.good { background: color-mix(in srgb, var(--accent) 6%, var(--surface)); border-color: var(--border-accent); box-shadow: var(--shadow); }
.vs-col .vs-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; padding: 5px 11px; border-radius: 999px; margin-bottom: 16px; }
.vs-col.bad .vs-tag { background: var(--bad-soft); color: var(--bad-ink); }
.vs-col.good .vs-tag { background: var(--accent-soft); color: var(--accent-ink); }
.vs-row { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; font-size: 15px; color: var(--text); }
.vs-row + .vs-row { border-top: 1px solid var(--border-soft); }
.vs-ic { width: 24px; height: 24px; border-radius: 8px; flex: none; display: grid; place-items: center; margin-top: 1px; }
.vs-col.bad .vs-ic { background: var(--bad-soft); color: var(--bad-ink); }
.vs-col.good .vs-ic { background: var(--ok-soft); color: var(--ok-ink); }
.vs-ic .bi { width: 15px; height: 15px; }
.vs-col.bad .vs-row { color: var(--text-2); }

/* -------------------------------------------------------------------------
   11 · HOW IT WORKS
   ------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step .num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); border: 1px solid var(--accent-line); margin-bottom: 15px; }
.step h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; }
.step p { color: var(--text-2); font-size: 14.5px; margin: 8px 0 0; line-height: 1.55; }

/* -------------------------------------------------------------------------
   12 · SPOTLIGHTS
   ------------------------------------------------------------------------- */
.spot { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.spot + .spot { margin-top: clamp(48px, 9vw, 100px); }
.spot-text .eyebrow { margin-bottom: 13px; }
.spot-text h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; }
.spot-text p { color: var(--text-2); font-size: var(--fs-sub); margin: 13px 0 0; line-height: 1.6; }
.spot-text .checks { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.spot-text .checks li { display: flex; align-items: flex-start; gap: 11px; color: var(--text); font-size: 15px; }
.spot-text .checks li .ck { width: 22px; height: 22px; border-radius: 7px; background: var(--ok-soft); color: var(--ok-ink); display: grid; place-items: center; flex: none; margin-top: 1px; }
.spot-text .checks li .ck .bi { width: 14px; height: 14px; }
.spot-visual { position: relative; }
.spot-visual .glow { position: absolute; inset: 6% 2%; background: var(--accent-glow); filter: blur(50px); opacity: .14; z-index: 0; border-radius: 40%; }
.spot-panel { position: relative; z-index: 1; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 18px; overflow: hidden; }
.ring-wrap { display: flex; align-items: center; gap: 16px; }
.ring { --p: 72; width: 64px; height: 64px; border-radius: 50%; flex: none; background: conic-gradient(var(--accent) calc(var(--p) * 1%), var(--surface-3) 0); display: grid; place-items: center; position: relative; }
.ring .inner { width: 48px; height: 48px; border-radius: 50%; background: var(--surface); display: grid; place-items: center; font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--text); }
.lesson-row { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--border-soft); }
.lesson-row + .lesson-row { margin-top: 8px; }
.lesson-row .lk { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex: none; background: var(--accent-soft); color: var(--accent-ink); }
.lesson-row .lk .bi { width: 15px; height: 15px; }
.lesson-row .lt { font-size: 13.5px; color: var(--text); font-weight: 500; }
.lesson-row .ls { font-size: 11.5px; color: var(--text-3); margin-top: 1px; }
.lesson-row .done { margin-left: auto; color: var(--ok-ink); }
.lesson-row .done .bi { width: 18px; height: 18px; }
.q-mock .q-q { font-size: 14.5px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.q-opt { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 10px; border: 1px solid var(--border); font-size: 13.5px; color: var(--text-2); }
.q-opt + .q-opt { margin-top: 8px; }
.q-opt .box { width: 18px; height: 18px; border-radius: 6px; border: 1.5px solid var(--control-border); flex: none; }
.q-opt.correct { border-color: color-mix(in srgb, var(--ok) 50%, transparent); background: var(--ok-soft); color: var(--ok-ink); font-weight: 600; }
.q-opt.correct .box { background: var(--ok); border-color: var(--ok); color: #fff; display: grid; place-items: center; }
.q-opt.correct .box .bi { width: 13px; height: 13px; }
.q-score { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.q-score .lab { font-size: 12px; color: var(--text-3); font-family: var(--font-mono); letter-spacing: .06em; text-transform: uppercase; }
.q-score .val { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--ok-ink); }

/* -------------------------------------------------------------------------
   13 · ROADMAP GRID
   ------------------------------------------------------------------------- */
.allgrid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
.cap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 17px; display: flex; gap: 13px; align-items: flex-start; transition: border-color var(--t) var(--ease), transform var(--t) var(--ease); }
.cap:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.cap .cic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none; background: var(--accent-soft); color: var(--accent-ink); }
.cap .cic.gold { background: var(--gold-soft); color: var(--gold-ink); }
.cap .cic .bi { width: 19px; height: 19px; }
.cap .cb { flex: 1; min-width: 0; }
.cap .cb .ct { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cap .cb h4 { font-family: var(--font); font-size: 15px; font-weight: 650; color: var(--text); }
.cap .cb p { color: var(--text-3); font-size: 13px; margin: 5px 0 0; line-height: 1.5; }

/* -------------------------------------------------------------------------
   14 · QUOTE / PROOF
   ------------------------------------------------------------------------- */
.quote-card { max-width: 880px; margin: 0 auto; text-align: center; position: relative; padding: 8px 0; }
.quote-mark { font-family: var(--font-display); font-size: 64px; line-height: .6; color: var(--accent); opacity: .35; height: 30px; }
.quote-text { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 1rem + 1.8vw, 2.1rem); line-height: 1.3; letter-spacing: -0.015em; color: var(--text); margin: 6px auto 0; max-width: 20ch; }
.quote-text em { font-style: italic; color: var(--accent-ink); }
.quote-by { margin-top: 22px; color: var(--text-3); font-size: 13.5px; }
.quote-by b { color: var(--text-2); font-weight: 600; }

/* -------------------------------------------------------------------------
   14b · TRANSFORMATION (chatter before / after)
   ------------------------------------------------------------------------- */
.xf { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 40px; align-items: stretch; }
.xf-card { position: relative; border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 22px; background: var(--surface); overflow: hidden; }
.xf-card.before { background: color-mix(in srgb, var(--surface-3) 28%, var(--surface)); }
.xf-card.after { background: color-mix(in srgb, var(--accent) 6%, var(--surface)); border-color: var(--border-accent); box-shadow: var(--shadow); }
.xf-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.xf-who { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text); }
.xf-av { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-mono); font-size: 11px; font-weight: 700; background: var(--surface-3); color: var(--text-2); flex: none; }
.xf-av.gold { background: var(--gold-soft); color: var(--gold-ink); }
.xf-week { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); padding: 4px 9px; border-radius: 999px; border: 1px solid var(--border); }
.xf-state { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--text-2); }
.xf-state.good { color: var(--ok-ink); }
.xf-dot { width: 16px; height: 16px; border-radius: 50%; flex: none; display: grid; place-items: center; }
.xf-dot.bad { background: var(--bad-soft); border: 1.5px solid color-mix(in srgb, var(--bad) 40%, transparent); }
.xf-dot.ok { background: var(--ok); color: #fff; }
.xf-dot .bi { width: 11px; height: 11px; }
.xf-metrics { list-style: none; margin: 16px 0 0; padding: 0; }
.xf-metrics li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; font-size: 13.5px; }
.xf-metrics li + li { border-top: 1px solid var(--border-soft); }
.xf-metrics .m-k { color: var(--text-3); }
.xf-metrics .m-v { font-family: var(--font-mono); font-weight: 600; color: var(--text-2); font-variant-numeric: tabular-nums; }
.xf-card.before .m-v { color: var(--text-3); }
.xf-metrics .m-v.up { color: var(--accent-ink); }
.xf-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border-soft); font-size: 12.5px; color: var(--text-3); line-height: 1.5; }
.xf-card.after .xf-foot { color: var(--text-2); }
.xf-rank { position: absolute; top: 16px; right: 16px; display: inline-flex; align-items: center; gap: 4px; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .04em; background: var(--gold-soft); color: var(--gold-ink); padding: 4px 9px; border-radius: 999px; }
.xf-rank .bi { width: 12px; height: 12px; }
.xf-arrow { display: grid; place-items: center; align-self: center; color: var(--accent); padding: 2px 0; }
.xf-arrow .bi { width: 26px; height: 26px; transform: rotate(90deg); }

.xf-payoff { margin-top: 16px; text-align: center; border-radius: var(--radius-lg); border: 1px solid var(--border-accent); background: color-mix(in srgb, var(--gold) 7%, var(--surface)); padding: 20px 22px; }
.xf-payoff-main { font-family: var(--font-display); font-size: clamp(1.05rem, .9rem + .8vw, 1.4rem); font-weight: 500; letter-spacing: -0.01em; color: var(--text); line-height: 1.35; }
.xf-payoff-main b { color: var(--gold-ink); font-weight: 700; }
.xf-payoff-by { margin-top: 10px; font-size: 12.5px; color: var(--text-3); }

/* -------------------------------------------------------------------------
   14c · ROI / COST CALCULATOR
   ------------------------------------------------------------------------- */
.roi { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 44px; max-width: 940px; margin-inline: auto; }
.roi-inputs { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 22px; }
.roi-field { display: grid; gap: 12px; }
.roi-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--text-2); font-weight: 500; }
.roi-out { font-family: var(--font-mono); font-size: 15px; font-weight: 600; color: var(--accent-ink); background: var(--accent-soft); padding: 3px 11px; border-radius: 8px; font-variant-numeric: tabular-nums; }
.roi-range { -webkit-appearance: none; appearance: none; width: 100%; height: 9px; border-radius: 999px; background: var(--surface-3); outline: none; cursor: pointer; }
.roi-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); border: 3px solid var(--surface); box-shadow: 0 2px 8px -2px rgba(0,175,240,.8); cursor: pointer; }
.roi-range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); border: 3px solid var(--surface); box-shadow: 0 2px 8px -2px rgba(0,175,240,.8); cursor: pointer; }
.roi-range:focus-visible { box-shadow: 0 0 0 3px var(--accent-soft-2); }
.roi-assume { font-size: 12px; color: var(--text-3); line-height: 1.5; margin: 0; }
.roi-result { position: relative; overflow: hidden; background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 12%, var(--surface)), var(--surface) 70%); border: 1px solid var(--border-accent); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.roi-result-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--text-3); }
.roi-result-v { font-family: var(--font-display); font-size: clamp(40px, 11vw, 58px); font-weight: 600; letter-spacing: -0.03em; color: var(--bad-ink); line-height: 1; margin-top: 8px; font-variant-numeric: tabular-nums; }
.roi-result-v .roi-per { font-family: var(--font); font-size: 17px; font-weight: 500; color: var(--text-3); letter-spacing: 0; }
.roi-result-sub { font-size: 13.5px; color: var(--text-2); margin-top: 12px; max-width: 34ch; line-height: 1.5; }
.roi-vs { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.roi-vs-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14.5px; color: var(--text-2); }
.roi-vs-row b { font-family: var(--font-display); font-size: 18px; color: var(--text); font-weight: 600; }
.roi-protect { margin-top: 8px; font-size: 13px; color: var(--ok-ink); font-weight: 600; }
.roi-result .btn { margin-top: 22px; width: 100%; justify-content: center; }

/* -------------------------------------------------------------------------
   14d · Conversion helpers (inline CTA, reassurance note, perks, trust row)
   ------------------------------------------------------------------------- */
.cta-inline { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 22px 24px; border: 1px solid var(--border-accent); border-radius: var(--radius-lg); background: color-mix(in srgb, var(--accent) 5%, var(--surface)); }
.cta-inline-text { font-family: var(--font-display); font-size: clamp(1.05rem, .95rem + .6vw, 1.35rem); font-weight: 600; letter-spacing: -0.015em; color: var(--text); }
.cta-inline-note { font-size: 12.5px; color: var(--text-3); flex-basis: 100%; }
.cta-note { font-size: 12.5px; color: var(--text-3); margin: 12px auto 0; text-align: center; }
.ea-perks { list-style: none; margin: 18px auto 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: center; }
.ea-perks li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-2); }
.ea-perks li .bi { width: 16px; height: 16px; color: var(--accent-ink); flex: none; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; margin-top: 28px; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-2); }
.trust-row span .bi { width: 16px; height: 16px; color: var(--ok-ink); flex: none; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (min-width: 760px) {
  .xf { grid-template-columns: 1fr auto 1fr; }
  .xf-arrow .bi { transform: none; }
  .roi { grid-template-columns: 1fr 1fr; align-items: stretch; }
}

/* -------------------------------------------------------------------------
   15 · PRICING
   ------------------------------------------------------------------------- */
.price-toggle-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13.5px; color: var(--text-2); flex-wrap: wrap; justify-content: center; }
.prices { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 44px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.pop { border-color: var(--accent); box-shadow: 0 18px 50px -22px rgba(0,175,240,.5); }
.plan.pop::before { content: "Most popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; background: var(--gold); color: #2a2003; padding: 5px 13px; border-radius: 999px; box-shadow: 0 6px 16px -6px rgba(200,154,46,.7); white-space: nowrap; }
.plan .p-name { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); font-weight: 600; }
.plan .p-price { display: flex; align-items: baseline; gap: 4px; margin-top: 14px; }
.plan .p-price .amt { font-family: var(--font-display); font-size: clamp(40px, 11vw, 50px); font-weight: 600; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.plan .p-price .per { color: var(--text-3); font-size: 15px; }
.plan .p-seats { color: var(--text-2); font-size: 14.5px; margin-top: 12px; }
.plan .p-seats b { color: var(--text); }
.plan .btn { width: 100%; justify-content: center; margin-top: 20px; }
.plan .p-feats { margin: 22px 0 0; padding: 22px 0 0; border-top: 1px solid var(--border); list-style: none; display: grid; gap: 12px; }
.plan .p-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); }
.plan .p-feats li .bi { width: 17px; height: 17px; color: var(--accent-ink); flex: none; margin-top: 2px; }
.plan .p-feats li.muted { color: var(--text-3); }
.plan .p-feats li.muted .bi { color: var(--text-muted); }
.price-foot { text-align: center; margin-top: 28px; color: var(--text-3); font-size: 14px; }
.price-foot b { color: var(--text-2); }

/* -------------------------------------------------------------------------
   16 · FAQ
   ------------------------------------------------------------------------- */
.faq { max-width: 800px; margin: 40px auto 0; display: grid; gap: 12px; }
.qa { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--t) var(--ease); }
.qa.open { border-color: var(--border-accent); }
.qa button.q { width: 100%; text-align: left; cursor: pointer; background: none; border: none; display: flex; align-items: center; gap: 14px; padding: 17px 18px; font-family: var(--font); font-size: 16px; font-weight: 600; color: var(--text); min-height: 56px; }
.qa button.q .pm { margin-left: auto; flex: none; color: var(--text-3); transition: transform var(--t) var(--ease); }
.qa button.q .pm .bi { width: 20px; height: 20px; }
.qa.open button.q .pm { transform: rotate(45deg); color: var(--accent-ink); }
.qa .a { max-height: 0; overflow: hidden; transition: max-height var(--t-slow) var(--ease); }
.qa .a-in { padding: 0 18px 18px; color: var(--text-2); font-size: 14.5px; line-height: 1.6; }

/* -------------------------------------------------------------------------
   17 · CTA BAND
   ------------------------------------------------------------------------- */
.cta-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 16%, var(--surface)) 0%, var(--surface) 62%); border: 1px solid var(--border-accent); padding: clamp(32px, 7vw, 68px) clamp(22px, 5vw, 56px); text-align: center; box-shadow: var(--shadow-lg); }
.cta-card::before { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--accent-glow); filter: blur(70px); opacity: .12; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; }
.cta-card p { color: var(--text-2); font-size: var(--fs-sub); margin: 14px auto 0; max-width: 520px; }
.cta-card .hero-cta { justify-content: center; }

/* -------------------------------------------------------------------------
   18 · FOOTER
   ------------------------------------------------------------------------- */
.lp-foot { border-top: 1px solid var(--border); background: color-mix(in srgb, var(--surface) 50%, transparent); }
.lp-foot .wrap { padding-block: 48px 28px; }
.foot-top { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.foot-brand { grid-column: 1 / -1; }
.foot-brand p { color: var(--text-3); font-size: 14px; margin: 14px 0 0; max-width: 300px; line-height: 1.55; }
.foot-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.foot-col a { display: block; color: var(--text-2); font-size: 14.5px; padding: 6px 0; text-decoration: none; }
.foot-col a:hover { color: var(--accent-ink); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--text-3); font-size: 13px; flex-wrap: wrap; }
.foot-bottom .legal { color: var(--text-3); font-size: 11px; max-width: 640px; line-height: 1.5; }

/* -------------------------------------------------------------------------
   19 · STICKY MOBILE CTA
   ------------------------------------------------------------------------- */
.mobile-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: var(--z-drawer); display: flex; gap: 10px; padding: 10px; border-radius: 16px; background: var(--topbar-bg); -webkit-backdrop-filter: saturate(180%) blur(16px); backdrop-filter: saturate(180%) blur(16px); border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg); transform: translateY(140%); opacity: 0; transition: transform var(--t-slow) var(--ease-out), opacity var(--t) var(--ease); padding-bottom: max(10px, env(safe-area-inset-bottom)); }
.mobile-cta.show { transform: none; opacity: 1; }
.mobile-cta .btn { flex: 1; justify-content: center; }
.mobile-cta .btn-line { flex: 0 0 auto; }

/* -------------------------------------------------------------------------
   20 · LEAD MODAL
   ------------------------------------------------------------------------- */
.lead-overlay { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; place-items: end center; padding: 0; background: var(--scrim); opacity: 0; visibility: hidden; transition: opacity var(--t) var(--ease), visibility var(--t); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); overscroll-behavior: contain; }
.lead-overlay.open { opacity: 1; visibility: visible; }
.lead-modal { width: 100%; max-width: 480px; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 20px 20px 0 0; box-shadow: var(--shadow-lg); padding: 22px 20px calc(22px + env(safe-area-inset-bottom)); transform: translateY(100%); opacity: 1; transition: transform var(--t-slow) var(--ease-out); max-height: 92dvh; overflow-y: auto; }
.lead-overlay.open .lead-modal { transform: none; }
.lead-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.lead-head h3 { font-family: var(--font-display); font-size: 23px; font-weight: 600; letter-spacing: -0.02em; }
.lead-head p { color: var(--text-2); font-size: 14px; margin: 7px 0 0; }
.lead-x { width: 40px; height: 40px; border-radius: 10px; flex: none; display: grid; place-items: center; cursor: pointer; background: transparent; border: 1px solid var(--border); color: var(--text-2); font-size: 20px; line-height: 1; }
.lead-x:hover { background: var(--surface-2); color: var(--text); }
.lead-form { margin-top: 20px; display: grid; gap: 13px; }
.lead-form .row2 { display: grid; grid-template-columns: 1fr; gap: 13px; }
.lead-field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; }
.lead-field label .req { color: var(--bad-ink); }
.lead-form .input, .lead-form select.input, .lead-form textarea.input { width: 100%; min-height: 46px; }
.lead-form textarea.input { resize: vertical; min-height: 74px; font-family: var(--font); }
.lead-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.lead-err { color: var(--bad-ink); font-size: 13px; background: var(--bad-soft); border: 1px solid color-mix(in srgb, var(--bad) 30%, transparent); border-radius: 9px; padding: 9px 12px; display: none; }
.lead-err.show { display: block; }
.lead-fine { font-size: 11.5px; color: var(--text-3); text-align: center; margin-top: 2px; }
.lead-success { text-align: center; padding: 14px 6px 6px; }
.lead-success .ok-badge { width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: var(--ok-soft); color: var(--ok-ink); }
.lead-success .ok-badge .bi { width: 30px; height: 30px; }
.lead-success h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.lead-success p { color: var(--text-2); font-size: 15px; margin: 10px auto 0; max-width: 330px; }

/* -------------------------------------------------------------------------
   21 · SCROLL REVEAL
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; } .reveal.d2 { transition-delay: .12s; } .reveal.d3 { transition-delay: .18s; } .reveal.d4 { transition-delay: .24s; } .reveal.d5 { transition-delay: .30s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-a { animation: floaty 6s var(--ease) infinite; }
.float-b { animation: floaty 7.5s var(--ease) infinite; animation-delay: -2s; }

/* =========================================================================
   RESPONSIVE ENHANCEMENTS (min-width — mobile-first)
   ========================================================================= */
@media (min-width: 600px) {
  :root { --lp-gut: 24px; }
  .lp-band .wrap { grid-template-columns: repeat(4, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .allgrid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .vs { grid-template-columns: 1fr 1fr; }
  .lead-form .row2 { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .foot-brand { grid-column: auto; }
  /* desktop: centered modal card instead of a bottom sheet */
  .lead-overlay { place-items: center; padding: 20px; }
  .lead-modal { border-radius: var(--radius-lg); padding: 26px; transform: translateY(14px) scale(.98); max-height: calc(100vh - 40px); }
}

@media (min-width: 880px) {
  .lp-hero { padding: 150px 0 var(--lp-sec-sm); }
  .lp-hero-inner { grid-template-columns: 1.05fr .95fr; gap: 52px; text-align: left; }
  .hero-pill { margin: 0; }
  .lp h1.hero-h { margin-left: 0; max-width: none; }
  .lp .hero-sub { margin-left: 0; }
  .hero-cta { justify-content: flex-start; margin-left: 0; }
  .hero-cta .btn { flex: 0 0 auto; }
  .hero-trust { margin-left: 0; }
  .hero-visual { margin: 0; max-width: none; }
  .mock-float.f1 { left: -30px; } .mock-float.f2 { right: -26px; }
  .prices { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .spot { grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); }
  .spot.rev .spot-text { order: 2; }
  .lp .brk { display: inline; }
  .lp-nav nav.nav-links { display: flex; }
  .lp-nav .nav-right .btn-line, .lp-nav .nav-right .btn-cta { display: inline-flex; }
  .lp-burger, .mobile-cta { display: none !important; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .tile.col-3 { grid-column: span 3; } .tile.col-2 { grid-column: span 2; } .tile.col-6 { grid-column: span 6; }
  .allgrid { grid-template-columns: repeat(3, 1fr); }
}

/* hide floating chips on small phones — they crowd the hero */
@media (max-width: 599px) {
  .mock-float { display: none; }
}

/* small-phone tightening */
@media (max-width: 360px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { max-width: none; width: 100%; }
  .mock-stats { gap: 7px; }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .float-a, .float-b, .lp-hero .aurora, .marquee-track, .mock-bar .ws .dot, .reveal.in .mock-chart .bar { animation: none !important; }
  .reveal.in .mock-chart .bar { transform: none !important; }
  .lp .btn-cta::after { display: none; }
  .lp .btn-cta:hover, .lp .btn-line:hover, .lp .btn-soft:hover, .tile:hover, .step:hover, .plan:hover, .cap:hover, .vs-col.good { transform: none; }
}
