/* =============================================================
   QALLORA TRENDS — LIGHT theme (warm ivory + indigo)
   Mirrors the brand's own collateral: light ivory page, dark
   navy product panels as "islands", indigo/violet accents.
   030 system: Sora display · Manrope sans · JetBrains Mono.
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: var(--lh-body);
  color: var(--fg-2);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}
/* Bright near-white page wash with a subtle cool + indigo gradient */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 680px at 82% -6%, rgba(83,87,255,0.07), transparent 58%),
    radial-gradient(900px 600px at 0% 8%, rgba(132,129,239,0.05), transparent 55%),
    linear-gradient(168deg, #FCFDFF 0%, #F3F5FC 50%, #E9ECF8 100%);
}
::selection { background: var(--color-violet); color: #fff; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 { font-family: var(--font-display); color: var(--fg-1); letter-spacing: var(--tr-tight-display); line-height: var(--lh-tight); font-weight: 700; }
.wrap { max-width: var(--max-content); margin: 0 auto; padding: 0 32px; }
.section { padding: clamp(80px, 10vw, 128px) 0; position: relative; }
.divide { border-top: 1px solid var(--line-faint); }
.band { background: var(--bg-ivory-2); }

/* ---- Eyebrow ---- */
.eyebrow {
  font-family: var(--font-sans); font-weight: 800; font-size: 11px;
  letter-spacing: var(--tr-eyebrow); text-transform: uppercase;
  color: var(--indigo-on-light);
  display: inline-flex; align-items: center; gap: 9px;
}
/* Decorative dash before eyebrow labels removed on request (read as an em dash). */
.eyebrow.line::before { display: none; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; }

/* ---- Section head ---- */
.s-head { max-width: 760px; }
.s-head.center { margin: 0 auto; text-align: center; }
.s-head .eyebrow { margin-bottom: 22px; }
.s-head h2 { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04; letter-spacing: -0.03em; }
.s-head .lede { margin-top: 22px; font-size: clamp(16px, 1.4vw, 19px); color: var(--fg-2); line-height: 1.6; max-width: 60ch; }
.s-head.center .lede { margin-left: auto; margin-right: auto; }
.gradient-fill { background: linear-gradient(96deg, var(--color-indigo) 6%, var(--color-violet) 60%, #A9A1E2 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  padding: 14px 22px; border-radius: var(--radius-md); border: 0; cursor: pointer;
  white-space: nowrap; line-height: 1; text-decoration: none;
  transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.btn svg { width: 16px; height: 16px; }
.btn .arr { transition: transform var(--dur-base) var(--ease-out); display: inline-block; }
.btn:hover .arr { transform: translateX(3px); }
.btn.primary { background: var(--color-indigo); color: #fff; box-shadow: 0 8px 22px -8px rgba(83,87,255,0.6); }
.btn.primary:hover { background: var(--color-indigo-hover); box-shadow: 0 12px 28px -8px rgba(83,87,255,0.7); }
.btn.primary:active { background: var(--color-indigo-press); box-shadow: none; }
.btn.secondary { background: var(--surface); color: var(--ink-1); border: 1px solid var(--line-2); }
.btn.secondary:hover { border-color: var(--ink-1); }
.btn.ghost { background: transparent; color: var(--indigo-on-light); border: 1px solid rgba(79,69,214,0.32); }
.btn.ghost:hover { border-color: var(--indigo-on-light); background: rgba(79,69,214,0.06); }
.btn.sm { padding: 10px 16px; font-size: 13px; }
/* on dark islands */
.btn.on-dark { background: rgba(255,255,255,0.10); color: #fff; border: 1px solid rgba(255,255,255,0.22); }
.btn.on-dark:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.34); }

/* ---- Chips / badges ---- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-weight: 600; font-size: 12px;
  color: var(--violet-on-light); padding: 5px 12px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--line);
}
.chip svg { width: 13px; height: 13px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.ok   { color: #1C9C7C; box-shadow: inset 0 0 0 1px rgba(28,156,124,0.34); }
.badge.warn { color: #B27D1E; box-shadow: inset 0 0 0 1px rgba(178,125,30,0.34); }
.badge.hot  { color: #CC4A60; box-shadow: inset 0 0 0 1px rgba(204,74,96,0.34); }
.badge.indigo { color: var(--indigo-on-light); box-shadow: inset 0 0 0 1px rgba(79,69,214,0.34); }
.badge.info { color: #2E6FCC; box-shadow: inset 0 0 0 1px rgba(46,111,204,0.34); }
/* badges sitting on dark islands */
.is-dark .badge.ok   { color: var(--color-success); }
.is-dark .badge.warn { color: var(--color-warning); }
.is-dark .badge.hot  { color: var(--color-danger); }
.is-dark .badge.indigo { color: var(--color-lavender); box-shadow: inset 0 0 0 1px rgba(184,174,221,0.4); }
.is-dark .badge.info { color: #7FA8E8; }

.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-success); box-shadow: 0 0 0 0 rgba(46,196,161,0.6); animation: pulse 1.8s var(--ease-out) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(46,196,161,0.5);} 70% { box-shadow: 0 0 0 10px rgba(46,196,161,0);} 100% { box-shadow: 0 0 0 0 rgba(46,196,161,0);} }

/* =============================================================
   NAV
   ============================================================= */
.nav-wrap { position: fixed; top: 16px; left: 0; right: 0; z-index: 60; display: flex; justify-content: center; padding: 0 20px; transition: top var(--dur-base) var(--ease-out); }
.nav-wrap.tight { top: 8px; }
.nav {
  width: 100%; max-width: var(--max-content);
  display: flex; align-items: center; gap: 16px;
  padding: 10px 12px 10px 18px;
  background: rgba(250,251,255,0.78);
  backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1px var(--line), 0 2px 10px rgba(20,19,46,0.04);
  transition: box-shadow var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.nav-wrap.tight .nav { box-shadow: inset 0 0 0 1px var(--line-2), 0 12px 30px -10px rgba(20,19,46,0.22); background: rgba(252,253,255,0.9); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink-1); }
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand .tm { font-family: var(--font-mono); font-size: 9px; font-weight: 500; letter-spacing: 0.12em; color: var(--indigo-on-light); align-self: flex-start; margin-top: 2px; }
.nav .links { display: flex; gap: 2px; margin: 0 auto; padding: 4px; background: rgba(20,19,46,0.04); border-radius: var(--radius-pill); }
.nav .links a { font-family: var(--font-sans); font-weight: 600; font-size: 13px; color: var(--ink-2); padding: 8px 15px; border-radius: var(--radius-pill); transition: color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out); white-space: nowrap; }
.nav .links a:hover { color: var(--ink-1); }
.nav .links a.active { color: var(--indigo-on-light); background: var(--surface); box-shadow: 0 1px 4px rgba(20,19,46,0.08); }
.nav .nav-cta { display: inline-flex; gap: 8px; align-items: center; }
@media (max-width: 1099px) { .nav .links { display: none; } .nav .nav-cta .secondary { display: none; } }

/* =============================================================
   HERO
   ============================================================= */
.hero { position: relative; padding: 164px 0 86px; overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; right: -10%; top: -120px; width: 920px; height: 720px; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 70% 30%, rgba(132,129,239,0.30), rgba(132,129,239,0.05) 55%, transparent 72%); }
/* Direct children only: the decorative shapes are <div class="ghost g1/g2">
   right under .hero. Without the ">", this also hit the "Create account"
   <a class="btn ghost"> in the hero CTAs — making it position:absolute (overlap)
   AND pointer-events:none (unclickable). */
.hero > .ghost { position: absolute; border: 1px solid rgba(20,19,46,0.07); pointer-events: none; z-index: 0; }
.hero > .ghost.g1 { width: 300px; height: 112px; top: 130px; right: -50px; transform: rotate(12deg);
  clip-path: path("M 34 0 L 266 0 Q 300 0 300 34 L 300 78 Q 300 112 266 112 L 34 112 Q 0 112 0 78 L 0 34 Q 0 0 34 0 Z"); }
.hero > .ghost.g2 { width: 220px; height: 84px; bottom: 70px; left: -30px; transform: rotate(-8deg);
  clip-path: path("M 26 0 L 194 0 Q 220 0 220 26 L 220 58 Q 220 84 194 84 L 26 84 Q 0 84 0 58 L 0 26 Q 0 0 26 0 Z"); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
@media (max-width: 1099px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  padding: 7px 14px 7px 8px; border-radius: var(--radius-pill);
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line), 0 1px 3px rgba(20,19,46,0.05);
  font-family: var(--font-sans); font-weight: 800; font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--indigo-on-light); white-space: nowrap;
}
.hero h1 { font-size: clamp(42px, 6vw, 80px); line-height: 0.99; letter-spacing: -0.03em; color: var(--ink-1); overflow-wrap: anywhere; }
.hero .sub { margin-top: 28px; max-width: 50ch; font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-2); line-height: 1.6; }
.hero .ctas { margin-top: 36px; display: inline-flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero .live-strip { margin-top: 34px; display: inline-flex; align-items: center; gap: 18px; padding: 11px 20px; border-radius: var(--radius-pill); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); flex-wrap: wrap; }
.hero .live-strip .acc { color: var(--violet-on-light); }
.hero .live-strip .div { width: 1px; height: 13px; background: var(--line-2); }

/* hero feature row (matches brand collateral) */
.hero-feats { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; max-width: 540px; }
.hf { display: flex; align-items: flex-start; gap: 12px; }
.hf .ic { width: 38px; height: 38px; flex: none; border-radius: var(--radius-md); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line), 0 2px 6px rgba(20,19,46,0.05); color: var(--indigo-on-light); display: flex; align-items: center; justify-content: center; }
.hf .ic svg { width: 19px; height: 19px; }
.hf .ht { font-family: var(--font-sans); font-weight: 700; font-size: 14.5px; color: var(--ink-1); letter-spacing: -0.01em; }
.hf .hd { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; line-height: 1.45; }

/* =============================================================
   BROWSER FRAME (dark product chrome — an island on light)
   ============================================================= */
.browser {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-obsidian);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -24px rgba(20,19,46,0.45), 0 12px 28px -16px rgba(20,19,46,0.3);
}
.browser::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gradient-mark); z-index: 3; }
.browser .bar { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-bottom: 1px solid var(--hairline-faint); background: rgba(255,255,255,0.02); position: relative; z-index: 2; }
.browser .bar .dots { display: flex; gap: 6px; flex: none; }
.browser .bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--color-navy-soft); }
.browser .bar .url { flex: 1; display: flex; align-items: center; gap: 8px; justify-content: center; font-family: var(--font-mono); font-size: 11.5px; color: var(--on-dark-48); padding: 6px 14px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.05); max-width: 320px; margin: 0 auto; }
.browser .bar .url svg { width: 12px; height: 12px; color: var(--color-success); }
.browser .bar .live { flex: none; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-success); display: inline-flex; align-items: center; gap: 6px; }
.browser .screen { position: relative; display: block; background: var(--color-midnight); }
.browser .screen img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* hero product shot (tilted dashboard render — no browser chrome) */
.hero-media { position: relative; z-index: 1; }
.hero-shot { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-obsidian); box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 40px 80px -30px rgba(20,19,46,0.5), 0 16px 36px -18px rgba(20,19,46,0.32); }
.hero-shot::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-mark); z-index: 3; }
.hero-shot img { display: block; width: 100%; height: auto; }
.hero-media .vcap { position: absolute; left: 14px; bottom: 14px; z-index: 4; display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: var(--radius-pill); background: rgba(11,11,20,0.62); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: inset 0 0 0 1px var(--hairline-dim); font-family: var(--font-mono); font-size: 11px; color: var(--on-dark-72); pointer-events: none; }
.hero-media .vcap .pulse-dot { width: 7px; height: 7px; }
.hero-media .float { position: absolute; z-index: 5; right: -18px; bottom: 64px; background: var(--surface); border-radius: var(--radius-md); padding: 13px 16px; box-shadow: 0 16px 36px -14px rgba(20,19,46,0.4), inset 0 0 0 1px var(--line); }
.hero-media .float .fk { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.hero-media .float .fv { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; color: var(--ink-1); margin-top: 2px; }
.hero-media .float .fv .u { color: var(--violet-on-light); }
@media (max-width: 1000px) { .hero-media .float { right: 12px; } }
@media (max-width: 520px) { .hero-media .float { display: none; } }

/* =============================================================
   TRUST
   ============================================================= */
.trust { padding: 8px 0 4px; }
.trust .lab { text-align: center; font-family: var(--font-sans); font-weight: 800; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 26px; }
.trust .logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 52px; }
.trust .logo { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.02em; color: var(--ink-4); transition: color var(--dur-base) var(--ease-out); }
.trust .logo:hover { color: var(--ink-1); }

/* =============================================================
   OPPORTUNITY TERMINAL (dark island)
   ============================================================= */
.terminal {
  background: var(--color-navy-deep); border-radius: var(--radius-xl);
  box-shadow: 0 40px 80px -32px rgba(20,19,46,0.5), 0 16px 36px -20px rgba(20,19,46,0.34), inset 0 0 0 1px var(--hairline-dim);
  overflow: hidden; position: relative;
}
.terminal::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gradient-mark); z-index: 3; }
.term-bar { display: flex; align-items: center; gap: 12px; padding: 14px 22px; border-bottom: 1px solid var(--hairline-faint); background: rgba(255,255,255,0.015); }
.term-bar .tdot { display: flex; gap: 6px; }
.term-bar .tdot i { width: 9px; height: 9px; border-radius: 50%; background: var(--color-navy-soft); }
.term-bar .tname { font-family: var(--font-mono); font-size: 12px; color: var(--on-dark-72); letter-spacing: 0.02em; }
.term-bar .tname b { color: #fff; font-weight: 500; }
.term-bar .tclock { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--on-dark-48); display: inline-flex; align-items: center; gap: 8px; }

.term-body { display: grid; grid-template-columns: 320px 1fr; min-height: 540px; }
@media (max-width: 920px) { .term-body { grid-template-columns: 1fr; } }
.term-rail { border-right: 1px solid var(--hairline-faint); display: flex; flex-direction: column; }
@media (max-width: 920px) { .term-rail { border-right: none; border-bottom: 1px solid var(--hairline-faint); } }
.term-rail .rail-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--hairline-faint); }
.term-rail .rail-head .lab { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-48); }
.tick { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 20px; cursor: pointer; position: relative; border-bottom: 1px solid var(--hairline-faint); transition: background var(--dur-base) var(--ease-out); }
.tick:hover { background: rgba(255,255,255,0.03); }
.tick.active { background: rgba(83,87,255,0.12); }
.tick.active::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--gradient-mark-vertical); }
.tick .t-left { min-width: 0; }
.tick .t-right { text-align: right; flex: none; }
.tick .t-nm { font-size: 14px; font-weight: 600; color: #fff; }
.tick .t-meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--on-dark-48); letter-spacing: 0.02em; margin-top: 3px; }
.tick .t-score { font-family: var(--font-mono); font-weight: 600; font-size: 20px; color: #fff; line-height: 1; }
.tick .t-delta { font-family: var(--font-mono); font-size: 11px; font-weight: 600; margin-top: 3px; }
.tick .t-delta.up { color: var(--color-success); }
.tick .t-delta.flat { color: var(--color-warning); }

.term-main { padding: clamp(24px, 3vw, 38px); position: relative; }
.tm-inner { transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out); }
.tm-inner.fading { opacity: 0; transform: translateY(8px); }
.tm-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.tm-head .badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tm-head h3 { font-size: clamp(26px, 3vw, 40px); letter-spacing: -0.03em; line-height: 1.02; color: #fff; }
.tm-head .why { margin-top: 14px; max-width: 44ch; color: var(--on-dark-72); font-size: 15.5px; line-height: 1.6; }
.tm-score { flex: none; text-align: right; }
.tm-score .lab { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-48); margin-bottom: 4px; }
.tm-score .val { font-family: var(--font-display); font-weight: 700; font-size: clamp(56px, 7vw, 88px); line-height: 0.9; letter-spacing: -0.03em; color: #fff; }
.tm-score .val .u { color: var(--color-violet); font-size: 0.34em; margin-left: 4px; }
.tm-score .scale { font-family: var(--font-mono); font-size: 11px; color: var(--on-dark-48); margin-top: 4px; }
.tm-signal { margin: 28px 0 6px; }
.tm-signal .sg-lab { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-48); margin-bottom: 12px; }
.tm-signal .bars { display: flex; align-items: flex-end; gap: 5px; height: 70px; }
.tm-signal .bars i { flex: 1; background: var(--color-navy-soft); border-radius: 2px 2px 0 0; transition: height var(--dur-slow) var(--ease-out); }
.tm-signal .bars i.on { background: var(--gradient-mark-vertical); }
.tm-spec { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline-faint); box-shadow: inset 0 0 0 1px var(--hairline-faint); border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 560px) { .tm-spec { grid-template-columns: 1fr 1fr; } }
.tm-spec .f { background: var(--color-navy-deep); padding: 16px 18px; }
.tm-spec .f .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--on-dark-48); margin-bottom: 9px; }
.tm-spec .f .v { font-size: 14.5px; font-weight: 600; color: #fff; }
.tm-spec .f .v.chips { display: flex; flex-wrap: wrap; gap: 5px; }
.tm-spec .f .v .mini { font-family: var(--font-sans); font-size: 12px; font-weight: 600; padding: 3px 9px; border-radius: var(--radius-pill); color: var(--color-lavender); box-shadow: inset 0 0 0 1px rgba(184,174,221,0.3); }
.tm-foot { margin-top: 24px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--hairline-faint); }
.tm-foot .status { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: #fff; }
.tm-foot .spacer { margin-left: auto; }

/* =============================================================
   HOW IT WORKS — pipeline (light cards)
   ============================================================= */
.pipe { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .pipe { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .pipe { grid-template-columns: 1fr; } }
.step {
  position: relative; background: var(--surface); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: inset 0 0 0 1px var(--line), 0 1px 2px rgba(20,19,46,0.04); overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-mark); opacity: 0; transition: opacity var(--dur-base) var(--ease-out); }
.step:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--line), 0 16px 34px -16px rgba(20,19,46,0.22); }
.step:hover::before { opacity: 1; }
.step .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.step .ic { width: 42px; height: 42px; border-radius: var(--radius-md); background: rgba(79,69,214,0.10); color: var(--indigo-on-light); display: flex; align-items: center; justify-content: center; }
.step .ic svg { width: 21px; height: 21px; }
.step .n { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.step h4 { font-size: 19px; letter-spacing: -0.01em; margin-bottom: 8px; line-height: 1.2; }
.step p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.step.terminal-step { background: var(--color-navy-deep); box-shadow: 0 20px 40px -18px rgba(20,19,46,0.4), inset 0 0 0 1px var(--hairline-dim); }
.step.terminal-step::before { opacity: 1; }
.step.terminal-step h4 { color: #fff; }
.step.terminal-step p { color: var(--on-dark-72); }
.step.terminal-step .n { color: var(--color-lavender); }
.step.terminal-step .ic { background: var(--color-indigo); color: #fff; }

/* =============================================================
   INSIDE THE PLATFORM — product showcase (editorial stack)
   ============================================================= */
.pstack { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 52px); }
.pshow { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(24px, 4vw, 52px); align-items: center; }
.pshow.flip .pshow-media { order: 2; }
@media (max-width: 920px) { .pshow, .pshow.flip { grid-template-columns: 1fr; gap: 22px; } .pshow.flip .pshow-media { order: 0; } }

/* media frames */
.pshow-media { position: relative; }
.pframe { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-obsidian); box-shadow: 0 30px 64px -28px rgba(20,19,46,0.46), 0 12px 28px -16px rgba(20,19,46,0.3), inset 0 0 0 1px var(--hairline-dim); }
.pframe::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-mark); z-index: 4; }
.pframe .bar { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-bottom: 1px solid var(--hairline-faint); background: rgba(255,255,255,0.02); position: relative; z-index: 2; }
.pframe .bar .dots { display: flex; gap: 6px; flex: none; }
.pframe .bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--color-navy-soft); }
.pframe .bar .url { flex: 1; display: flex; align-items: center; gap: 8px; justify-content: center; font-family: var(--font-mono); font-size: 11.5px; color: var(--on-dark-48); padding: 6px 14px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.05); max-width: 300px; margin: 0 auto; }
.pframe .bar .url svg { width: 12px; height: 12px; color: var(--color-success); }
.pframe .bar .live { flex: none; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-success); display: inline-flex; align-items: center; gap: 6px; }
.pframe .screen { position: relative; display: block; background: var(--color-midnight); }
.pframe .screen img { display: block; width: 100%; height: auto; }
.pframe.video .screen { aspect-ratio: 16 / 10; }
.pframe.video .screen .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.pframe.video .screen video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; opacity: 0; transition: opacity 0.5s var(--ease-out); }
.pframe.video .screen.playing video { opacity: 1; }

/* infographic frame (no browser chrome) */
.pinfo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 64px -28px rgba(20,19,46,0.4), inset 0 0 0 1px var(--line); }
.pinfo img { display: block; width: 100%; height: auto; }

/* caption column */
.pcap .ic { width: 44px; height: 44px; border-radius: var(--radius-md); background: rgba(79,69,214,0.10); color: var(--indigo-on-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.pcap .ic svg { width: 22px; height: 22px; }
.pcap .pk { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet-on-light); margin-bottom: 10px; }
.pcap h3 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; line-height: 1.1; color: var(--ink-1); }
.pcap p { font-size: 15px; color: var(--ink-2); margin-top: 14px; line-height: 1.6; max-width: 42ch; }
.pcap .plist { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.pcap .plist li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
.pcap .plist li svg { width: 16px; height: 16px; color: var(--indigo-on-light); flex: none; }

/* =============================================================
   FREE FIRST REPORT — lead magnet band (dark island)
   ============================================================= */
.freebie { position: relative; border-radius: var(--radius-ticket); overflow: hidden; background: var(--color-navy-deep); box-shadow: 0 40px 80px -34px rgba(20,19,46,0.5), inset 0 0 0 1px var(--hairline-dim); display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px,4vw,56px); align-items: center; padding: clamp(36px,5vw,64px); }
.freebie::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-mark); }
.freebie::after { content: ""; position: absolute; right: -100px; top: -120px; width: 460px; height: 420px; background: radial-gradient(ellipse at center, rgba(83,87,255,0.30), transparent 64%); pointer-events: none; }
@media (max-width: 860px) { .freebie { grid-template-columns: 1fr; } }
.freebie > * { position: relative; z-index: 1; }
.freebie .fb-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-sans); font-weight: 800; font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--color-lavender); margin-bottom: 18px; }
.freebie .fb-eyebrow .pulse-dot { width: 7px; height: 7px; }
.freebie h2 { font-size: clamp(30px,3.6vw,48px); letter-spacing: -0.03em; line-height: 1.04; color: #fff; }
.freebie h2 .u { color: var(--color-violet); }
.freebie .fb-sub { margin-top: 18px; color: var(--on-dark-72); font-size: clamp(15px,1.4vw,17px); line-height: 1.6; max-width: 52ch; }
.freebie .fb-list { list-style: none; margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.freebie .fb-list li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--on-dark-100); }
.freebie .fb-list li svg { width: 16px; height: 16px; color: var(--color-lavender); flex: none; }
/* form card */
.fb-card { background: rgba(255,255,255,0.04); border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px var(--hairline-dim); padding: clamp(22px,2.6vw,30px); }
.fb-card .fc-lab { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-lavender); margin-bottom: 16px; }
.fb-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.fb-field label { font-size: 12px; font-weight: 600; color: var(--on-dark-72); }
.fb-field input { font-family: var(--font-sans); font-size: 14px; color: #fff; background: rgba(11,11,20,0.55); border: 0; box-shadow: inset 0 0 0 1px var(--hairline-dim); border-radius: var(--radius-md); padding: 13px 15px; transition: box-shadow var(--dur-base) var(--ease-out); width: 100%; }
.hp-input { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.fb-field input::placeholder { color: var(--on-dark-48); }
.fb-field input:focus { outline: none; box-shadow: var(--shadow-glow); }
.fb-field input[aria-invalid="true"] { box-shadow: inset 0 0 0 1px rgba(224,90,111,0.74), 0 0 0 3px rgba(224,90,111,0.14); }
.fb-field select { font-family: var(--font-sans); font-size: 14px; color: #fff; background-color: rgba(11,11,20,0.55); border: 0; box-shadow: inset 0 0 0 1px var(--hairline-dim); border-radius: var(--radius-md); padding: 13px 40px 13px 15px; width: 100%; appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.fb-field select:focus { outline: none; box-shadow: var(--shadow-glow); }
.fb-field select option, .fb-field select optgroup { color: #14132E; background: #fff; }
.fb-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.fb-chip { font-family: var(--font-sans); font-size: 13px; color: var(--on-dark-72); background: rgba(11,11,20,0.55); border: 0; box-shadow: inset 0 0 0 1px var(--hairline-dim); border-radius: 999px; padding: 8px 14px; cursor: pointer; transition: box-shadow var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out); }
.fb-chip:hover { color: #fff; box-shadow: inset 0 0 0 1px rgba(83,87,255,0.5); }
.fb-chip.on { color: #fff; background: color-mix(in srgb, #5357FF 26%, rgba(11,11,20,0.55)); box-shadow: inset 0 0 0 1px #5357FF; }
.fb-error { min-height: 14px; font-size: 11px; line-height: 1.25; color: #FF9AAA; }
.fb-card .btn { width: 100%; margin-top: 6px; }
.fb-card .fc-fine { font-family: var(--font-mono); font-size: 10.5px; color: var(--on-dark-48); margin-top: 14px; line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
.fc-status { min-height: 18px; margin-top: 12px; font-size: 12px; color: var(--color-success); line-height: 1.45; }
.fc-status.error { color: #FF9AAA; }
.fc-form button[disabled] { opacity: 0.72; cursor: wait; }
.fb-card .fc-fine svg { width: 13px; height: 13px; flex: none; margin-top: 1px; color: var(--color-success); }
.fb-card .fc-done { display: none; text-align: center; padding: 8px 0; }
.fb-card .fc-done svg { width: 40px; height: 40px; color: var(--color-success); margin-bottom: 12px; }
.fb-card .fc-done .d-t { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #fff; letter-spacing: -0.02em; }
.fb-card .fc-done .d-s { font-size: 13.5px; color: var(--on-dark-72); margin-top: 8px; line-height: 1.55; }
.fb-card.sent .fc-form { display: none; }
.fb-card.sent .fc-done { display: block; }

/* Inline email-verification (OTP) step — shown after a request while we confirm
   the address, before the report is released. */
.fb-card .fc-verify { display: none; }
.fb-card.verify .fc-form { display: none; }
.fb-card.verify .fc-verify { display: block; }
.fc-verify .v-t { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff; letter-spacing: -0.02em; }
.fc-verify .v-s { font-size: 13px; color: var(--on-dark-72); margin-top: 8px; line-height: 1.55; }
.fc-verify .v-s strong { color: #fff; }
.fc-otp {
  width: 100%; margin: 18px 0 0; padding: 14px 16px; text-align: center;
  font-family: var(--font-mono); font-size: 26px; font-weight: 600; letter-spacing: 0.4em;
  color: #fff; background: rgba(255,255,255,0.05); border: 1px solid var(--hairline-dim);
  border-radius: var(--radius-md); outline: none;
}
.fc-otp::placeholder { color: var(--on-dark-40, rgba(255,255,255,0.4)); letter-spacing: 0.4em; }
.fc-otp:focus { border-color: var(--color-lavender); }
.fc-verify .fc-resend {
  margin-top: 14px; font-size: 13px; color: var(--on-dark-72);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.fc-verify .fc-resend button {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: 600 13px var(--font-sans); color: var(--color-lavender); text-decoration: underline; text-underline-offset: 3px;
}
.fc-verify .fc-resend button[disabled] { opacity: 0.6; cursor: default; }

/* =============================================================
   PRODUCTION MARKETPLACE
   ============================================================= */
.market { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: stretch; }
@media (max-width: 920px) { .market { grid-template-columns: 1fr; } }
.creative {
  background: var(--color-obsidian); border-radius: var(--radius-xl); padding: 26px;
  box-shadow: 0 30px 60px -26px rgba(20,19,46,0.45), inset 0 0 0 1px var(--hairline-dim); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.creative::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gradient-mark); z-index: 2; }
.creative::after { content: ""; position: absolute; left: 50%; top: -40px; transform: translateX(-50%); width: 380px; height: 320px; background: radial-gradient(ellipse at center, rgba(83,87,255,0.3), transparent 62%); pointer-events: none; }
.creative .inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.creative .c-top { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-dark-48); }
.creative .c-top .rec { width: 7px; height: 7px; border-radius: 50%; background: var(--color-danger); }
.creative .reel { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 16px; margin: 24px 0; }
.creative .reel .big { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.02em; line-height: 1.12; color: #fff; }
.creative .reel .pts { display: flex; flex-direction: column; gap: 10px; }
.creative .reel .pts span { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--on-dark-72); }
.creative .reel .pts span::before { content: ""; width: 15px; height: 15px; border-radius: 50%; flex: none; box-shadow: inset 0 0 0 1.5px var(--color-lavender); background: radial-gradient(circle, var(--color-lavender) 36%, transparent 40%); }
.creative .cta-card { background: rgba(255,255,255,0.05); box-shadow: inset 0 0 0 1px var(--hairline-dim); border-radius: var(--radius-md); padding: 14px 16px; }
.creative .cta-card .lab { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-lavender); margin-bottom: 7px; }
.creative .cta-card .msg { font-size: 14px; color: #fff; line-height: 1.45; }
.creative .lang { display: inline-flex; gap: 2px; margin-top: 16px; padding: 3px; background: rgba(255,255,255,0.05); border-radius: var(--radius-pill); align-self: flex-start; }
.creative .lang button { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--on-dark-48); background: none; border: 0; padding: 6px 14px; border-radius: var(--radius-pill); cursor: pointer; transition: all var(--dur-base) var(--ease-out); }
.creative .lang button.active { background: var(--color-indigo); color: #fff; }

.assets { display: flex; flex-direction: column; gap: 12px; }
.asset { display: flex; align-items: center; gap: 18px; background: var(--surface); border-radius: var(--radius-lg); padding: 18px 22px; box-shadow: inset 0 0 0 1px var(--line), 0 1px 2px rgba(20,19,46,0.04); transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out); }
.asset:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px var(--line), 0 14px 30px -16px rgba(20,19,46,0.24); }
.asset .a-ic { width: 42px; height: 42px; border-radius: var(--radius-md); background: rgba(79,69,214,0.10); color: var(--indigo-on-light); display: flex; align-items: center; justify-content: center; flex: none; }
.asset .a-ic svg { width: 21px; height: 21px; }
.asset .a-main { flex: 1; min-width: 0; }
.asset .a-main .a-nm { font-weight: 600; font-size: 16px; color: var(--ink-1); }
.asset .a-main .a-ds { font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.asset .a-price { font-family: var(--font-mono); font-size: 13.5px; font-weight: 600; color: var(--ink-1); white-space: nowrap; }
.asset .a-price .u { color: var(--ink-3); font-weight: 400; font-size: 11px; }

/* =============================================================
   REVENUE LEARNING LOOP (light)
   ============================================================= */
.loop-flow { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.lstep { position: relative; flex: 1; min-width: 116px; background: var(--surface); border-radius: var(--radius-md); padding: 15px 14px; box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out); }
.lstep:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--line-2), 0 12px 24px -14px rgba(20,19,46,0.22); }
.lstep .n { font-family: var(--font-mono); font-size: 11px; color: var(--violet-on-light); font-weight: 600; }
.lstep .ic { color: var(--ink-3); margin: 4px 0 6px; }
.lstep .ic svg { width: 18px; height: 18px; }
.lstep .t { font-size: 13.5px; font-weight: 600; color: var(--ink-1); letter-spacing: -0.01em; line-height: 1.2; }
.lstep.end { background: var(--color-navy-deep); box-shadow: 0 16px 32px -16px rgba(20,19,46,0.4), inset 0 0 0 1px var(--hairline-dim); }
.lstep.end .t { color: #fff; }
.lstep.end .n { color: var(--color-lavender); }
.lstep.end .ic { color: var(--color-lavender); }

.le { background: var(--surface); border-radius: var(--radius-xl); box-shadow: inset 0 0 0 1px var(--line), 0 18px 40px -22px rgba(20,19,46,0.2); overflow: hidden; position: relative; }
.le::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-mark); }
.le-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 26px clamp(24px,3vw,38px); border-bottom: 1px solid var(--line-faint); }
.le-top .t { font-family: var(--font-display); font-weight: 600; font-size: 24px; letter-spacing: -0.02em; color: var(--ink-1); margin-top: 8px; }
.le-metrics { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line-faint); }
@media (max-width: 820px) { .le-metrics { grid-template-columns: 1fr 1fr; } }
.le-metrics .m { background: var(--surface); padding: 26px clamp(20px,2.4vw,30px); }
.le-metrics .m .mk { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.le-metrics .m .mv { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 2.8vw, 40px); letter-spacing: -0.025em; color: var(--ink-1); margin-top: 12px; line-height: 1; }
.le-metrics .m .mv .u { color: var(--violet-on-light); font-size: 0.52em; }
.le-metrics .m.action .mv { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.25; color: var(--indigo-on-light); letter-spacing: -0.01em; margin-top: 14px; }
.le-foot { padding: 18px clamp(24px,3vw,38px); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.le-foot .note { font-size: 12.5px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 8px; max-width: 60ch; }
.le-foot .note svg { width: 14px; height: 14px; flex: none; }

/* =============================================================
   WHY QALLORA WINS — comparison
   ============================================================= */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 820px) { .compare { grid-template-columns: 1fr; } }
.col { border-radius: var(--radius-xl); padding: clamp(26px,3vw,40px); position: relative; overflow: hidden; }
.col.generic { background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); }
.col.qallora { background: var(--color-navy-deep); box-shadow: 0 30px 60px -26px rgba(20,19,46,0.45), inset 0 0 0 1px var(--hairline-dim); }
.col.qallora::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gradient-mark); }
.col.qallora::after { content: ""; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(83,87,255,0.25), transparent 64%); pointer-events: none; }
.col .ch { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; position: relative; }
.col.generic .ch { color: var(--ink-2); }
.col.qallora .ch { color: #fff; }
.col .csub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 6px; position: relative; }
.col.generic .csub { color: var(--ink-3); }
.col.qallora .csub { color: var(--on-dark-48); }
.col ul { list-style: none; margin-top: 24px; position: relative; }
.col li { display: flex; align-items: center; gap: 12px; padding: 13px 0; font-size: 15px; }
.col.generic li { color: var(--ink-3); border-top: 1px solid var(--line-faint); }
.col.generic li:first-child { border-top: none; }
.col.qallora li { color: var(--on-dark-100); border-top: 1px solid var(--hairline-faint); }
.col.qallora li:first-child { border-top: none; }
.col li .x { width: 18px; height: 18px; color: var(--ink-4); flex: none; }
.col li .c { width: 20px; height: 20px; border-radius: 50%; background: var(--color-indigo); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.col li .c svg { width: 12px; height: 12px; }

/* =============================================================
   PRICING
   ============================================================= */
.prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
@media (max-width: 980px) { .prices { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .prices { grid-template-columns: 1fr; } }
.price { background: var(--surface); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: inset 0 0 0 1px var(--line); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out); }
.price:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--line-2), 0 16px 34px -18px rgba(20,19,46,0.24); }
.price.featured { background: var(--color-navy-deep); box-shadow: 0 30px 60px -26px rgba(20,19,46,0.45), inset 0 0 0 1px var(--hairline-dim); }
.price.featured::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-mark); }
.price .tier { font-family: var(--font-sans); font-weight: 800; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--indigo-on-light); display: flex; align-items: center; gap: 9px; }
.price.featured .tier { color: var(--color-lavender); }
.price .tier .rec { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; padding: 3px 8px; border-radius: var(--radius-pill); background: var(--color-indigo); color: #fff; }
.price .amt { font-family: var(--font-display); font-weight: 700; font-size: 34px; letter-spacing: -0.03em; color: var(--ink-1); margin-top: 18px; line-height: 1; }
.price.featured .amt { color: #fff; }
.price .amt .per { font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }
.price.featured .amt .per { color: var(--on-dark-48); }
.price .amt .cur { color: var(--violet-on-light); }
.price.featured .amt .cur { color: var(--color-violet); }
.price .desc { font-size: 13.5px; color: var(--ink-2); margin-top: 12px; line-height: 1.5; min-height: 40px; }
.price.featured .desc { color: var(--on-dark-72); }
.price ul { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 11px; }
.price li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-2); }
.price.featured li { color: var(--on-dark-72); }
.price li svg { width: 15px; height: 15px; color: var(--indigo-on-light); flex: none; margin-top: 2px; }
.price.featured li svg { color: var(--color-lavender); }
.price .btn { margin-top: auto; width: 100%; }

/* =============================================================
   PILOT PROGRAMME
   ============================================================= */
.pilot { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .pilot { grid-template-columns: 1fr; gap: 32px; } }
.pilot-steps { display: flex; flex-direction: column; }
.pilot-steps .ps { display: flex; align-items: center; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line-faint); }
.pilot-steps .ps:last-child { border-bottom: none; }
.pilot-steps .ps .num { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--indigo-on-light); width: 30px; height: 30px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(79,69,214,0.32); display: flex; align-items: center; justify-content: center; flex: none; }
.pilot-steps .ps .lab { font-size: 16px; font-weight: 600; color: var(--ink-1); letter-spacing: -0.01em; }
.pilot-card { background: var(--color-navy-deep); border-radius: var(--radius-xl); padding: 36px; box-shadow: 0 30px 60px -26px rgba(20,19,46,0.45), inset 0 0 0 1px var(--hairline-dim); position: relative; overflow: hidden; }
.pilot-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gradient-mark); }
.pilot-card::after { content: ""; position: absolute; left: -60px; bottom: -60px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(83,87,255,0.22), transparent 64%); pointer-events: none; }
.pilot-card > * { position: relative; }
.pilot-card .ph { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-lavender); }
.pilot-card h3 { font-size: 24px; margin-top: 14px; color: #fff; }
.pilot-card .crit { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.pilot-card .crit li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--on-dark-72); }
.pilot-card .crit li .c { width: 22px; height: 22px; border-radius: 50%; background: rgba(83,87,255,0.18); color: var(--color-lavender); display: flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }
.pilot-card .crit li .c svg { width: 13px; height: 13px; }

/* =============================================================
   FINAL CTA (dark island)
   ============================================================= */
.final { position: relative; border-radius: var(--radius-ticket); overflow: hidden; padding: clamp(52px,7vw,96px) clamp(28px,5vw,80px); text-align: center; background: var(--color-navy-deep); box-shadow: 0 40px 80px -34px rgba(20,19,46,0.5), inset 0 0 0 1px var(--hairline-dim); }
.final::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gradient-mark); }
.final::after { content: ""; position: absolute; left: 50%; bottom: -160px; transform: translateX(-50%); width: 820px; height: 480px; background: radial-gradient(ellipse at center, rgba(83,87,255,0.34), transparent 64%); pointer-events: none; }
.final > * { position: relative; }
.final .eyebrow { color: var(--color-lavender); margin-bottom: 22px; }
.final .eyebrow.line::before { background: var(--color-lavender); }
.final h2 { font-size: clamp(34px,5vw,64px); letter-spacing: -0.035em; color: #fff; max-width: 17ch; margin: 0 auto 22px; line-height: 1.02; }
.final p { color: var(--on-dark-72); font-size: clamp(16px,1.5vw,19px); max-width: 54ch; margin: 0 auto 34px; line-height: 1.6; }
.final .fcta { display: inline-flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =============================================================
   FOOTER
   ============================================================= */
footer { padding: 64px 0 44px; border-top: 1px solid var(--line); }
.f-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.f-brand { max-width: 320px; }
.f-brand .tag { margin-top: 16px; font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.02em; line-height: 1.25; color: var(--ink-1); }
.f-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.f-col h3 { font-family: var(--font-sans); font-weight: 800; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--indigo-on-light); margin-bottom: 16px; }
.f-col a { display: block; font-size: 14px; color: var(--ink-2); padding: 5px 0; transition: color var(--dur-base) var(--ease-out); }
.f-col a:hover { color: var(--ink-1); }
.f-bot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.f-bot .by b { color: var(--ink-2); font-weight: 600; }

/* =============================================================
   HERO SHOT — gentle float + sheen (motion-safe)
   ============================================================= */
.shot-sheen { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; border-radius: inherit; }
.shot-sheen::after { content: ""; position: absolute; top: -60%; left: -40%; width: 38%; height: 220%; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent); }
@media (prefers-reduced-motion: no-preference) {
  .hero-media .hero-shot { animation: heroFloat 7s ease-in-out infinite; will-change: transform; }
  .hero-media .float { animation: heroFloatCounter 7s ease-in-out infinite; }
  .shot-sheen::after { animation: shotSheen 7s ease-in-out infinite; animation-delay: 1.6s; }
}
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes heroFloatCounter { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes shotSheen { 0% { left: -40%; } 24%,100% { left: 130%; } }

/* =============================================================
   PRODUCTION ADD-ONS (bookable) — light card grid
   ============================================================= */
.addons-col { display: flex; flex-direction: column; }
.addons-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.addons-head .ah-lab { font-family: var(--font-sans); font-weight: 800; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--indigo-on-light); }
.addons-head .ah-note { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .addon-grid { grid-template-columns: 1fr; } }
.addon { background: var(--surface); border-radius: var(--radius-md); padding: 16px 16px 15px; box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out); display: flex; flex-direction: column; }
.addon:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px var(--line-2), 0 14px 28px -16px rgba(20,19,46,0.22); }
.addon .a-ic { width: 34px; height: 34px; border-radius: var(--radius-sm); background: rgba(79,69,214,0.10); color: var(--indigo-on-light); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.addon .a-ic svg { width: 17px; height: 17px; }
.addon .a-nm { font-family: var(--font-sans); font-weight: 700; font-size: 14.5px; color: var(--ink-1); letter-spacing: -0.01em; }
.addon .a-ds { font-size: 12px; color: var(--ink-3); margin-top: 4px; line-height: 1.45; flex: 1; }
.addon .a-price { margin-top: 12px; font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--ink-1); }
.addon .a-price .u { color: var(--ink-3); font-weight: 400; font-size: 11px; }
.addons-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 16px; }
.addons-foot .af-note { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 9px; }
.addons-foot .af-note svg { width: 15px; height: 15px; color: var(--color-success); flex: none; }

/* =============================================================
   REVENUE LOOP — ROI redesign
   ============================================================= */
.le-top .le-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.le-roi { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 24px clamp(24px,3vw,38px); border-bottom: 1px solid var(--line-faint); }
@media (max-width: 640px) { .le-roi { grid-template-columns: 1fr; } }
.roi-flow { display: flex; align-items: center; gap: clamp(14px,3vw,30px); }
.roi-cell .rk { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.roi-cell .rv { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px,3vw,38px); letter-spacing: -0.025em; color: var(--ink-1); margin-top: 8px; line-height: 1; }
.roi-cell .rv .u { color: var(--violet-on-light); font-size: 0.5em; }
.roi-arrow { color: var(--ink-4); display: flex; }
.roi-arrow svg { width: 22px; height: 22px; }
.roi-mult { text-align: right; padding: 14px 22px; border-radius: var(--radius-md); background: linear-gradient(120deg, rgba(83,87,255,0.10), rgba(132,129,239,0.18)); box-shadow: inset 0 0 0 1px rgba(79,69,214,0.22); }
@media (max-width: 640px) { .roi-mult { text-align: left; } }
.roi-mult .rm-k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--indigo-on-light); }
.roi-mult .rm-v { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px,4vw,52px); line-height: 0.9; letter-spacing: -0.03em; margin-top: 6px; background: linear-gradient(96deg, var(--color-indigo), var(--color-violet) 72%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.roi-mult .rm-v .x { font-size: 0.5em; }
.le-mini { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-faint); }
@media (max-width: 640px) { .le-mini { grid-template-columns: 1fr; } }
.le-mini .mm { background: var(--surface); padding: 18px clamp(20px,2.4vw,30px); }
.le-mini .mk { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.le-mini .mv { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -0.025em; color: var(--ink-1); margin-top: 10px; line-height: 1; }
.le-mini .mv.act { font-weight: 600; font-size: 16px; color: var(--indigo-on-light); letter-spacing: -0.01em; line-height: 1.25; margin-top: 12px; }
.le-cost { display: flex; gap: 14px; align-items: flex-start; padding: 20px clamp(24px,3vw,38px); background: var(--surface-2); border-top: 1px solid var(--line-faint); }
.le-cost .lc-ic { width: 36px; height: 36px; flex: none; border-radius: var(--radius-sm); background: rgba(204,74,96,0.10); color: #CC4A60; display: flex; align-items: center; justify-content: center; }
.le-cost .lc-ic svg { width: 18px; height: 18px; }
.le-cost div { font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.le-cost b { color: var(--ink-1); font-weight: 700; }
.le-cost .hl { color: #CC4A60; font-weight: 700; }

/* =============================================================
   FREE-REPORT FORM — extra fields
   ============================================================= */
.fb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .fb-row { grid-template-columns: 1fr; } }
.fb-hint { font-family: var(--font-mono); font-size: 10.5px; color: var(--on-dark-48); margin-top: 1px; }
.fb-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.fb-chips:empty { display: none; }
.fb-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: #fff; background: rgba(255,255,255,0.08); box-shadow: inset 0 0 0 1px var(--hairline-dim); border-radius: var(--radius-pill); padding: 4px 6px 4px 11px; }
.fb-chip button { background: none; border: 0; color: var(--on-dark-48); cursor: pointer; display: flex; padding: 2px; border-radius: 50%; line-height: 0; }
.fb-chip button:hover { color: #fff; }
.fb-chip svg { width: 12px; height: 12px; }

/* =============================================================
   FAQ — accordion
   ============================================================= */
.faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.qa { background: var(--surface); border-radius: var(--radius-md); box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; transition: box-shadow var(--dur-base) var(--ease-out); }
.qa.open { box-shadow: inset 0 0 0 1px var(--line-2), 0 12px 28px -18px rgba(20,19,46,0.18); }
.qa-heading { margin: 0; }
.qa-toggle { width: 100%; border: 0; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px clamp(20px,2.4vw,28px); font-family: var(--font-display); font-weight: 600; font-size: clamp(16px,1.6vw,19px); letter-spacing: -0.01em; color: var(--ink-1); text-align: left; }
.qa-toggle:focus-visible, .nav-burger:focus-visible, .btn:focus-visible, .nav a:focus-visible, .nav-mobile a:focus-visible, .fb-field input:focus-visible { outline: 3px solid rgba(83,87,255,0.34); outline-offset: 3px; }
.qa-ic { width: 28px; height: 28px; flex: none; border-radius: 50%; background: rgba(79,69,214,0.10); color: var(--indigo-on-light); display: flex; align-items: center; justify-content: center; transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out); }
.qa-ic svg { width: 16px; height: 16px; }
.qa.open .qa-ic { transform: rotate(45deg); background: var(--color-indigo); color: #fff; }
.qa-body { padding: 0 clamp(20px,2.4vw,28px) 22px; }
.qa-body p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; max-width: 64ch; }
.faq-cta { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; font-size: 14px; color: var(--ink-3); }

/* =============================================================
   REVEAL — visible by default; JS hides only when motion is safe
   ============================================================= */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.pre { opacity: 0; transform: translateY(18px); }
.reveal[data-d="1"] { transition-delay: 0.06s; }
.reveal[data-d="2"] { transition-delay: 0.12s; }
.reveal[data-d="3"] { transition-delay: 0.18s; }
.reveal[data-d="4"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .pulse-dot { animation: none; }
}

/* =============================================================
   LOOP-STEP TOOLTIPS — hover / focus details
   ============================================================= */
.loop-flow { position: relative; }
.lstep { cursor: default; outline: none; }
.lstep:focus-visible { box-shadow: inset 0 0 0 1px var(--line-2), 0 0 0 3px rgba(83,87,255,0.26); }
.lstep-tip {
  position: absolute; bottom: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  width: 240px; max-width: min(80vw, 280px);
  background: var(--color-navy-deep); color: var(--on-dark-100);
  font-family: var(--font-sans); font-weight: 300; font-size: 12.5px; line-height: 1.5; text-align: left;
  padding: 14px 16px; border-radius: var(--radius-md);
  box-shadow: 0 24px 48px -18px rgba(20,19,46,0.55), inset 0 0 0 1px var(--hairline-dim);
  opacity: 0; pointer-events: none; transition: opacity .2s var(--ease-out), transform .2s var(--ease-out); z-index: 30;
}
.lstep-tip.wide { width: 268px; }
.lstep-tip::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; border-radius: var(--radius-md) var(--radius-md) 0 0; background: var(--gradient-mark); }
.lstep-tip::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 7px solid transparent; border-top-color: var(--color-navy-deep); }
.lstep-tip b { color: #fff; font-weight: 700; }
.lstep-tip .tt-desk { color: var(--color-lavender); font-weight: 600; }
.lstep:hover { z-index: 6; }
.lstep:hover .lstep-tip, .lstep:focus .lstep-tip, .lstep:focus-within .lstep-tip { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
@media (max-width: 640px) {
  .lstep-tip { left: 0; transform: translateX(0) translateY(6px); width: 100%; max-width: none; }
  .lstep-tip.wide { width: 100%; }
  .lstep-tip::after { left: 26px; }
  .lstep:hover .lstep-tip, .lstep:focus .lstep-tip, .lstep:focus-within .lstep-tip { transform: translateX(0) translateY(0); }
}

/* FAQ CTA — prevent crowding/overlap */
.faq-cta { row-gap: 12px; margin-top: 32px; }
@media (max-width: 520px) {
  .faq-cta { flex-direction: column; }
  .faq-cta .btn { width: 100%; justify-content: center; }
}

/* =============================================================
   MOBILE NAV — hamburger + dropdown menu
   ============================================================= */
.nav-burger { display: none; flex: none; width: 42px; height: 42px; border: 0; background: transparent; border-radius: var(--radius-md); cursor: pointer; position: relative; }
.nav-burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink-1); border-radius: 2px; transition: transform .25s var(--ease-out), opacity .2s var(--ease-out); }
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 20px; }
.nav-burger span:nth-child(3) { top: 26px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile { display: none; }
@media (max-width: 1099px) {
  .nav .brand { margin-right: auto; }
  .nav-burger { display: inline-flex; }
  .nav-mobile {
    display: block; position: absolute; left: 12px; right: 12px; top: calc(100% + 8px);
    background: rgba(250,251,255,0.97); backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px var(--line-2), 0 24px 48px -18px rgba(20,19,46,0.28);
    padding: 10px; opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity .22s var(--ease-out), transform .22s var(--ease-out); z-index: 70;
  }
  .nav-mobile[hidden] { display: none !important; }
  .nav-mobile.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-mobile a:not(.btn) { display: block; padding: 13px 14px; border-radius: var(--radius-md); font-family: var(--font-sans); font-weight: 600; font-size: 15px; color: var(--ink-2); }
  .nav-mobile a:not(.btn):hover { background: rgba(20,19,46,0.05); color: var(--ink-1); }
  .nm-cta { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--line); }
  .nm-cta .btn { width: 100%; }
}

/* =============================================================
   RESPONSIVE REFINEMENTS — tablet & phone
   ============================================================= */
@media (max-width: 760px) {
  .wrap { padding: 0 22px; }
  .section { padding: clamp(58px, 9vw, 84px) 0; }
  .hero { padding: 126px 0 60px; }
  .hero-feats { gap: 14px 20px; }
  .term-main { padding: 22px; }
  .tm-head { gap: 14px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero { padding: 114px 0 48px; }
  .hero h1 { font-size: clamp(33px, 10vw, 46px); }
  .hero .sub { font-size: 15.5px; }
  .hero-feats { grid-template-columns: 1fr; }
  .nav { padding: 9px 10px 9px 15px; }
  .nav-cta .primary { display: none; }
  /* On mobile the signed-in state (the "Signed in as …" label + Go-to-dashboard
     button) lives ONLY in the hamburger drawer (.nm-cta), never inline in the
     header bar — otherwise the long email string overflows and collides with the
     hamburger, blocking the menu (launch audit P2-1). */
  .nav-cta .signed-as { display: none; }
  .btn { padding: 13px 18px; }
  .btn.sm { padding: 12px 16px; }
  .tm-score .val { font-size: clamp(44px, 13vw, 64px); }
  .tm-foot { gap: 10px; }
  .tm-foot .spacer { display: none; }
  .roi-flow { gap: 16px; }
  .roi-cell .rv { font-size: clamp(24px, 8vw, 32px); }
  .f-cols { gap: 28px 40px; }
  .final { padding: 46px 22px; }
}
@media (max-width: 360px) {
  .brand { font-size: 16px; }
  .brand .mark { width: 26px; height: 26px; }
  .live-strip { font-size: 11px; }
}

/* Launch fixes: AI/AEO answer block + narrow mobile overflow hardening */
.aeo-section { padding-top: clamp(48px, 7vw, 88px); }
.aeo-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(24px, 4vw, 44px); box-shadow: 0 24px 60px -36px rgba(20,19,46,0.28); }
.aeo-card h2 { margin-top: 14px; font-size: clamp(32px, 4.5vw, 58px); }
.aeo-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.aeo-grid article { min-width: 0; padding: 16px; border-radius: var(--radius-lg); background: rgba(79,69,214,0.045); border: 1px solid rgba(79,69,214,0.12); }
.aeo-grid h3 { font-family: var(--font-sans); font-size: 13px; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--indigo-on-light); }
.aeo-grid p { color: var(--ink-2); font-size: 13.5px; line-height: 1.55; }
.optional { color: var(--ink-3); font-weight: 500; font-size: .9em; }
@media (max-width: 1080px) { .aeo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .aeo-grid { grid-template-columns: 1fr; } }

@media (max-width: 430px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  .wrap, .hero-copy, .hero .sub, .hero h1, .hero-eyebrow, .hero-points, .hero-markets { max-width: 100%; min-width: 0; }
  .hero h1 { font-size: clamp(31px, 9.3vw, 40px); overflow-wrap: anywhere; }
  .hero-eyebrow { white-space: normal; align-items: flex-start; line-height: 1.35; letter-spacing: 0.08em; }
  .hero-points { grid-template-columns: 1fr; }
  .hp, .hm, .btn { min-width: 0; }
  .hero .ctas, .fcta, .idx-cta { width: 100%; }
  .hero .ctas .btn, .fcta .btn, .idx-cta .btn { width: 100%; white-space: normal; text-align: center; }
  .console, .intel-board, .comp-board, .index-board, .le, .market, .matrix, .prices { max-width: 100%; overflow-x: hidden; }
}
@media (max-width: 430px) {
  .cursor-glow { display: none; }
  .pshow, .pshow-media, .pframe, .pframe .bar, .pframe .screen, .pcap, .pcap .pk, .pcap h3, .pcap p { min-width: 0; max-width: 100%; width: 100%; }
  .pframe .bar { overflow: hidden; }
  .pframe .bar .url { min-width: 0; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding-left: 10px; padding-right: 10px; }
  .pframe .bar .live { display: none; }
}
