/* New.Moat — design system */

:root {
  --bg: #F8F6EE;
  --bg-elev: #FCFAF3;
  --bg-tint: #EFEBDC;
  --ink: #0E2A1F;
  --ink-700: #1F4533;
  --ink-500: #5B6E62;
  --ink-400: #94A299;
  --ink-300: #C9CFC9;
  --rule: #DED8C2;
  --rule-strong: #C4BCA1;
  --accent: #A8862F;
  --accent-hover: #8A6E22;
  --accent-tint: #F1E7C6;
  --crimson: #A31621;
  --crimson-tint: #F9EAEA;
  --live: #2F7A4B;
  --max: 720px;
  --max-wide: 1200px;
  --pad: 32px;

  --font-sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.wrap-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 80px 0; border-top: 1px solid var(--rule); }
.section:first-of-type { border-top: none; }

/* Top cohort status bar — gives the "live, ongoing" feel */
.cohortbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.cohortbar-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  height: 34px;
}
.cohortbar .cb-item { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 1100px) {
  .cohortbar .cb-hide-md { display: none; }
}
@media (max-width: 720px) {
  .cohortbar .cb-hide-sm { display: none; }
  .cohortbar-inner { gap: 10px; font-size: 11px; }
}
.cohortbar .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.cohortbar .sep { color: #525252; }
.cohortbar .label { color: #A3A3A3; }
.cohortbar .val { color: #fff; }
.cohortbar .meter {
  display: inline-flex; align-items: center; gap: 8px;
}
.cohortbar .meter-track {
  width: 80px; height: 4px; background: #262626; border-radius: 2px; overflow: hidden;
}
.cohortbar .meter-fill {
  height: 100%; background: var(--accent); width: 72%;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Main nav */
.nav {
  position: sticky;
  top: 34px;
  z-index: 30;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .mark {
  width: 22px; height: 22px;
  background: var(--ink);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}
.nav-logo .dot { color: var(--accent); margin: 0 -1px; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px;
  color: var(--ink-700);
  position: relative;
}
.nav-link {
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 200ms ease;
  z-index: 2;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); }
.nav-pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 34px;
  border-radius: 999px;
  background: var(--bg-tint);
  border: 1px solid var(--rule);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform-origin: left center;
  transition:
    transform 380ms cubic-bezier(.22,.8,.22,1),
    width 380ms cubic-bezier(.22,.8,.22,1),
    opacity 220ms ease;
}
.nav-pill.visible { opacity: 1; }
.nav-links.has-hover .nav-cta { transition: color 200ms ease; }
.nav-cta-wrap {
  margin-left: 12px;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
.nav-cta {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 500;
  border: 0;
  transition: background 120ms ease;
}
.nav-cta:hover { background: #1f1f1f; }
@media (max-width: 720px) {
  .nav-links .hide-sm { display: none; }
}

/* Typography */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}
.eyebrow .acc { color: var(--accent); }
h1, h2, h3 { margin: 0; font-weight: 500; }
.h1 {
  font-family: var(--font-sans);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.h2 em.acc { font-style: normal; color: var(--accent); }
.subhead {
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink-700);
  font-weight: 400;
}
p { margin: 0 0 18px 0; }
.body p { font-size: 18px; line-height: 1.65; color: var(--ink-700); }
.body p strong { color: var(--ink); font-weight: 600; }
.body p + p { margin-top: 18px; }
.tercet > div { line-height: 1.7; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, transform 80ms ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-primary:active { transform: translateY(1px); }
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover { background: var(--accent-tint); }
.btn-lg { font-size: 17px; padding: 16px 28px; }
.btn .arrow { transition: transform 140ms ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

/* Hero */
.hero {
  padding-top: 64px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 32px;
}
.live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  padding: 3px 8px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bg-elev);
}
.live-pill .pulse {
  width: 6px; height: 6px; background: var(--live); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55); }
  70% { box-shadow: 0 0 0 5px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.hero h1 { margin-top: 0; }
.hero .h1-break { display: block; }
.hero-subhead { margin-top: 28px; max-width: 560px; }
.hero-ctas { margin-top: 48px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas .btn { flex: 1; justify-content: center; }
.hero-foot {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  max-width: 640px;
}
.hero-foot .credit {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
  max-width: 480px;
}
.hero-foot .credit strong { color: var(--ink-700); font-weight: 500; }
.hero-foot .stamp {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-400);
  text-align: right;
  line-height: 1.6;
}
.hero-foot .stamp .ok { color: var(--live); }

/* Recent activity ticker */
.ticker {
  margin-top: 56px;
  max-width: 780px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--bg-elev);
  overflow: hidden;
}
.ticker-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-tint);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ticker-head .dot {
  width: 7px; height: 7px; background: var(--live); border-radius: 50%;
  display: inline-block; margin-right: 8px;
  animation: pulse-green 2s infinite;
  vertical-align: middle;
}
.ticker-list {
  list-style: none; margin: 0; padding: 0;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  position: absolute; left: 0; right: 0; top: 0;
  animation: tick 22s linear infinite;
}
.ticker-list:hover .ticker-track { animation-play-state: paused; }
@keyframes tick {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.ticker-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--rule);
}
.ticker-item:last-child { border-bottom: none; }
.ticker-item .who { color: var(--ink); font-weight: 500; }
.ticker-item .what { color: var(--ink-500); font-family: var(--font-mono); font-size: 13px; }
.ticker-item .when { color: var(--ink-400); font-family: var(--font-mono); font-size: 12px; white-space: nowrap; }

.hero-visual-hidden { display: none; }
.interlude { padding: 80px 0; }
.interlude-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
@media (max-width: 880px) {
  .interlude-grid { grid-template-columns: 1fr; }
}
.interlude-credit { margin-top: 28px; padding-top: 28px; }
.hero-tagline {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent-tint);
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
  max-width: 100%;
}
.hero-tagline strong {
  color: var(--accent-hover);
  font-weight: 600;
}
.hero-tagline .ht-bar {
  width: 3px;
  height: 22px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .hero-tagline { font-size: 15px; padding: 12px 18px 12px 14px; }
}

/* Immersive hero photo */
.hero-immersive {
  margin-top: 72px;
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.hero-immersive image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  --is-bg: var(--bg-tint);
  --is-border: transparent;
}
.hero-immersive-caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(14, 42, 31, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #F1E7C6;
  text-transform: uppercase;
  pointer-events: none;
}
.hero-immersive-caption .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #A8862F;
  box-shadow: 0 0 0 0 rgba(168, 134, 47, 0.6);
  animation: pulse 2.2s infinite;
}
@media (max-width: 720px) {
  .hero-immersive image-slot { aspect-ratio: 4 / 5; }
}

/* Hero photo collage */
.hero-photos {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.hero-photos image-slot {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  --is-bg: var(--bg-tint);
  --is-border: var(--rule);
}
.hero-photos .hp-label {
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  pointer-events: none;
  z-index: 2;
}
.hp-wrap { position: relative; }
@media (max-width: 720px) {
  .hero-photos { grid-template-columns: repeat(2, 1fr); }
}

/* Operator photo grid (Fold 9) */
.op-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 720px) {
  .op-grid { grid-template-columns: repeat(3, 1fr); }
}
.op-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-elev);
}
.op-card image-slot {
  aspect-ratio: 1 / 1;
  --is-bg: var(--bg-tint);
  --is-border: transparent;
}
.op-card .op-meta {
  padding: 10px 12px;
  border-top: 1px solid var(--rule);
}
.op-card .op-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.op-card .op-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero split layout w/ product visual */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: 2; }
}
.hero-visual {
  position: relative;
  margin-top: 12px;
}
.product-card {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: 0 30px 60px -30px rgba(10,10,10,0.18), 0 1px 0 rgba(255,255,255,0.5) inset;
  position: relative;
}
.product-card .pc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-tint);
  border-radius: 14px 14px 0 0;
}
.pc-head .dots { display: inline-flex; gap: 6px; }
.pc-head .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--rule-strong); display: inline-block; }
.pc-head .dots span:first-child { background: #ED6A5E; }
.pc-head .dots span:nth-child(2) { background: #F5BF50; }
.pc-head .dots span:nth-child(3) { background: #61C455; }
.pc-head .title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pc-head .live { font-family: var(--font-mono); font-size: 11px; color: var(--live); display: inline-flex; align-items: center; gap: 6px; }
.pc-head .live .d { width: 6px; height: 6px; border-radius: 50%; background: var(--live); animation: pulse-green 2s infinite; }

.pc-body { padding: 18px; }
.pc-section + .pc-section { margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--rule); }
.pc-row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; }
.pc-row .k { font-family: var(--font-mono); font-size: 11px; color: var(--ink-500); letter-spacing: 0.04em; text-transform: uppercase; }
.pc-row .v { font-family: var(--font-sans); font-size: 14px; color: var(--ink); font-weight: 500; }
.pc-row .v.acc { color: var(--accent); }
.pc-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  background: var(--accent-tint); color: var(--accent);
  font-weight: 500;
}
.eval-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed var(--rule);
}
.eval-row:last-child { border-bottom: none; }
.eval-row .ek {
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 500;
}
.eval-row .ev {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}
.eval-row .ev strong { color: var(--ink); font-weight: 600; }
.eval-row .et {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--accent-tint);
  white-space: nowrap;
}
.pc-report {
  margin-top: 14px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--bg-tint);
}
.pc-report .rl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  text-transform: uppercase;
}
.pc-report .rb {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 4px;
}

.pc-overlay {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px -20px rgba(10,10,10,0.4);
  max-width: 260px;
}
@media (max-width: 980px) { .pc-overlay { position: relative; bottom: 0; right: 0; margin-top: 16px; max-width: none; } }
.pc-overlay .lab {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #A3A3A3; margin-bottom: 6px;
}
.pc-overlay .line { font-size: 14px; line-height: 1.4; }
.pc-overlay .line strong { color: var(--accent); font-weight: 500; }

/* Hero photo slot (replaces product card) */
.hero-photo-slot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 60px -30px rgba(10,10,10,0.18);
}
.hero-photo-slot image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  --is-bg: var(--bg-tint);
  --is-border: transparent;
}
.hero-photo-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(14, 42, 31, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #F1E7C6;
  text-transform: uppercase;
  pointer-events: none;
}
.hero-photo-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(168, 134, 47, 0.6);
  animation: pulse 2.2s infinite;
  flex-shrink: 0;
}

/* Centered hero layout */
.hero-centered {
  text-align: center;
  max-width: 760px;
}
.hero-centered .hero-eyebrow { justify-content: center; }
.hero-centered .h1 { font-size: 56px; }
.hero-centered .hero-tagline { margin-left: auto; margin-right: auto; }
.hero-centered .hero-subhead { max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-centered .hero-ctas { justify-content: center; }
.hero-centered .hero-ctas .btn { flex: 0 1 auto; min-width: 200px; }
@media (max-width: 720px) {
  .hero-centered .h1 { font-size: 40px; }
  .hero-centered .hero-ctas .btn { flex: 1; }
}

/* Pipeline visual (Fold 5 secondary visual) */
.pipeline {
  margin-top: 40px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--bg-elev);
  overflow: hidden;
}
.pipeline-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px;
  background: var(--bg-tint);
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink-500); text-transform: uppercase;
}
.pipeline-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
@media (max-width: 720px) { .pipeline-body { grid-template-columns: 1fr 1fr; } }
.pipe-step {
  padding: 22px 18px;
  border-right: 1px solid var(--rule);
  position: relative;
  cursor: pointer;
  transition: background 140ms ease;
}
.pipe-step:hover { background: var(--bg-tint); }
.pipe-step.active { background: #fff; }
.pipe-step:last-child { border-right: none; }
@media (max-width: 720px) {
  .pipe-step:nth-child(2) { border-right: none; }
  .pipe-step:nth-child(1), .pipe-step:nth-child(2) { border-bottom: 1px solid var(--rule); }
}
.pipe-step .pn {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent);
  letter-spacing: 0.06em; font-weight: 500;
}
.pipe-step .pt {
  margin-top: 8px; font-size: 14px; color: var(--ink); font-weight: 500; line-height: 1.35;
  letter-spacing: -0.005em;
}
.pipe-step .pc {
  margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em;
  color: var(--ink-500); text-transform: uppercase;
}
.pipe-step.active .pn { color: var(--accent); }
.pipe-step.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--accent);
}

/* AI chat preview (Fold 6) */
.fold6-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 880px) {
  .fold6-grid { grid-template-columns: 1fr 380px; gap: 56px; }
}
.chat-preview {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(10,10,10,0.2);
}
.chat-preview .pc-head { background: var(--ink); border-bottom: 1px solid #262626; }
.chat-preview .pc-head .title { color: #A3A3A3; }
.chat-preview .pc-head .live { color: #4ADE80; }
.chat-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; min-height: 280px; }
.bubble {
  max-width: 88%;
  padding: 10px 13px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 10px;
}
.bubble.ai {
  align-self: flex-start;
  background: var(--bg-tint);
  border: 1px solid var(--rule);
  color: var(--ink);
  border-radius: 10px 10px 10px 2px;
}
.bubble.you {
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
  border-radius: 10px 10px 2px 10px;
}
.bubble .who {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.55;
  margin-bottom: 4px;
}
.typing {
  display: inline-flex; gap: 4px; padding: 6px 4px;
}
.typing span { width: 6px; height: 6px; background: var(--ink-400); border-radius: 50%; animation: bounce 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-3px); opacity: 1; }
}
.chat-foot {
  border-top: 1px solid var(--rule);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
}
.chat-foot input {
  flex: 1; border: 0; background: transparent; padding: 6px 0;
  font-family: var(--font-sans); font-size: 14px; color: var(--ink-500);
  outline: none;
}
.chat-foot .send-btn {
  width: 30px; height: 30px; border-radius: 7px; border: 0;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Fold 9 — richer logo chips with wordmark feel */
.logo-chip-wm {
  flex-shrink: 0;
  height: 56px;
  min-width: 156px;
  padding: 0 28px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--bg-elev);
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  color: var(--ink);
  white-space: nowrap;
  position: relative;
  transition: all 200ms ease;
  opacity: 0.92;
}
.logo-chip-wm .lc-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.logo-chip-wm .lc-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-400);
  text-transform: uppercase;
  margin-top: 2px;
}
.logo-strip:hover .logo-chip-wm { opacity: 1; }
.logo-chip-wm:hover { border-color: var(--ink-300); transform: translateY(-1px); }
.logo-strip { height: 100px; }

/* Stat strip above Fold 9 logos */
.proof-stats {
  margin: 24px auto 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 720px) { .proof-stats { grid-template-columns: 1fr 1fr; } }
.proof-stat {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--rule);
}
.proof-stat:last-child { border-right: none; }
@media (max-width: 720px) {
  .proof-stat:nth-child(2) { border-right: none; }
  .proof-stat:nth-child(1), .proof-stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
}
.proof-stat .ps-num {
  font-family: var(--font-sans);
  font-size: 36px; font-weight: 600; letter-spacing: -0.025em;
  color: var(--ink); line-height: 1;
}
.proof-stat .ps-num .acc { color: var(--accent); }
.proof-stat .ps-cap {
  margin-top: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--ink-500); text-transform: uppercase;
}

/* Final CTA visual — calendar / availability */
.final-vis {
  margin: 40px auto 0;
  max-width: 480px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--bg-elev);
  padding: 18px;
  text-align: left;
}
.final-vis .fv-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.final-vis .fv-head .lab { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--ink-500); text-transform: uppercase; }
.final-vis .fv-head .live { font-family: var(--font-mono); font-size: 11px; color: var(--live); display: inline-flex; align-items: center; gap: 6px; }
.final-vis .fv-head .live .d { width: 6px; height: 6px; border-radius: 50%; background: var(--live); animation: pulse-green 2s infinite; }
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.slot {
  padding: 10px 6px; border: 1px solid var(--rule); border-radius: 7px;
  font-family: var(--font-mono); font-size: 11px; text-align: center;
  color: var(--ink-700);
}
.slot.open { border-color: var(--accent); color: var(--accent); background: var(--accent-tint); }
.slot.full { opacity: 0.45; text-decoration: line-through; }
.final-vis .fv-foot {
  margin-top: 12px; font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-500); letter-spacing: 0.04em; text-align: center;
}
.foldnav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-end;
}
.foldnav .fn-row {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.foldnav .fn-label {
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
  background: var(--ink);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}
.foldnav .fn-row:hover .fn-label { opacity: 1; transform: translateX(0); }
.foldnav .fn-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-300);
  border: 1px solid var(--ink-300);
  transition: all 180ms ease;
  flex-shrink: 0;
}
.foldnav .fn-row.active .fn-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-color: var(--accent);
}
.foldnav .fn-row:hover .fn-dot { background: var(--ink); border-color: var(--ink); }
@media (max-width: 980px) { .foldnav { display: none; } }

/* Animated counter */
.counter {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* Fold 2 — market */
.market-card {
  margin-top: 32px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--bg-elev);
  overflow: hidden;
}
.market-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-tint);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.market-card-head .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  display: inline-block; margin-right: 8px; vertical-align: middle;
}
.market-card-body {
  padding: 28px 22px 26px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 640px) {
  .market-card-body { grid-template-columns: 1fr; gap: 24px; }
}
.market-num {
  font-family: var(--font-sans);
  font-size: 88px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--accent);
}
@media (max-width: 640px) { .market-num { font-size: 64px; } }
.market-num-cap {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.65;
}
.demand-supply { display: flex; flex-direction: column; gap: 18px; }
.ds-row { display: flex; flex-direction: column; gap: 6px; }
.ds-row .ds-label {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ds-row .ds-val { color: var(--ink); font-weight: 500; }
.ds-bar {
  height: 12px;
  background: var(--bg-tint);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.ds-fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  transition: width 1400ms cubic-bezier(.2,.7,.2,1);
  border-radius: 6px;
}
.ds-fill.supply { background: var(--ink-300); }
.ds-row.in .ds-fill { width: var(--w); }

/* Fold 3 — blind spot */
.blind-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) {
  .blind-grid { grid-template-columns: 1fr; gap: 32px; }
}
.giant-num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 160px;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--ink);
  display: block;
}
.giant-num .pct { color: var(--accent); }
@media (max-width: 760px) { .giant-num { font-size: 120px; } }
.role-list {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--rule);
}
.role-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-700);
}
.role-row .role-stat {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  color: var(--ink-500);
}
.role-row .role-stat .mark {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px;
  background: var(--bg-tint);
  border: 1px solid var(--rule);
  color: var(--live);
  font-size: 11px;
  font-weight: 600;
}
.role-row.miss { color: var(--ink); }
.role-row.miss > span:first-child { text-decoration: line-through; text-decoration-color: var(--crimson); }
.role-row.miss .mark {
  background: var(--crimson-tint);
  border-color: var(--crimson);
  color: var(--crimson);
}
.role-row.miss .role-stat { color: var(--crimson); font-weight: 500; }

/* Folds 4 + 5 — interactive accordion */
.pair-tabs {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 6px;
  background: var(--bg-elev);
}
@media (max-width: 720px) {
  .pair-tabs { grid-template-columns: repeat(4, 1fr); padding: 4px; gap: 4px; }
}
.pair-tab {
  background: transparent;
  border: 0;
  padding: 10px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-500);
  border-radius: 7px;
  text-align: center;
  cursor: pointer;
  transition: all 140ms ease;
}
.pair-tab:hover { background: var(--bg-tint); color: var(--ink); }
.pair-tab.active {
  background: var(--ink);
  color: #fff;
}
.pair-tab.step.active {
  background: var(--accent);
}
.pair-tab {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.pair-tab .ptn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

.pair-panel {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--bg-elev);
  overflow: hidden;
  min-height: 320px;
  animation: fade-in 280ms ease;
}
.pair-panel-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px;
  background: var(--bg-tint);
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pair-panel-head .badge {
  display: inline-flex; align-items: center; padding: 3px 8px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
}
.pair-panel.step .pair-panel-head .badge { background: var(--accent); }
.pair-panel-body {
  padding: 28px 28px 28px;
}
.pair-title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 18px 0;
  line-height: 1.25;
}
.pair-copy p { font-size: 17px; color: var(--ink-700); margin: 0 0 10px; line-height: 1.65; }
.pair-meta {
  margin-top: 20px;
  display: flex; gap: 8px; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}
.pair-meta .arrow { color: var(--accent); font-weight: 500; }
.pair-meta a { color: var(--accent); cursor: pointer; }
.pair-meta a:hover { text-decoration: underline; }

/* Fold 5 climax with portrait */
.climax-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: stretch;
  background: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  padding: 24px;
  color: #fff;
}
@media (max-width: 540px) {
  .climax-grid { grid-template-columns: 64px 1fr; gap: 16px; padding: 20px; }
}
.portrait {
  width: 96px; height: 96px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #2a2a2a;
}
.portrait image-slot {
  width: 100%; height: 100%;
  --is-bg: #1a1a1a;
  --is-border: #2a2a2a;
  --is-text: #737373;
}
@media (max-width: 540px) { .portrait { width: 64px; height: 64px; font-size: 8px; } }
.portrait .ini {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
@media (max-width: 540px) { .portrait .ini { font-size: 18px; } }
.climax-grid .climax-content {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
}
.climax-grid .quote {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
@media (max-width: 540px) { .climax-grid .quote { font-size: 22px; } }
.climax-grid .by {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #A3A3A3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-big {
  font-family: var(--font-sans);
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  display: inline-block;
}
.stat-big .acc { color: var(--accent); }
.stat-row {
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
  padding: 32px 0 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}
.stat-row .stat-cap {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tercet {
  margin: 32px 0;
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.tercet div { color: var(--ink-700); font-size: 18px; }
.punchline {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 32px;
  text-wrap: balance;
}
.footnote {
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.7;
}
.footnote sup { color: var(--accent); }

/* Fold 3 — blind spot */
.coda {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.coda-center {
  text-align: center;
}
.coda div {
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.coda div + div { margin-top: 4px; }

/* Folds 4 & 5 — blocks */
.blocks { margin-top: 48px; display: flex; flex-direction: column; gap: 48px; }
.block {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.block:last-child { border-bottom: none; padding-bottom: 0; }
.block .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  padding-top: 4px;
  line-height: 1.5;
}
.block.step .num { color: var(--accent); font-weight: 500; }
.block .title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.block .copy {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
}
.block .copy p { margin: 0; }
.block .copy p + p { margin-top: 10px; }
@media (max-width: 640px) {
  .block { grid-template-columns: 1fr; gap: 8px; }
  .block .num { padding-top: 0; }
}

/* Fold 5 — climax line */
.climax {
  margin-top: 56px;
  padding: 28px 32px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.climax .quote {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.climax .by {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #A3A3A3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Fold 6 — 0-friction */
.fold6 { background: var(--bg-tint); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.fold6-inner { text-align: left; }
.fold6 .standalone {
  margin: 40px 0;
  padding: 24px 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.fold6 .cta-row { margin-top: 40px; display: flex; justify-content: flex-start; }
.fold6 .below-cta {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* Fold 7 — pricing */
.pricing-table {
  margin-top: 40px;
  border-top: 1px solid var(--rule-strong);
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 17px;
  position: relative;
}
.pricing-row .label { color: var(--ink); }
.pricing-row .value {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.pricing-row.featured .label { font-weight: 500; }
.pricing-row.featured .value {
  color: var(--accent);
  font-weight: 600;
  font-size: 18px;
}
.pricing-row .check { color: var(--accent); font-size: 18px; }
.pricing-tag {
  display: inline-block;
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
}
.pricing-meta {
  margin-top: 24px;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}
.pricing-meta .dot { color: var(--ink-300); }
.pricing-meta .ok-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--live);
  display: inline-block;
  animation: pulse-green 2s infinite;
}

/* Fold 8 — filter */
.filter-final {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 14px;
}
.filter-final .line {
  font-size: 19px;
  color: var(--ink-700);
  line-height: 1.5;
  text-wrap: balance;
}
.filter-final .punch {
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

/* Filter fold — yes/no grid */
.filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .filter-grid { grid-template-columns: 1fr; }
}
.filter-col {
  border-radius: 12px;
  padding: 24px;
}
.filter-yes {
  background: #EEF4EE;
  border: 1px solid #C2D9C2;
}
.filter-no {
  background: var(--surface);
  border: 1px solid var(--rule);
}
.filter-col-head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.filter-yes .filter-col-head { color: #2D6A2D; }
.filter-no .filter-col-head  { color: var(--ink-400); }
.filter-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-700);
  margin-bottom: 12px;
}
.filter-row:last-child { margin-bottom: 0; }
.filter-icon {
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}
.filter-yes .filter-icon { color: #2D6A2D; }
.filter-no  .filter-icon { color: var(--crimson); }
.filter-cta {
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.filter-cta .punch {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

/* Fold 9 — social proof */
.logo-strip {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 80px;
  display: flex; align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logo-track {
  display: flex; align-items: center; gap: 64px;
  animation: scroll-x 36s linear infinite;
  flex-shrink: 0;
  padding-right: 64px;
}
.logo-strip:hover .logo-track { animation-play-state: paused; }
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-chip {
  flex-shrink: 0;
  height: 32px;
  min-width: 120px;
  padding: 0 22px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--bg-elev);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 160ms ease;
  white-space: nowrap;
}
.logo-strip:hover .logo-chip { opacity: 0.9; }
.fold9-cap-top { text-align: center; font-size: 18px; color: var(--ink-700); }
.fold9-cap-bot { text-align: center; font-size: 16px; color: var(--ink-500); margin-top: 24px; text-wrap: balance; }

/* Fold 10 — final */
.final {
  text-align: center;
}
.final h2 { font-size: 40px; }
.final .lede {
  margin-top: 16px;
  font-size: 20px;
  color: var(--ink-700);
}
.final .cta-row {
  margin-top: 48px;
  display: flex; justify-content: center;
}

/* Footer */
.footer {
  border-top: 1px solid var(--rule);
  background: var(--bg);
  padding: 80px 0 56px;
}
.footer-grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand .nav-logo { font-size: 18px; }
.footer-tag {
  margin-top: 16px;
  font-size: 15px;
  color: var(--ink-700);
  max-width: 320px;
  line-height: 1.55;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.footer-col a, .footer-col .text {
  display: block;
  font-size: 14px;
  color: var(--ink-700);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--ink); }
.footer-thesis {
  max-width: var(--max-wide);
  margin: 56px auto 0;
  padding: 32px var(--pad) 0;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  flex-wrap: wrap;
}
.footer-thesis .thesis {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.7;
}
.footer-thesis .copyright {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-400);
}

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade-in 180ms ease;
}
@keyframes fade-in { from { opacity: 0 } to { opacity: 1 } }
@keyframes slide-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(36px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hero entrance — fires immediately on load */
.js-loaded .hero-eyebrow {
  animation: hero-enter 0.6s cubic-bezier(0.44, 0, 0.56, 1) both;
  animation-delay: 0.05s;
}
.js-loaded .hero h1 {
  animation: hero-enter 0.65s cubic-bezier(0.44, 0, 0.56, 1) both;
  animation-delay: 0.15s;
}
.js-loaded .hero-subhead {
  animation: hero-enter 0.65s cubic-bezier(0.44, 0, 0.56, 1) both;
  animation-delay: 0.28s;
}
.js-loaded .hero-tagline {
  animation: hero-enter 0.65s cubic-bezier(0.44, 0, 0.56, 1) both;
  animation-delay: 0.38s;
}
.js-loaded .hero-ctas {
  animation: hero-enter 0.6s cubic-bezier(0.44, 0, 0.56, 1) both;
  animation-delay: 0.45s;
}
.js-loaded .hero-foot {
  animation: hero-enter 0.6s cubic-bezier(0.44, 0, 0.56, 1) both;
  animation-delay: 0.55s;
}

/* Nav entrance */
.js-loaded .nav {
  animation: hero-enter 0.5s cubic-bezier(0.44, 0, 0.56, 1) both;
  animation-delay: 0s;
}
.js-loaded .cohortbar {
  animation: fade-in 0.4s ease both;
}
.modal {
  width: 100%;
  max-width: 520px;
  background: var(--bg-elev);
  border-radius: 14px;
  border: 1px solid var(--rule);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10, 10, 10, 0.25), 0 1px 0 rgba(255,255,255,0.5) inset;
  animation: slide-up 240ms cubic-bezier(.2,.8,.2,1);
  max-height: 90vh;
  display: flex; flex-direction: column;
}
.modal-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-tint);
}
.modal-head .live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-500);
  letter-spacing: 0.04em;
}
.modal-head .live .dot {
  width: 6px; height: 6px; background: var(--live); border-radius: 50%;
  animation: pulse-green 2s infinite;
}
.modal-head .close {
  border: 0; background: transparent;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-500); border-radius: 6px;
}
.modal-head .close:hover { background: var(--rule); color: var(--ink); }
.modal-body { padding: 24px 22px 22px; overflow-y: auto; }
.modal-body .ai-row {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px;
}
.modal-body .ai-av {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 7px;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px;
}
.modal-body .ai-msg {
  background: var(--bg-tint);
  border: 1px solid var(--rule);
  border-radius: 10px 10px 10px 2px;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.modal-body .ai-msg .who {
  display: block;
  font-family: var(--font-mono); font-size: 10px; color: var(--ink-500);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 6px;
}
.field { margin-bottom: 14px; }
.field-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.field-label .req { color: var(--accent); }
.field-input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 13px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.field-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.field-segments { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.field-seg {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  transition: all 120ms ease;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.field-seg:hover { border-color: var(--ink-400); color: var(--ink); }
.field-seg.on {
  border-color: var(--accent);
  background: var(--accent-tint);
  color: var(--ink);
  font-weight: 500;
}
.field-seg .tick {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid var(--ink-300);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.field-seg.on .tick { border-color: var(--accent); background: var(--accent); color: #fff; }
.field-seg.on .tick::after {
  content: "";
  width: 4px; height: 4px; background: #fff; border-radius: 50%;
}

/* Simple list-style radio options */
.field-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--rule-strong); border-radius: 10px; overflow: hidden; background: #fff; }
.field-row {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 13px 16px;
  border: none;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  transition: background 100ms ease;
  width: 100%;
}
.field-row:last-child { border-bottom: none; }
.field-row:hover { background: var(--bg-tint); }
.field-row.on { background: var(--accent-tint); font-weight: 500; }
.field-row-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid var(--ink-300);
  flex-shrink: 0;
  transition: all 100ms ease;
  position: relative;
}
.field-row.on .field-row-dot {
  border-color: var(--accent);
  background: var(--accent);
}
.field-row.on .field-row-dot::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px;
  background: #fff; border-radius: 50%;
}
.field-row-sub { font-size: 13px; color: var(--ink-400); font-weight: 400; margin-left: 4px; }
.modal-foot {
  padding: 16px 22px;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--bg);
}
.modal-foot .note {
  font-size: 12px;
  color: var(--ink-500);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.modal-submit {
  background: var(--accent); color: #fff;
  border: 0;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.modal-submit:hover { background: var(--accent-hover); }
.modal-submit:disabled { background: var(--ink-300); cursor: not-allowed; }
.success {
  text-align: center;
  padding: 16px 8px 8px;
}
.success .check {
  width: 44px; height: 44px; margin: 0 auto 14px;
  background: var(--accent-tint); color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.success h4 { margin: 0 0 8px 0; font-size: 18px; font-weight: 600; }
.success p { font-size: 14px; color: var(--ink-700); margin: 0 0 4px; }

/* Folds 4+5 merged — contrast panel (mistake vs fix) */
.contrast-panel {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  animation: fade-in 280ms ease;
  min-height: 320px;
}
@media (max-width: 720px) {
  .contrast-panel { grid-template-columns: 1fr; }
}
.contrast-side {
  padding: 28px 28px 32px;
}
.contrast-problem {
  background: #fdf2f2;
  border-right: 1px solid #e8c8c8;
}
@media (max-width: 720px) {
  .contrast-problem { border-right: none; border-bottom: 1px solid #e8c8c8; }
}
.contrast-fix {
  background: #f2f8f2;
  border-left: 1px solid #c2d9c2;
}
@media (max-width: 720px) {
  .contrast-fix { border-left: none; }
}
.contrast-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.badge-err {
  background: var(--crimson-tint);
  color: var(--crimson);
  border: 1px solid #e8c8c8;
}
.badge-ok {
  background: #dff0df;
  color: #2D6A2D;
  border: 1px solid #c2d9c2;
}
.contrast-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 16px 0;
}
.contrast-copy p {
  font-size: 16px;
  color: var(--ink-700);
  margin: 0 0 10px;
  line-height: 1.65;
}
.contrast-copy p:last-child { margin-bottom: 0; }

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition:
    opacity 550ms cubic-bezier(0.44, 0, 0.56, 1),
    transform 550ms cubic-bezier(0.44, 0, 0.56, 1);
  will-change: opacity, transform;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger siblings */
[data-reveal].in:nth-child(2) { transition-delay: 80ms; }
[data-reveal].in:nth-child(3) { transition-delay: 160ms; }
[data-reveal].in:nth-child(4) { transition-delay: 240ms; }
[data-reveal].in:nth-child(5) { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .logo-track { animation: none; }
  .ticker-track { animation: none; }
}

/* Mobile */
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .h1 { font-size: 40px; letter-spacing: -0.02em; }
  .h2 { font-size: 28px; }
  .subhead { font-size: 18px; }
  .hero { padding-top: 48px; padding-bottom: 60px; }
  .hero-foot { grid-template-columns: 1fr; }
  .hero-foot .stamp { text-align: left; }
  .climax { padding: 22px; }
  .climax .quote { font-size: 20px; }
  .stat-big { font-size: 56px; }
  .stat-row { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .field-segments { grid-template-columns: 1fr; }
  .pricing-row { grid-template-columns: 1fr; }
  .pricing-row .value { font-size: 15px; }
  .nav-cta { font-size: 12px; padding: 7px 12px; }
  .nav-inner { padding: 12px 20px; }
  :root { --pad: 20px; }
  .final h2 { font-size: 32px; }
  .footer-thesis { flex-direction: column; align-items: flex-start; }
}

/* Static fallback hidden once React mounts */
.js-loaded #static-content { display: none; }
#static-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px;
  font-size: 16px;
  color: var(--ink-700);
}
#static-content h1 { font-size: 36px; color: var(--ink); margin: 0 0 16px; font-weight: 600; }
#static-content h2 { font-size: 22px; color: var(--ink); margin: 32px 0 8px; font-weight: 500; }
#static-content p { margin: 8px 0; }
