/* =============================================================================
   Romanian Forest — Landing v2
   Implements LANDING-V2-REVIEW.md: unified accent (#CCFF00), tightened reveals,
   marquee edge fades, cream-panel contrast fix, burn-ring, hero inline capture,
   prefers-reduced-motion support.
   ============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,500;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --lime: #CCFF00;                /* unified brand accent (was #F0FC3C) */
  --lime-deep: #7A8500;           /* darkened for small text on cream (was #A6B400) */
  --ink: #0B0A08;
  --ink-2: #131210;
  --cream: #ECE4D3;
  --cream-ink: #1A1611;
  --cream-muted: rgba(26,22,17,0.56);
  --cream-line: rgba(26,22,17,0.14);
  --text: #F5F2E9;
  --muted: rgba(245,242,233,0.60);
  --line: rgba(245,242,233,0.10);
  --pos: #18B85C;
  --warn: #F59E0B;
  --neg: #EB4747;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Plus Jakarta Sans', sans-serif;
  --editorial: 'Playfair Display', Georgia, serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--text); font-family: var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lime); color: var(--ink); }

.wrap { width: min(calc(100% - 48px), 1200px); margin: 0 auto; }

/* ---- Buttons (one CTA label everywhere: "Inscrie-te pe lista") ---- */
.btn { display: inline-flex; align-items: center; gap: 9px; height: 52px; padding: 0 28px; border-radius: 100px;
  font-family: var(--body); font-weight: 700; font-size: 1rem; cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease, color .25s ease; }
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(204,255,0,0.28); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-lg { height: 58px; padding: 0 34px; font-size: 1.05rem; }

/* ---- Nav — floating glass pill (Phase 1 #3, Lumio) ---- */
.nav { position: fixed; top: 14px; left: 0; right: 0; z-index: 50; pointer-events: none; }
.nav-inner { position: relative; z-index: 51; pointer-events: auto; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: min(calc(100% - 28px), 1080px); margin: 0 auto; height: 62px; padding: 0 10px 0 22px;
  border-radius: 100px; border: 1px solid rgba(245,242,233,0.10);
  background: rgba(11,10,8,0.45); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease); }
.nav.scrolled .nav-inner { background: rgba(11,10,8,0.72); border-color: rgba(245,242,233,0.14);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.03em; white-space: nowrap; }
.brand img { width: 30px; height: 30px; }
.nav-links { display: flex; gap: 30px; color: var(--muted); font-size: 0.95rem; font-weight: 500; }
.nav-links a { transition: color .25s; }
.nav-links a:hover { color: var(--text); }
.nav .btn { height: 44px; padding: 0 22px; font-size: 0.92rem; }
/* mobile hamburger — hidden on desktop, shown once .nav-links collapses */
.nav-burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--text); background: transparent; border: none; flex: 0 0 auto; }
.nav-burger:active { background: rgba(245,242,233,0.08); }
/* fullscreen mobile panel: same links as desktop, brand-styled (dark + lime CTA) */
.nav-mobile { position: fixed; inset: 0; z-index: 49; pointer-events: auto; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  background: rgba(11,10,8,0.98); backdrop-filter: blur(20px);
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s; }
.nav-mobile.on { opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .3s var(--ease), transform .3s var(--ease); }
.nav-mobile-links { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.nav-mobile-links a { font-family: var(--display); font-weight: 600; font-size: 1.9rem;
  letter-spacing: -0.02em; color: var(--text); padding: 10px 0; }
.nav-mobile-links a:active { color: var(--lime); }

/* ---- Hero ---- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
#scene { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
/* static halftone hero plate — shown only when motion is reduced (Phase 3 #12 fallback) */
.hero-fallback, .hero-fallback-m { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; display: none; }
.hero-fallback { object-position: 78% 30%; }     /* desktop: landscape plate */
.hero-fallback-m { object-position: 50% 30%; }    /* mobile: portrait plate, sun centred */
@media (prefers-reduced-motion: reduce) {
  #scene { display: none; }
  .hero-fallback { display: block; }
}
/* mobile-first: portrait plate keeps the lime sun in frame on tall viewports.
   (Veil reinforcement moved to the generic ≤700px block below — the old rule
   here was dead CSS, overridden by the later default .hero-veil.) */
@media (prefers-reduced-motion: reduce) and (max-width: 700px) {
  .hero-fallback { display: none; }
  .hero-fallback-m { display: block; }
}
/* veil extended downward so sub + form sit on calm ground (review §4) */
.hero-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(46% 62% at 50% 56%, rgba(11,10,8,0.94), rgba(11,10,8,0.72) 48%, rgba(11,10,8,0.30) 70%, transparent 84%),
    radial-gradient(38% 30% at 50% 80%, rgba(204,255,0,0.14), rgba(140,170,0,0.05) 55%, transparent 75%),
    linear-gradient(180deg, rgba(11,10,8,0.55) 0%, transparent 30%, transparent 55%, rgba(11,10,8,0.92) 100%); }
/* mobile: full-width copy needs the same contrast discipline over the LIVE
   canvas as over the static plate — halftone stays as atmosphere at the top,
   goes quiet behind the text band (applies to both live + reduced-motion) */
@media (max-width: 700px) {
  /* dusk depth instead of flat grey: lime sun halo up top, warm amber horizon
     low, dark band in between keeps the copy readable */
  .hero-veil { background:
    radial-gradient(70% 30% at 62% 0%, rgba(204,255,0,0.13), transparent 72%),
    radial-gradient(60% 24% at 50% 104%, rgba(255,176,80,0.10), transparent 78%),
    linear-gradient(180deg, rgba(11,10,8,0.18) 0%, rgba(11,10,8,0.32) 10%,
      rgba(11,10,8,0.88) 26%, rgba(11,10,8,0.82) 62%, rgba(11,10,8,0.97) 100%); }
  .hero-inner { padding-top: 92px; }
  .hero-badge { font-size: 0.64rem; gap: 8px; padding: 6px 12px 6px 6px; }
  .hero-badge span.bt-l { display: none; }
  .hero-badge span.bt-s { display: inline; white-space: nowrap; }  /* span. beats the later class-only default in cascade */
  .hero-sub .sub-rest { display: none; }   /* first sentence only on small screens */
  .hero-ticker { gap: 14px; flex-wrap: nowrap; margin-top: 28px; }
  .tk { flex: 1; min-width: 0; }
  .tk-val { font-size: 1.35rem; }
  .tk-lbl { font-size: 0.68rem; }
}
.hero-inner { position: relative; z-index: 2; padding-top: 72px; display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 940px; margin: 0 auto; }
/* badge pill above headline (Phase 1 #2, Lumio) */
.hero-badge { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em; color: rgba(245,242,233,0.85);
  padding: 7px 16px 7px 7px; border-radius: 100px; border: 1px solid rgba(245,242,233,0.16);
  background: rgba(11,10,8,0.5); backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.hero-badge .nb { font-weight: 700; font-size: 0.68rem; letter-spacing: 0.12em; color: var(--ink);
  background: var(--lime); border-radius: 100px; padding: 4px 10px; }
.hero-badge .bt-s { display: none; }   /* short badge copy — mobile only */
.hero h1 { font-family: var(--display); font-weight: 700; font-size: clamp(2.6rem, 7.5vw, 6.2rem); line-height: 0.98;
  letter-spacing: -0.045em; margin: 0; text-shadow: 0 2px 40px rgba(11,10,8,0.85); }
.hero h1 .it { display: inline-block; margin-top: 0.06em; white-space: nowrap;
  font-family: var(--editorial); font-style: italic; font-weight: 500; color: var(--lime); }
/* editorial-italic emphasis word in any section h2 (E3) — inherits colour, reskins on cream */
.h2 .it { font-family: var(--editorial); font-style: italic; font-weight: 500; }
/* sub lifted from #cdc9c0 → #e8e5dc for contrast (review §4);
   min-height reserves space while the typewriter runs (Phase 1 #1) */
.hero-sub { margin: 20px auto 0; max-width: 52ch; font-size: 1.16rem; line-height: 1.55; color: #e8e5dc;
  text-shadow: 0 1px 18px rgba(11,10,8,0.9); min-height: calc(1.55em * 3); }
.hero-sub .caret { display: inline-block; width: 2px; height: 1.05em; margin-left: 2px; vertical-align: text-bottom;
  background: var(--lime); animation: caret-blink 1.1s steps(1) infinite; }
@keyframes caret-blink { 0%, 55% { opacity: 1; } 56%, 100% { opacity: 0; } }
.hero-sub .sub-rest { opacity: 0; transition: opacity .8s var(--ease); }
.hero-sub .sub-rest.show { opacity: 1; }

/* hero CTA — single button, opens the quick-join modal (review §1) */
.hero-capture { display: flex; gap: 10px; margin-top: 26px; }
/* discreet CTA pulse — soft lime ring breathes out every few seconds */
.hero-capture .btn-primary { animation: ctaPing 3.6s cubic-bezier(0.22,1,0.36,1) infinite; }
@keyframes ctaPing {
  0%   { box-shadow: 0 0 0 0 rgba(204,255,0,0.32); }
  45%  { box-shadow: 0 0 0 13px rgba(204,255,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(204,255,0,0); }
}
.hero-fine { margin-top: 14px; font-size: 0.8rem; color: var(--muted); }

.hero-ticker { display: flex; gap: 44px; margin-top: 34px; flex-wrap: wrap; justify-content: center; padding-top: 18px; border-top: 1px solid var(--line); }
.tk { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.tk-val { font-family: var(--display); font-weight: 700; font-size: 1.7rem; letter-spacing: -0.03em; color: var(--text);
  border-radius: 8px; padding: 0 6px; transition: background .4s, color .4s; }
.tk-val small { font-size: 0.55em; color: var(--muted); font-weight: 500; }
.tk-up { color: var(--lime); }
.tk-val.flash { background: rgba(24,184,92,0.18); color: #5ee69a; }   /* periodic price-flash (review §5) */
.tk-lbl { font-size: 0.82rem; color: var(--muted); }
/* phone peeking from hero bottom, rises on scroll (Phase 2 #9, Lumio) */
.hero-phone { position: relative; z-index: 2; width: 320px; margin: 40px auto -290px; will-change: transform; pointer-events: none; }
/* R1 (Robinhood) — annotation pins: pill + dotted leader + glowing dot at the screen edge */
.hp-pin { position: absolute; display: flex; align-items: center; z-index: 4;
  opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.hp-pin.on { opacity: 1; transform: none; }
.hp-pin.p1 { top: 34%; transition-delay: .05s; }
.hp-pin.p2 { top: 52%; transition-delay: .22s; }
.hp-pin.p3 { top: 50.5%; transition-delay: .4s; }
.hp-pin.left { right: calc(100% - 8px); }
.hp-pin.right { left: calc(100% - 8px); }
.hp-line { width: 62px; height: 0; border-top: 1.5px dotted rgba(245,242,233,0.4); }
.hp-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 8px rgba(204,255,0,0.65); flex-shrink: 0; }
.hp-pill { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; color: var(--text);
  padding: 7px 12px; border-radius: 100px; border: 1px solid var(--line);
  background: rgba(11,10,8,0.78); backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.hp-pill svg { color: var(--lime); }
.hp-pill.lime { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.hp-pill.lime svg { color: var(--ink); }
.hp-pill .amb { color: #F59E0B; }
.hp-pill .amb + svg, .hp-pin.p3 .hp-pill svg { color: #F59E0B; }
@media (max-width: 1000px) { .hp-pin { display: none; } } /* no side room for leaders */
.hero-phone .phone3d { width: 320px; transform: none; transition: none;
  box-shadow: 0 -24px 110px rgba(204,255,0,0.16), 0 0 0 1px rgba(204,255,0,0.10), 0 50px 110px rgba(0,0,0,0.6); }
.hero-phone .phone3d:hover { transform: none; }

/* ---- Hero: side-by-side variant (robust alternative to the stacked peek) ----
   Text + CTA sit left, the phone renders in full on the right — no vertical
   fight for space, so nothing depends on viewport height. Below 1100px the
   page falls back to the stacked/peeking hero untouched. */
@media (min-width: 1100px) {
  .hero-inner { display: grid; grid-template-columns: 1fr 0.82fr; align-items: center;
    gap: 24px; max-width: 1340px; text-align: left; padding-top: 40px; }
  .hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
  .hero-badge { margin-left: 0; }
  .hero h1 { font-size: clamp(2.6rem, 4.3vw, 4.6rem); }
  .hero-sub { margin-left: 0; text-align: left; max-width: 44ch; }
  .hero-capture { margin-left: 0; }
  .hero-fine { text-align: left; }
  .hero-ticker { justify-content: flex-start; gap: 34px; }
  .tk { align-items: flex-start; }
  /* phone: full height visible, centred in its own column, no more peeking */
  .hero-phone { grid-column: 2; width: min(300px, 100%); margin: 0; justify-self: center; }
}

/* ---- Marquee — edge fade masks added (review §4) ---- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 26px 0; background: linear-gradient(180deg, rgba(19,18,16,0.5), rgba(11,10,8,0.5)); overflow: hidden;
  -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; width: max-content; will-change: transform; }
.marquee-row1 .marquee-track { animation: mq-left 38s linear infinite; }
.marquee-row2 { margin-top: 12px; }
.marquee-row2 .marquee-track { animation: mq-right 46s linear infinite; }
.marquee-seq { display: flex; flex-shrink: 0; }
.mq-item { display: inline-flex; align-items: center; padding: 0 26px; font-family: var(--mono);
  font-size: 1.05rem; letter-spacing: 0.02em; color: var(--muted); white-space: nowrap; }
.mq-item::after { content: '✶'; color: var(--lime); font-size: 0.7em; opacity: .7; margin-left: 8px; }
.mq-item.lime { color: var(--lime); }
.marquee.paused .marquee-track { animation-play-state: paused; }
@keyframes mq-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mq-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ---- Section scaffold ---- */
/* scroll-margin: nav anchor jumps land below the fixed pill (also keeps the
   swipe toast, which floats 74px above the deck, clear of the nav) */
.section { padding: 130px 0; position: relative; scroll-margin-top: 100px; }

/* ---- Sticky margin rail labels (Phase 2 #10, River) ---- */
.rail { display: none; }
@media (min-width: 1380px) {
  .rail { display: block; position: sticky; top: 48vh; height: 0; z-index: 5; }
  .rail i { font-style: normal; position: absolute; left: max(20px, calc((100vw - 1200px) / 2 - 84px)); top: 0;
    writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--mono); font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,242,233,0.30); white-space: nowrap; }
  .rail i::after { content: '✶'; display: block; margin-top: 10px; color: var(--lime); opacity: 0.5; }
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime); margin: 0 0 20px; }
.eyebrow::before { content: '✶'; font-size: 0.85em; opacity: .8; }
.h2 { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.02;
  letter-spacing: -0.045em; margin: 0; text-wrap: balance; }
.lead { font-size: 1.15rem; line-height: 1.6; color: var(--muted); margin: 22px 0 0; max-width: 52ch; }

/* ---- Bottleneck ---- */
.bottleneck { text-align: center; }
.bottleneck .big { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 5.6vw, 4.6rem);
  line-height: 1.05; letter-spacing: -0.045em; max-width: 20ch; margin: 0 auto; text-wrap: balance; }
/* scroll-driven word fill (Phase 2 #8, River) */
.fillwords .fw { color: rgba(245,242,233,0.14); transition: color .4s var(--ease); }
.fillwords .fw.on { color: var(--text); }
.fillwords .fw.dim.on { color: rgba(245,242,233,0.34); }
.fillwords .fw.em { font-family: var(--editorial); font-style: italic; font-weight: 500; }
.fillwords .fw.em.on { color: var(--lime); }
.bn-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 72px; text-align: left; }
.bn-item { padding: 36px 30px 30px; border-top: 1px solid var(--line); position: relative;
  transition: background .4s var(--ease); }
.bn-item + .bn-item { border-left: 1px solid var(--line); }
/* lime fuse: top border ignites left→right on hover */
.bn-item::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.bn-item:hover { background: rgba(245,242,233,0.025); }
.bn-item:hover::before { transform: scaleX(1); }
.bn-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.bn-n { font-family: var(--mono); font-size: 0.9rem; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; }
.bn-glyph { width: 36px; height: 36px; color: rgba(204,255,0,0.5); transition: color .3s; }
.bn-item:hover .bn-glyph { color: var(--lime); }
/* ghost anti-stat — fills the former dead gap, scannable in one pass */
.bn-ghost { display: flex; align-items: baseline; gap: 12px; margin: 0 0 26px; }
.bn-ghost .bg-n { font-family: var(--display); font-weight: 700; font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1; letter-spacing: -0.04em; color: rgba(245,242,233,0.10); transition: color .4s var(--ease); }
.bn-item:hover .bg-n { color: rgba(204,255,0,0.26); }
.bn-ghost .bg-l { font-family: var(--mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(245,242,233,0.28); }
.bn-item h3 { font-family: var(--display); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.03em; margin: 0 0 12px; }
.bn-item p { color: var(--muted); font-size: 1rem; line-height: 1.6; margin: 0; }
.bn-item .pct { font-family: var(--display); color: var(--lime); font-weight: 700; }
/* problem → solution flip: dimmed answer line, ignites on hover */
.bn-fix { display: flex; align-items: flex-start; gap: 9px; margin: 18px 0 0; font-size: 0.92rem;
  line-height: 1.5; color: var(--muted); opacity: 0.55; transition: opacity .35s, color .35s; }
.bn-fix .bf-ar { color: var(--lime); flex-shrink: 0; margin-top: 2px; }
.bn-item:hover .bn-fix { opacity: 1; color: var(--text); }

/* ---- App showcase ---- */
.show-list { display: flex; flex-direction: column; gap: 110px; margin-top: 80px; }
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.show-row.flip .show-text { order: 2; }
.show-h { font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.8rem); letter-spacing: -0.04em; line-height: 1.04; margin: 14px 0 0; }
.show-phone { display: flex; justify-content: center; }
.phone3d { position: relative; width: 290px; padding: 7px; border-radius: 50px;
  background: linear-gradient(145deg, #2a2a2c, #1c1c1e 40%, #141414 80%, #1a1a1c);
  border: 1.5px solid #3a3a3c;
  box-shadow: 0 50px 110px rgba(0,0,0,0.6), 0 0 80px rgba(204,255,0,0.05), inset 0 0.5px 0 rgba(255,255,255,0.1);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg); transition: transform .6s var(--ease); }
.show-row.flip .phone3d { transform: perspective(1400px) rotateY(6deg) rotateX(2deg); }
.phone3d:hover { transform: perspective(1400px) rotateY(0) rotateX(0) translateY(-6px); }
.phone3d-notch { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 90px; height: 26px; background: #000; border-radius: 0 0 16px 16px; z-index: 3; }
.phone3d-screen { border-radius: 44px; overflow: hidden; background: #000; }
.phone3d-screen img { width: 100%; display: block; }

/* ---- Burn ring (signature animation, review §5) ---- */
.burn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.72rem; }
.burn svg { display: block; }
.burn .bt { color: var(--muted); letter-spacing: 0.04em; }
.burn.hot .bt { color: var(--warn); }
.burn.crit .bt { color: var(--neg); }

/* ---- Swipe deck ---- */
.swipe { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 70px; align-items: center; }
.swipe-copy .h2 { max-width: 16ch; }
.swipe-how { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.swipe-how .pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 9px 16px; }
.swipe-how .pill.no { color: #e0795f; }
.swipe-how .pill.yes { color: var(--lime); }
.swipe-stage { position: relative; height: 540px; display: flex; align-items: center; justify-content: center; }
/* push-notification mock after a right swipe — shows what "urmărește" means */
.swipe-toast { position: absolute; top: -74px; left: 50%; transform: translateX(-50%); z-index: 30;
  display: flex; align-items: flex-start; gap: 11px; width: min(92%, 370px);
  background: rgba(11,10,8,0.9); border: 1px solid rgba(204,255,0,0.35); border-radius: 14px;
  padding: 12px 14px; backdrop-filter: blur(10px); box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  animation: toastIn .38s var(--ease) backwards; pointer-events: none; }
@keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(-14px); } }
@keyframes toastInUp { from { opacity: 0; transform: translateX(-50%) translateY(14px); } }
.swipe-toast .st-ic { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
  background: var(--lime); color: var(--ink); flex: 0 0 auto; }
.swipe-toast .st-tx strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.swipe-toast .st-tx small { display: block; margin-top: 3px; font-family: var(--mono); font-size: 0.66rem;
  font-weight: 700; letter-spacing: 0.04em; color: var(--muted); }
.swipe-cards { position: relative; width: 360px; height: 500px; }
.lot-card { position: absolute; inset: 0; border-radius: 28px; overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(168deg, #1c1a16, #110f0c); box-shadow: 0 40px 90px rgba(0,0,0,0.55);
  display: flex; flex-direction: column; padding: 26px; cursor: grab; touch-action: pan-y; user-select: none;
  transition: transform .5s var(--ease), opacity .5s var(--ease); }
.lot-card.dragging { transition: none; cursor: grabbing; }
.lot-card.gone-right { transform: translateX(140%) rotate(18deg) !important; opacity: 0; }
.lot-card.gone-left { transform: translateX(-140%) rotate(-18deg) !important; opacity: 0; }
/* discoverability nudge on first reveal (review §5) */
.lot-card.nudge { animation: nudge 1.6s var(--ease) 1; }
@keyframes nudge { 0%,100% { transform: translateX(0) rotate(0); } 30% { transform: translateX(18px) rotate(1.2deg); } 60% { transform: translateX(-12px) rotate(-0.8deg); } }
.lot-back { pointer-events: none; }
.lot-back.b1 { transform: scale(0.94) translateY(16px); filter: brightness(0.72); }
.lot-back.b2 { transform: scale(0.88) translateY(32px); filter: brightness(0.5); }
.lot-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.lot-tag { font-family: var(--mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime); border: 1px solid rgba(204,255,0,0.3); border-radius: 100px; padding: 6px 12px; }
.lot-name { font-family: var(--display); font-weight: 700; font-size: 1.9rem; letter-spacing: -0.03em; line-height: 1.04; margin: 16px 0 4px; }
.lot-region { font-family: var(--mono); font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }
.lot-species { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 12px; }
.lot-species span { font-family: var(--mono); font-size: 0.74rem; color: var(--text); border: 1px solid var(--line);
  border-radius: 100px; padding: 6px 12px; background: rgba(245,242,233,0.03); }
/* APV number + treatment type — the forestry paperwork, front and centre */
.lot-apv { display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.04em; color: var(--text); }
.lot-apv > span { color: var(--lime); }
/* sortare dimensională: G/M/S segmented bar, lime fading with size class */
.lot-sort { margin-top: 11px; }
.ls-bar { display: flex; height: 8px; border-radius: 4px; overflow: hidden; gap: 2px; }
.ls-bar i { background: var(--lime); border-radius: 2px; }
.ls-bar i.m { background: rgba(204,255,0,0.45); }
.ls-bar i.s { background: rgba(204,255,0,0.18); }
.ls-leg { margin: 7px 0 0; font-family: var(--mono); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.05em; color: var(--muted); }
/* mid-card bid history — sparkline + start price fills the dead middle */
.lot-mid { margin-top: auto; padding-top: 10px; }
.lot-chart { width: 100%; height: 34px; display: block; }
.lot-chart .lc-area { fill: rgba(204,255,0,0.08); }
.lot-chart .lc-line { fill: none; stroke: var(--lime); stroke-width: 2; stroke-linecap: round; }
.lot-hist { margin: 8px 0 0; font-family: var(--mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--muted); }
.lot-meta { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.lot-meta .k { font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin: 0 0 4px; }
.lot-meta .v { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em; color: var(--text); margin: 0; }
.lot-meta .v.lime { color: var(--lime); }
.lot-stamp { position: absolute; top: 28px; font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 8px 16px; border-radius: 12px; border: 3px solid; opacity: 0; transition: opacity .15s; }
.lot-stamp.yes { right: 26px; color: var(--lime); border-color: var(--lime); transform: rotate(12deg); }
.lot-stamp.no { left: 26px; color: #e0795f; border-color: #e0795f; transform: rotate(-12deg); }
.swipe-actions { display: flex; gap: 16px; justify-content: center; margin-top: 26px; }
/* done state: keep the rows in flow but invisible — heights stay constant, no layout jump */
.swipe-actions.ghost, .swipe-counter.ghost { visibility: hidden; }
.swipe-btn { width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--line); background: rgba(245,242,233,0.03);
  color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .25s var(--ease); }
.swipe-btn:hover { transform: translateY(-3px) scale(1.05); }
.swipe-btn.no:hover { border-color: #e0795f; color: #e0795f; }
.swipe-btn.yes:hover { border-color: var(--lime); color: var(--lime); }
.swipe-counter { font-family: var(--mono); font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 18px; letter-spacing: 0.06em; }
.swipe-done { position: absolute; inset: 0; border-radius: 28px; border: 1px solid rgba(204,255,0,0.25);
  background: linear-gradient(168deg, rgba(204,255,0,0.06), rgba(17,15,12,0.9)); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 30px; gap: 12px; }
.swipe-done h3 { font-family: var(--display); font-weight: 700; font-size: 1.7rem; letter-spacing: -0.03em; margin: 0; }
.swipe-done p { color: var(--muted); margin: 0; font-size: 0.98rem; }
.swipe-done .watched { font-family: var(--display); font-weight: 700; font-size: 3.4rem; color: var(--lime); letter-spacing: -0.04em; line-height: 1; }
.swipe-done .btn { margin-top: 10px; }

/* ---- Cream engine panel — eyebrow contrast fixed (review §4) ---- */
.paper { background: var(--cream); color: var(--cream-ink); border-radius: 40px; }
.paper .eyebrow { color: var(--lime-deep); }
.paper .h2 { color: var(--cream-ink); }
.paper .lead { color: var(--cream-muted); }
.engine-head { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 40px; align-items: center; }

/* ===== F1 — Benefits radial (Framer prototype): toggle + sonar leaf + 6 callouts ===== */
#ecosystem { overflow: clip; }
.aud-toggle { display: inline-flex; gap: 6px; margin-top: 32px; padding: 6px;
  border: 1px solid var(--line); border-radius: 100px; background: rgba(19,18,16,0.6); }
.eco-tab { font-family: var(--mono); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); background: transparent; border: none;
  border-radius: 100px; padding: 10px 20px; cursor: pointer; transition: color .25s, background .25s; }
.eco-tab:hover { color: var(--text); }
.eco-tab.on { color: var(--ink); background: var(--lime); }
/* radial stage: centre emblem + breathing sonar rings */
.ben-stage { position: relative; height: 560px; max-width: 1240px; margin: 20px auto 0; }
.ben-core, .ben-core > * { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.ben-core { width: 0; height: 0; }
.ben-ring { border-radius: 50%; pointer-events: none; animation: benBreath 5.5s ease-in-out infinite; }
.ben-ring.r1 { width: 220px; height: 220px; background: rgba(204,255,0,0.045); }
.ben-ring.r2 { width: 370px; height: 370px; background: rgba(204,255,0,0.026); animation-delay: .7s; }
.ben-ring.r3 { width: 520px; height: 520px; background: rgba(204,255,0,0.015); animation-delay: 1.4s; }
@keyframes benBreath { 50% { transform: translate(-50%,-50%) scale(1.06); } }
/* slow dashed orbit around the rings */
.ben-orbit { width: 470px; height: 470px; pointer-events: none; animation: orbitSpin 60s linear infinite; }
.ben-orbit circle { fill: none; stroke: rgba(245,242,233,0.22); stroke-width: 0.35; stroke-dasharray: 1.2 5.5; }
@keyframes orbitSpin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
/* one-shot ping when the audience switches (element re-keyed on tab change) */
.ben-ping { width: 90px; height: 90px; border-radius: 50%; border: 1px solid rgba(204,255,0,0.5);
  opacity: 0; pointer-events: none; animation: benPulse 1s var(--ease) forwards; }
@keyframes benPulse { 0% { opacity: .7; transform: translate(-50%,-50%) scale(.4); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(3.4); } }
.ben-stage:not(.in-view) .ben-ring, .ben-stage:not(.in-view) .ben-orbit { animation-play-state: paused; }
.oc-leaf { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; color: var(--lime);
  background: rgba(204,255,0,0.10); border: 1px solid rgba(204,255,0,0.25); animation: ocpulse 3.4s var(--ease) infinite; }
@keyframes ocpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(204,255,0,0.16); } 50% { box-shadow: 0 0 30px 6px rgba(204,255,0,0.10); } }
/* active-audience label under the leaf (re-keyed on tab change) */
.ben-aud { font-family: var(--mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--lime); white-space: nowrap; opacity: 0;
  animation: audIn .4s var(--ease) .1s forwards; }
@keyframes audIn { from { opacity: 0; transform: translate(-50%,-50%) translateY(62px); }
  to { opacity: 1; transform: translate(-50%,-50%) translateY(54px); } }
/* six fixed callout slots, re-staggered on audience switch (container is keyed) */
.ben-callout { position: absolute; width: 260px; display: flex; flex-direction: column; gap: 10px;
  align-items: flex-start; animation: benIn .45s var(--ease) backwards; transition: opacity .35s; }
.ben-callouts.dim .ben-callout:not(.hl) { opacity: 0.55; }
.ben-callout .bc-ic { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  color: var(--lime); background: rgba(204,255,0,0.07); border: 1px solid rgba(204,255,0,0.16);
  transition: background .35s, color .35s, border-color .35s, box-shadow .35s; }
.ben-callout .bc-tx { display: flex; flex-direction: column; }
.ben-callout .bc-n { display: inline-block; font-family: var(--mono); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; color: rgba(204,255,0,0.5); margin-right: 9px; vertical-align: 2px; }
.ben-callout .bc-lead { font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: -0.01em; color: rgba(245,242,233,0.85); transition: color .35s; }
.ben-callout .bc-sub { margin: 4px 0 0; font-size: 0.88rem; line-height: 1.5; color: var(--muted); }
/* dotted leader toward the centre (cl = left column, cr = right column) */
.ben-callout .bc-tail { position: absolute; top: 20px; display: flex; align-items: center;
  color: rgba(245,242,233,0.5); transition: color .35s; pointer-events: none; }
.ben-callout .bc-tail .tl { width: 104px; height: 1px;
  background-image: linear-gradient(90deg, currentColor 0 4px, transparent 4px 9px); background-size: 9px 1px; }
.ben-callout .bc-tail .td { width: 6px; height: 6px; border-radius: 50%; background: currentColor;
  box-shadow: 0 0 8px rgba(245,242,233,0.35); }
.ben-callout.cl .bc-tail { left: calc(100% + 12px); flex-direction: row; }
.ben-callout.cr .bc-tail { right: calc(100% + 12px); flex-direction: row-reverse; }
/* highlighted stop of the tour (auto-advance or hover) */
.ben-callout.hl .bc-ic { background: var(--lime); color: var(--ink); border-color: var(--lime);
  box-shadow: 0 6px 26px rgba(204,255,0,0.25); }
.ben-callout.hl .bc-lead { color: var(--text); }
.ben-callout.hl .bc-tail { color: rgba(204,255,0,0.9); }
.ben-callout.s1 { left: 4%; top: 3%; animation-delay: .03s; }
.ben-callout.s2 { right: 4%; top: 3%; animation-delay: .09s; }
.ben-callout.s3 { left: 2%; top: 40%; animation-delay: .15s; }
.ben-callout.s4 { right: 2%; top: 40%; animation-delay: .21s; }
.ben-callout.s5 { left: 9%; top: 77%; animation-delay: .27s; }
.ben-callout.s6 { right: 9%; top: 77%; animation-delay: .33s; }
@keyframes benIn { from { opacity: 0; transform: translateY(10px); } }
.eco-regions { text-align: center; margin-top: 26px; }
/* dashed stem tying the region strip back to the radial */
.eco-regions::before { content: ''; display: block; width: 1px; height: 32px; margin: 0 auto 14px;
  background-image: linear-gradient(180deg, rgba(245,242,233,0.25) 0 4px, transparent 4px 9px); background-size: 1px 9px; }
.eco-rg-cap { font-family: var(--mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.rg-stack { display: flex; flex-direction: row; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; }
.rg { padding: 8px 18px; border-radius: 100px; border: 1px solid var(--line); font-family: var(--display);
  font-weight: 600; font-size: 0.95rem; color: var(--muted); opacity: 0.5; transition: color .4s var(--ease), opacity .4s var(--ease), border-color .4s; }
.rg.active { color: var(--text); opacity: 1; border-color: var(--lime); box-shadow: 0 0 0 1px rgba(204,255,0,0.2); }

/* ===== R2 (Robinhood) — full-bleed lime education block ===== */
.lime-block { background: var(--lime); overflow: hidden; position: relative;
  --text: var(--ink); --muted: rgba(11,10,8,0.64); --line: rgba(11,10,8,0.16); }
.lb-inner { padding: 110px 0 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.lime-block .eyebrow { color: var(--ink); }
.lime-block .h2 { color: var(--ink); }
.lime-block .lead { color: rgba(11,10,8,0.66); }
.btn-ink { display: inline-flex; align-items: center; gap: 10px; margin-top: 36px;
  background: var(--ink); color: var(--cream); text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: 16px 30px; border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.btn-ink:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(11,10,8,0.32); }
.lb-phone { margin-top: 70px; height: 300px; }  /* block overflow:hidden crops the rest — phone "rises" */
.lb-phone .phone3d { margin: 0 auto; }

/* E2 — stats strip on the cream sheet (big serif count-up numbers) */
.stats-sec { padding: 0 0 30px; }
.stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 54px 0; }
.stat-n { font-family: var(--editorial); font-style: italic; font-weight: 600;
  font-size: clamp(2.6rem, 4.5vw, 4rem); line-height: 1; letter-spacing: -0.02em; color: var(--text); }
.stat-l { font-family: var(--mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--lime-deep); margin-top: 10px; }
.stat-d { font-size: 0.95rem; line-height: 1.55; color: var(--muted); margin: 12px 0 0; max-width: 34ch; }

/* E6 — interactive pipeline stack: hovered stage lifts, the rest dim */
.iso-l, .iso-lab { transition: opacity .3s var(--ease), transform .3s var(--ease), color .25s; }
.iso-lab { cursor: default; }
/* R5 — stack assembles bottom-up once .iso gains .assembled (React-owned state).
   Keyframes (not transition-delay) so E6 hover transitions stay instant afterwards. */
.iso .iso-l, .iso .iso-lab { opacity: 0; }
.iso.assembled .iso-l { opacity: 1; animation: isoIn .5s var(--ease) backwards; }
.iso.assembled .iso-lab { opacity: 1; animation: isoLabIn .5s var(--ease) backwards; }
.iso.assembled .iso-l:nth-child(1), .iso.assembled .iso-lab:nth-child(1) { animation-delay: .42s; } /* top layer lands last */
.iso.assembled .iso-l:nth-child(2), .iso.assembled .iso-lab:nth-child(2) { animation-delay: .3s; }
.iso.assembled .iso-l:nth-child(3), .iso.assembled .iso-lab:nth-child(3) { animation-delay: .18s; }
.iso.assembled .iso-l:nth-child(4), .iso.assembled .iso-lab:nth-child(4) { animation-delay: .06s; }
@keyframes isoIn { from { opacity: 0; transform: translate3d(18px, -40px, 0) rotateX(56deg) rotateZ(-45deg); } }
@keyframes isoLabIn { from { opacity: 0; transform: translateY(10px); } }
/* E6 — hovered stage lifts along the iso axis, the rest dim (post-assembly) */
.iso.assembled .iso-l.on { transform: rotateX(56deg) rotateZ(-45deg) translateZ(18px); }
.iso.assembled .iso-l.dim { opacity: 0.4; }
.iso-lab.on { color: var(--lime-deep); }
.iso-lab.on .ln { background: var(--lime-deep); }
.iso-lab.dim { opacity: 0.45; }

/* ===== Phase 3 #14 — Tonal arc (dark → cream → dark) =====
   Engine + BentoProof + Faq become one cream "paper sheet"; dark cards inside pop.
   Flip the semantic tokens; token-driven selectors re-skin automatically. */
.arc { background: var(--cream); border-radius: 56px; margin: 0 14px;
  --text: var(--cream-ink); --muted: var(--cream-muted); --line: var(--cream-line);
  color: var(--text); }   /* set color so cream-ink cascades to inherited-color children (h2 etc.) */
.arc .eyebrow { color: var(--lime-deep); }
.arc .rail i { color: rgba(26,22,17,0.35); }              /* .rail i hard-codes light ink */
/* MANDATORY: Engine's own cream card dissolves into the sheet (no card-in-card) */
.arc .paper { background: transparent; border-radius: 0; }
/* FAQ lime → lime-deep for AA contrast on cream */
.arc .faq-q:hover { color: var(--lime-deep); }
.arc .faq-sign::before, .arc .faq-sign::after { background: var(--lime-deep); }
/* trim the joint padding so the sheet isn't inflated at the seams */
.arc > .section:first-child { padding-top: 100px; }
.arc > .section:last-child { padding-bottom: 100px; }

/* ghost button on cream (variant did not exist) */
.btn-ghost.on-paper { color: var(--cream-ink); border-color: var(--cream-line); }
.btn-ghost.on-paper:hover { border-color: var(--lime-deep); color: var(--lime-deep); }

/* ---- Isometric pipeline stack (Phase 2 #11, River) ---- */
.iso { display: flex; align-items: center; gap: 26px; justify-content: flex-end; }
.iso-stage { position: relative; width: 190px; height: 240px; perspective: 800px; }
.iso-l { position: absolute; left: 20px; width: 150px; height: 150px; border-radius: 10px;
  transform: rotateX(56deg) rotateZ(-45deg); box-shadow: 0 18px 30px rgba(26,22,17,0.18); }
.iso-l.iso1 { bottom: 0;    background: linear-gradient(135deg, #33502F, #243A22); }
.iso-l.iso2 { bottom: 46px; background: linear-gradient(135deg, #4A7C59, #3A6147); }
.iso-l.iso3 { bottom: 92px; background: linear-gradient(135deg, #8AB320, #6E9410); }
.iso-l.iso4 { bottom: 138px; background: linear-gradient(135deg, #CCFF00, #B2E000); }
.iso-labs { display: flex; flex-direction: column-reverse; gap: 26px; }
.iso-lab { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(26,22,17,0.72); white-space: nowrap; }
.iso-lab .ln { width: 26px; height: 1px; background: rgba(26,22,17,0.35); }

/* ---- Product-moment cards (Phase 2 #7, Lumio) ---- */
.pm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 54px; }
.pm-card { display: flex; flex-direction: column; border-radius: 24px; padding: 26px 24px 20px;
  background: linear-gradient(170deg, #20251c, #121410 70%); border: 1px solid rgba(204,255,0,0.10);
  box-shadow: 0 24px 60px rgba(26,22,17,0.22); color: var(--text);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s; }
.pm-card:hover { transform: translateY(-6px); border-color: rgba(204,255,0,0.28); box-shadow: 0 34px 80px rgba(26,22,17,0.3); }
.pm-title { font-family: var(--display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.02em; margin: 0 0 18px; }
.pm-mock { display: flex; flex-direction: column; gap: 9px; border-radius: 16px; padding: 16px;
  background: rgba(245,242,233,0.035); border: 1px solid rgba(245,242,233,0.08); min-height: 168px; justify-content: center; }
.pm-d { color: var(--muted); font-size: 0.92rem; line-height: 1.55; margin: 16px 0 18px; }
.pm-n { margin-top: auto; text-align: center; font-family: var(--mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,242,233,0.4); padding-top: 14px;
  border-top: 1px solid rgba(245,242,233,0.07); }
/* discreet idle float once revealed, staggered per card (negative delays = offset phases) */
@keyframes pmFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.pm-card.reveal.in { animation: pmFloat 7s ease-in-out infinite; }
.pm-grid article:nth-child(2).reveal.in { animation-delay: -2.3s; }
.pm-grid article:nth-child(3).reveal.in { animation-delay: -4.6s; }
.pm-card:hover { animation-play-state: paused; }
/* 01 — APV file row */
.pm-file { display: flex; align-items: center; gap: 10px; background: rgba(245,242,233,0.05); border: 1px solid rgba(245,242,233,0.1);
  border-radius: 12px; padding: 11px 12px; }
.pm-fic { color: var(--muted); display: inline-flex; }
.pm-fname { font-family: var(--mono); font-size: 0.78rem; color: var(--text); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pm-verified { display: inline-flex; align-items: center; gap: 5px; font-family: var(--mono); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); background: var(--lime); border-radius: 100px; padding: 4px 9px;
  opacity: 0; transform: scale(0.7); }
.reveal.in .pm-verified { animation: pop-in .45s var(--ease) .9s forwards; }
@keyframes pop-in { to { opacity: 1; transform: scale(1); } }
.pm-ai, .pm-endcap { display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--lime); }
.pm-publish { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 3px;
  font-family: var(--mono); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--lime); color: var(--ink); border-radius: 100px; padding: 10px 14px; }
.pm-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pm-chips span { font-family: var(--mono); font-size: 0.7rem; color: var(--muted); border: 1px solid rgba(245,242,233,0.12);
  border-radius: 100px; padding: 5px 10px; }
/* 02 — live bids */
.pm-live { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.pm-firms { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.04em; color: var(--muted); }
.pm-chart { width: 100%; height: 44px; display: block; }
.pm-chart .pc-area { fill: rgba(204,255,0,0.09); }
.pm-chart .pc-line { fill: none; stroke: var(--lime); stroke-width: 2; stroke-linecap: round; }
.pm-bid { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 0.82rem; color: var(--muted);
  background: rgba(245,242,233,0.04); border: 1px solid rgba(245,242,233,0.08); border-radius: 10px; padding: 9px 12px; opacity: 0; transform: translateY(8px); }
.pm-bid strong { font-family: var(--display); font-weight: 700; font-size: 0.95rem; color: var(--text); letter-spacing: -0.01em; }
.pm-bid span { display: inline-flex; align-items: center; gap: 6px; }
.pm-bid.you { border-color: rgba(204,255,0,0.35); background: rgba(204,255,0,0.07); color: var(--lime); }
.pm-bid.you strong { color: var(--lime); }
.reveal.in .pm-bid.b1 { animation: bid-in .4s var(--ease) .55s forwards; }
.reveal.in .pm-bid.b2 { animation: bid-in .4s var(--ease) .85s forwards; }
.reveal.in .pm-bid.b3 { animation: bid-in .4s var(--ease) 1.2s forwards; }
@keyframes bid-in { to { opacity: 1; transform: translateY(0); } }
/* 03 — settlement */
.pm-line { display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; color: var(--muted);
  padding: 9px 2px; border-bottom: 1px solid rgba(245,242,233,0.07); }
.pm-line strong { font-family: var(--display); font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.pm-line.zero strong { color: var(--lime); }
.pm-line.total { border-bottom: none; padding-top: 12px; }
.pm-line.total span { color: var(--text); font-weight: 600; }
.pm-line.total strong { font-size: 1.35rem; color: var(--lime); }

/* ---- Bento (proof — honest version, absorbs Advantages; review §1,2) ---- */
.bento-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.bento-head .h2 { max-width: 20ch; }
.bento-head .lead { margin-top: 16px; max-width: 46ch; }
.bento2 { display: grid; grid-template-columns: 1.08fr 0.9fr 1.12fr; gap: 14px; }
.bcol { display: flex; flex-direction: column; gap: 14px; }
.bcol > .b2:last-child { flex: 1; }   /* columns end flush — last card absorbs the slack */
.b2 { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(31,28,22,0.6), rgba(17,15,12,0.7)); backdrop-filter: blur(14px); }
.b2-img { background: #110f0c; }
.b2-img > img.bgimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.b2-shade { position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, rgba(11,10,8,0.45) 0%, transparent 32%, transparent 52%, rgba(11,10,8,0.86) 100%); }
.b2-in { position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%; padding: 24px; }
.b2-eye { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,242,233,0.82); }
.b2-eye svg { width: 11px; height: 11px; fill: rgba(245,242,233,0.6); }
.b2-eye.center { justify-content: center; }
.b2-title { font-family: var(--display); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.03em; line-height: 1.08; margin: 0; color: #fff; }
.b2-foot { margin-top: auto; }
.bA { min-height: 564px; }
.b2-mech { margin-top: 16px; border-top: 1px solid rgba(255,255,255,0.16); }
.b2-row { display: grid; grid-template-columns: 22px 1fr; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.10); font-family: var(--mono); font-size: 0.8rem; color: rgba(255,255,255,0.92); }
.b2-row:last-child { border-bottom: none; }
.b2-row .ic { color: var(--lime); display: inline-flex; }
.bB { min-height: 250px; padding: 0; }
.bB .b2-in { padding: 26px; }
.b2-quote { font-size: 1.02rem; line-height: 1.55; color: rgba(255,255,255,0.92); margin: 18px 0 0; }
.b2-by { margin-top: 18px; font-size: 0.9rem; color: rgba(255,255,255,0.55); }
.b2-by strong { color: #fff; font-weight: 700; }
.bC { min-height: 300px; display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    radial-gradient(80% 70% at 50% 38%, rgba(204,255,0,0.10), transparent 62%),
    linear-gradient(165deg, rgba(31,28,22,0.6), rgba(17,15,12,0.7)); }
/* F5 (prototype) — the number is drawn in halftone dots (hero's signature), rays behind */
.bC { position: relative; }
.bC::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-conic-gradient(from 0deg at 50% 42%, rgba(204,255,0,0.055) 0deg 3deg, transparent 3deg 13deg);
  -webkit-mask-image: radial-gradient(62% 58% at 50% 42%, #000 8%, transparent 70%);
  mask-image: radial-gradient(62% 58% at 50% 42%, #000 8%, transparent 70%); }
.bC > div { position: relative; z-index: 1; }
.bC .m { font-family: var(--display); font-weight: 700; font-size: clamp(4.5rem, 9vw, 6.6rem); line-height: 0.85; letter-spacing: -0.05em;
  --dotc: var(--lime);
  background-image: radial-gradient(circle, var(--dotc) 1.7px, transparent 2px);
  background-size: 7px 7px;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent; }
.bC .m.dropping { --dotc: #e0795f; }      /* broker-cut red while counting down */
.bC .ms { margin: 14px 0 0; font-size: 0.95rem; color: rgba(255,255,255,0.6); max-width: 24ch; }
/* bD — future app map UI: pulsing user dot + price pins over terrain texture */
.bD { min-height: 430px; }
.bD .bgimg { opacity: 0.6; }
.map-scene { position: absolute; inset: 44px 0 110px 0; z-index: 1; pointer-events: none; }
.mp-you { position: absolute; left: 46%; top: 47%; display: grid; place-items: center; }
.mp-you .mp-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 3px rgba(204,255,0,0.25), 0 0 18px rgba(204,255,0,0.55); }
.mp-you .mp-ring { position: absolute; width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid rgba(204,255,0,0.55); animation: mpPulse 2.6s ease-out infinite; }
@keyframes mpPulse { from { transform: scale(1); opacity: .8; } to { transform: scale(7.5); opacity: 0; } }
.mp-you b { position: absolute; top: calc(100% + 9px); font-family: var(--mono); font-size: 0.6rem;
  font-weight: 700; letter-spacing: 0.14em; color: var(--lime); }
.mp-pin { position: absolute; font-family: var(--mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em;
  color: var(--lime); background: rgba(11,10,8,0.72); border: 1px solid rgba(204,255,0,0.25);
  border-radius: 100px 100px 100px 4px; padding: 5px 10px; backdrop-filter: blur(4px); }
.mp-pin small { color: rgba(245,242,233,0.5); font-size: 0.82em; font-weight: 500; }
.mp-pin.hot { display: inline-flex; align-items: center; gap: 5px; background: var(--lime); color: var(--ink);
  border-color: var(--lime); box-shadow: 0 8px 26px rgba(204,255,0,0.3); }
.mp-pin.p1 { left: 10%; top: 10%; }
.mp-pin.p2 { right: 10%; top: 22%; }
.mp-pin.p3 { right: 16%; top: 66%; }
.mp-pin.p4 { left: 14%; top: 72%; }
.mp-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: #F5F2E9; border: 1px solid rgba(245,242,233,0.3); border-radius: 100px; padding: 9px 15px;
  background: rgba(11,10,8,0.5); backdrop-filter: blur(6px); }
.mp-cta > span { color: var(--lime); }   /* navigation icon in lime, like the app chip */
/* bE — Robinhood-style waiting list queue */
.bE { min-height: 240px; padding: 0; }
.bE .b2-in { padding: 26px; }
.b2-arrow { position: absolute; top: 22px; right: 24px; color: rgba(255,255,255,0.6); z-index: 3; }
.queue { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.q-row { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 0.74rem;
  font-weight: 700; letter-spacing: 0.04em; color: rgba(245,242,233,0.45);
  border: 1px solid rgba(245,242,233,0.1); border-radius: 10px; padding: 8px 12px;
  background: rgba(245,242,233,0.03); }
.q-row .q-n { color: rgba(245,242,233,0.6); }
.q-row.you { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.q-row.you .q-n { color: var(--ink); }
@keyframes qIn { from { opacity: 0; transform: translateY(8px); } }
.reveal.in .q-row:nth-child(1) { animation: qIn .4s var(--ease) .25s backwards; }
.reveal.in .q-row:nth-child(2) { animation: qIn .4s var(--ease) .45s backwards; }
.reveal.in .q-row:nth-child(3) { animation: qIn .4s var(--ease) .65s backwards; }
.q-copy { margin: 12px 0 0; font-size: 0.86rem; line-height: 1.5; color: rgba(255,255,255,0.55); }
.q-cta { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; color: var(--lime);
  font-weight: 600; font-size: 0.92rem; }
.q-cta:hover { text-decoration: underline; }

/* ---- FAQ ---- */
.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; background: none; border: none;
  color: var(--text); cursor: pointer; text-align: left; padding: 26px 0; font-family: var(--display); font-weight: 600;
  font-size: 1.22rem; letter-spacing: -0.02em; transition: color .25s; }
.faq-q:hover { color: var(--lime); }
.faq-sign { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-sign::before, .faq-sign::after { content: ''; position: absolute; background: var(--lime); transition: transform .3s var(--ease); }
.faq-sign::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-sign::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-sign::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-in { padding: 0 60px 26px 0; color: var(--muted); font-size: 1.02rem; line-height: 1.65; }

/* ---- CTA / Waitlist ---- */
.cta { text-align: center; }
.cta .big { font-family: var(--editorial); font-style: italic; font-weight: 600; font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  line-height: 1.08; letter-spacing: -0.02em; max-width: 16ch; margin: 0 auto 14px; }
.cta .lead { margin: 0 auto 36px; text-align: center; }
.cta .eyebrow { justify-content: center; display: inline-flex; }
.wl-roles { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 18px; }
.wl-role { padding: 10px 18px; border-radius: 100px; border: 1px solid var(--line); background: transparent;
  color: var(--muted); font-family: var(--mono); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; cursor: pointer; transition: all .25s; }
.wl-role:hover { color: var(--text); border-color: rgba(245,242,233,0.25); }
.wl-role.on { background: var(--lime); color: var(--ink); border-color: transparent; }
.wl-input { height: 58px; padding: 0 22px; border-radius: 100px; border: 1px solid var(--line);
  background: rgba(245,242,233,0.04); color: var(--text); font-family: var(--body); font-size: 1.02rem; outline: none; transition: border-color .3s; }
.wl-input:focus { border-color: var(--lime); }
.wl-input::placeholder { color: var(--muted); }
.cta .btn-lg { margin-top: 44px; }
.wl-fine { text-align: center; font-size: 0.82rem; color: var(--muted); margin: 16px 0 0; }
.wl-fine a { text-decoration: underline; text-underline-offset: 3px; }
.wl-done { max-width: 560px; margin: 44px auto 0; text-align: center; padding: 44px; border: 1px solid rgba(204,255,0,0.25);
  border-radius: 28px; background: linear-gradient(165deg, rgba(204,255,0,0.06), rgba(17,15,12,0.6)); }
.wl-check { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%;
  background: var(--lime); color: var(--ink); margin-bottom: 18px; box-shadow: 0 0 30px rgba(204,255,0,0.35); }
.wl-done h3 { font-family: var(--display); font-weight: 700; font-size: 1.8rem; letter-spacing: -0.03em; margin: 0 0 10px; }
.wl-done p { color: var(--muted); font-size: 1.02rem; margin: 0; }
.wl-done strong { color: var(--text); }

/* ---- Quick-join modal — instant capture from every CTA on the page ---- */
.qj-modal { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), visibility 0s linear .28s; }
.qj-modal.on { opacity: 1; visibility: visible; transition: opacity .28s var(--ease); }
.qj-backdrop { position: absolute; inset: 0; background: rgba(11,10,8,0.78); backdrop-filter: blur(10px); }
.qj-panel { position: relative; z-index: 1; width: min(460px, 100%); max-height: calc(100vh - 48px); overflow-y: auto;
  padding: 40px 36px; border-radius: 28px; border: 1px solid rgba(204,255,0,0.22);
  background: linear-gradient(165deg, rgba(204,255,0,0.07), #14120e 60%);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
  transform: translateY(14px) scale(0.97); transition: transform .28s var(--ease); }
.qj-modal.on .qj-panel { transform: translateY(0) scale(1); }
.qj-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; color: var(--muted); background: rgba(245,242,233,0.06); border: none; }
.qj-close:hover { color: var(--text); background: rgba(245,242,233,0.12); }
.qj-title { font-family: var(--display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.03em; margin: 8px 0 6px; }
.qj-lead { color: var(--muted); font-size: 0.94rem; margin: 0 0 24px; }
.qj-roles { justify-content: flex-start; margin-bottom: 16px; }
.qj-input { width: 100%; margin-bottom: 14px; }
.qj-submit { width: 100%; justify-content: center; }
.qj-done { max-width: none; margin: 0; padding: 8px; border: none; background: none; }
.qj-input + .qj-input { margin-top: 0; }   /* the two stacked inputs share the 14px gap below each */
.qj-pos { font-family: var(--display); font-weight: 700; font-size: 3.4rem; line-height: 1;
  letter-spacing: -0.04em; color: var(--lime); margin: 4px 0 12px; }
.qj-err { margin: 12px 0 0; text-align: center; font-size: 0.88rem; color: #e0795f; }
.qj-submit:disabled { opacity: 0.65; cursor: default; transform: none; }
/* honeypot: visually gone, still in the form for bots */
.qj-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
/* referral link box on the success screen — the highest-intent moment to share */
.qj-refbox { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(245,242,233,0.1); }
.qj-refbox-lbl { margin: 0 0 12px; font-size: 0.86rem; line-height: 1.5; color: var(--muted); }
.qj-reflink-row { display: flex; gap: 8px; }
.qj-reflink { flex: 1; min-width: 0; height: 46px; padding: 0 16px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(245,242,233,0.04); color: var(--text);
  font-family: var(--mono); font-size: 0.8rem; outline: none; text-overflow: ellipsis; }
.qj-copy { height: 46px; padding: 0 18px; font-size: 0.86rem; white-space: nowrap; flex: 0 0 auto; }
@media (max-width: 480px) {
  .qj-panel { padding: 32px 22px; border-radius: 24px; }
  .qj-roles { justify-content: center; }
}

/* ---- Closing echo (Phase 1 #4, River) ---- */
.echo { padding: 140px 0 120px; text-align: center; position: relative; overflow: hidden; }
/* F3 (prototype) — multiplayer cursors drifting at the waitlist edges */
.cta { position: relative; }
.wl-cursors { position: absolute; inset: 0; pointer-events: none; display: none; }
@media (min-width: 1001px) { .wl-cursors { display: block; } }
.wl-cur { position: absolute; display: inline-flex; align-items: flex-start; gap: 2px; color: var(--lime); }
.wl-cur svg { transform: rotate(-12deg); }
.wl-cur i { font-style: normal; font-family: var(--mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 5px 11px; border-radius: 100px 100px 100px 4px; margin-top: 13px;
  background: var(--lime); color: var(--ink); }
.wl-cur.c2 i, .wl-cur.c3 i { background: rgba(19,18,16,0.85); color: var(--text); border: 1px solid var(--line); }
.wl-cur.c2, .wl-cur.c3 { color: rgba(245,242,233,0.75); }
.wl-cur.c1 { left: 9%; top: 24%; animation: curDrift1 13s ease-in-out infinite; }
.wl-cur.c2 { right: 8%; top: 18%; animation: curDrift2 16s ease-in-out infinite; }
.wl-cur.c3 { right: 13%; bottom: 16%; animation: curDrift3 19s ease-in-out infinite; }
@keyframes curDrift1 { 0%,100% { transform: translate(0,0); } 33% { transform: translate(26px,-14px); } 66% { transform: translate(-12px,18px); } }
@keyframes curDrift2 { 0%,100% { transform: translate(0,0); } 40% { transform: translate(-30px,16px); } 75% { transform: translate(14px,-10px); } }
@keyframes curDrift3 { 0%,100% { transform: translate(0,0); } 30% { transform: translate(18px,12px); } 65% { transform: translate(-22px,-16px); } }

/* R6 (Robinhood) — wind-combed tick field; masked clear of the centre so the line stays crisp */
.echo::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(204,255,0,0.06) 0 1px, transparent 1px 13px),
    repeating-linear-gradient(65deg, rgba(245,242,233,0.04) 0 1px, transparent 1px 17px);
  -webkit-mask-image: radial-gradient(58% 75% at 50% 50%, transparent 32%, #000 80%);
  mask-image: radial-gradient(58% 75% at 50% 50%, transparent 32%, #000 80%); }
.echo .wrap { position: relative; }
.echo-leaf { width: 38px; height: 38px; margin-bottom: 26px; opacity: 0.9; }
.echo-line { font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  letter-spacing: -0.04em; line-height: 1.06; margin: 0; color: var(--text); }
.echo-line em { font-family: var(--editorial); font-style: italic; font-weight: 500; color: var(--lime); }

/* ---- Footer ---- */
.rh-footer { background: var(--lime); color: var(--ink); padding: 84px 0 0; overflow: hidden; position: relative; }
.rh-foot-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start; }
.rh-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.rh-col { display: flex; flex-direction: column; gap: 14px; }
.rh-col-head { font-family: var(--display); font-weight: 700; font-size: 1.02rem; margin: 0 0 6px; color: var(--ink); }
.rh-col-link { font-size: 0.96rem; line-height: 1.2; color: rgba(11,10,8,0.82); width: fit-content; transition: color .15s var(--ease); }
.rh-col-link:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.rh-fine { display: flex; flex-direction: column; gap: 18px; }
.rh-fine p { margin: 0; font-size: 0.84rem; line-height: 1.55; color: rgba(11,10,8,0.74); max-width: 62ch; }
.rh-wordmark { font-family: var(--display); font-weight: 700; color: var(--ink);
  font-size: 100px; line-height: 0.8; letter-spacing: -0.04em; white-space: nowrap;
  text-align: center; margin-top: 56px; transform: translateY(14%); user-select: none; }

/* ---- Reveal — tightened from 1s to .6s (review §5) ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .25s; }
.reveal.d4 { transition-delay: .34s; } /* heading first, cards after (Phase 1 #6) */

/* ---- Reduced motion (review §5: previously missing) ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
  .scroll-hint::after { animation: none; }
  .hero-sub .caret { animation: none; opacity: 0; }
  .hero-sub .sub-rest { opacity: 1; transition: none; }
  .hero-phone { transform: none !important; }
  .fillwords .fw { transition: none; }
  .pm-verified, .pm-bid { opacity: 1 !important; transform: none !important; animation: none !important; }
  .pm-card.reveal.in { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .lot-card.nudge { animation: none; }
  .btn, .phone3d, .chip { transition: none; }
  .hero-capture .btn-primary { animation: none; }
  .nav-mobile { transition: none; }
  .qj-modal, .qj-panel { transition: none; }
  /* benefits radial: rings and leaf at rest, callouts shown instantly */
  .ben-ring, .oc-leaf, .ben-callout, .ben-orbit, .ben-ping, .ben-aud { animation: none; }
  .ben-aud { opacity: 1; }
  .ben-ping { display: none; }
  .ben-callouts.dim .ben-callout { opacity: 1; }
  .wl-cur { animation: none; }
  .iso .iso-l, .iso .iso-lab { opacity: 1; transition: none; animation: none; }
  .iso.assembled .iso-l.on { transform: rotateX(56deg) rotateZ(-45deg); } /* keep iso pose, no lift */
  .bn-item, .bn-item::before, .bn-glyph, .bn-ghost .bg-n, .bn-fix { transition: none; }
  .bn-fix { opacity: 1; color: var(--text); }
  .hp-pin { transition: none; }
  .mp-ring { display: none; }               /* map: static user dot, no radar pulse */
  .q-row { animation: none !important; }    /* queue rows shown instantly */
  .swipe-toast { animation: none; }         /* notification toast appears without slide */
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }   /* CTA moves into the fullscreen menu below the burger */
  .nav-burger { display: flex; }
  .section { padding: 90px 0; }
  .hero-ticker { gap: 24px; }
  .hero-capture { flex-direction: column; }
  .hero-capture .btn { justify-content: center; }
  .paper { border-radius: 28px; }
  /* benefits radial: emblem on top, callouts collapse to an icon-left list */
  .ben-stage { height: auto; padding-top: 250px; }
  .ben-core { top: 125px; }
  .ben-ring.r1 { width: 150px; height: 150px; }
  .ben-ring.r2 { width: 230px; height: 230px; }
  .ben-ring.r3 { width: 310px; height: 310px; }
  .ben-orbit { width: 290px; height: 290px; }
  .ben-callouts { display: flex; flex-direction: column; gap: 18px; }
  .ben-callout { position: static; width: auto; flex-direction: row; gap: 12px; animation-delay: 0s; }
  .ben-callout .bc-ic { flex: 0 0 auto; }
  .ben-callout .bc-tail { display: none; }        /* connectors are a desktop device */
  .ben-callouts.dim .ben-callout { opacity: 1; }  /* no dimming while reading a stacked list */
  .aud-toggle { width: 100%; justify-content: center; }
  .eco-tab { padding: 9px 12px; font-size: 0.68rem; white-space: nowrap; }
  .eco-regions { text-align: center; }
  .stats-strip { grid-template-columns: 1fr; gap: 34px; padding: 44px 0; }
  /* engine head: stack on mobile (was overflowing at 2 columns) */
  .engine-head { grid-template-columns: 1fr; gap: 30px; }
  .iso { justify-content: center; flex-wrap: wrap; min-width: 0; }
  .lb-inner { padding: 80px 0 0; }
  .lb-phone { margin-top: 50px; height: 230px; }
  /* let pm-cards shrink below their nowrap rows; truncate instead of overflowing */
  .pm-card { min-width: 0; }
  .pm-bid, .pm-line, .pm-file { min-width: 0; }
  .pm-bid span:first-child, .pm-line span:first-child { flex: 1; min-width: 0;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .show-row, .show-row.flip .show-text { grid-template-columns: 1fr; order: 0; }
  .show-phone { order: -1; }
  .show-list { gap: 70px; }
  .bento2 { grid-template-columns: 1fr; }
  .bento-head { flex-direction: column; }
  .bA { min-height: 460px; }
  .bD { min-height: 340px; }
  .bn-grid { grid-template-columns: 1fr; }
  .bn-item + .bn-item { border-left: none; }
  .bn-top { margin-bottom: 28px; }
  /* no hover on touch: answer line always lit */
  .bn-fix { opacity: 1; color: var(--text); }
  .bn-ghost { margin-bottom: 20px; }
  .swipe, .faq { grid-template-columns: 1fr; gap: 40px; }
  .swipe-cards { width: 88vw; max-width: 360px; }
  .lot-chart { height: 36px; }
  /* mobile: toast as bottom snackbar so the fixed nav can't cover it */
  .swipe-toast { top: auto; bottom: 10px; animation-name: toastInUp; }

  .engine-head { grid-template-columns: 1fr; gap: 32px; }
  .iso { justify-content: flex-start; }
  .iso-stage { width: 160px; height: 210px; }
  .iso-l { width: 124px; height: 124px; }
  .pm-grid { grid-template-columns: 1fr; }
  .hero-phone { width: 250px; margin: 60px auto -220px; }
  .hero-phone .phone3d { width: 250px; }
  .rh-foot-top { grid-template-columns: 1fr; gap: 48px; }
  .rh-cols { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
