/* ============================================================================
   POST — Post Exit Founders · Landing page
   The cinematic, scroll-driven experience. Built on brand/tokens.css.
   Aesthetic north star: sequel.co (cinematic restraint) — translated from cold
   glass-on-black into Post's warm paper-and-ink editorial world.
   ============================================================================ */

/* ---------------------------------------------------------------------------
   0. Reset & base
   --------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root { color-scheme: light; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* NOTE: do NOT enable "tnum" globally — this Schibsted Grotesk build's tnum
     feature inserts space before punctuation (network. → network . ). Numbers
     here are standalone display numerals, so proportional figures read fine. */
  scroll-behavior: auto;                     /* Lenis owns scrolling */
}

body {
  background: var(--post-bg);
  color: var(--post-fg);
  font-family: var(--post-sans);
  font-size: var(--post-step-0);
  line-height: var(--post-leading-body);
  /* clip (not hidden) so the body does NOT become a scroll container —
     hidden would force overflow-y:auto and nest scrolling inside <body>,
     which fights Lenis (window scroller) and breaks scroll-position sync. */
  overflow-x: clip;
}

/* When Lenis is active, body is the scroll container via window */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: color-mix(in srgb, var(--post-oxblood) 24%, transparent); color: var(--post-ink); }

/* ---------------------------------------------------------------------------
   1. Type system  (Fraunces carries emotion & size; Schibsted stays quiet)
   --------------------------------------------------------------------------- */
.display {
  font-family: var(--post-serif);
  font-variation-settings: "opsz" 144, "wght" 420, "SOFT" 0, "WONK" 0;
  font-weight: 420;
  letter-spacing: var(--post-tracking-tight);
  line-height: 1.02;
  color: var(--post-fg);
  text-wrap: balance;
}
.display em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 380, "SOFT" 0, "WONK" 1;
}

/* Fluid display steps */
.t-hero   { font-size: clamp(3.2rem, 8.4vw, 7.6rem); line-height: 0.98; }
.t-xl     { font-size: clamp(2.3rem, 4.8vw, 4.4rem); }
.t-lg     { font-size: clamp(1.95rem, 3.8vw, 3.3rem); }
.t-md     { font-size: clamp(1.55rem, 2.8vw, 2.5rem); line-height: 1.08; }

.eyebrow {
  font-family: var(--post-sans);
  font-size: clamp(0.7rem, 0.86vw, 0.8rem);
  letter-spacing: var(--post-tracking-label);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--post-fg-faint);
}

.lead {
  font-family: var(--post-sans);
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  line-height: 1.5;
  color: var(--post-fg-muted);
  max-width: 38ch;
  font-weight: 400;
}
.body { color: var(--post-fg-muted); max-width: var(--post-measure); }

/* The signature device — the oxblood full-stop. Always oxblood, every ground. */
.stop { color: var(--post-stop); }

/* Editorial staccato lines (the "truth" / belief copy) */
.verse {
  font-family: var(--post-serif);
  font-variation-settings: "opsz" 72, "wght" 380, "SOFT" 0, "WONK" 0;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--post-fg);
}
.verse .muted { color: var(--post-fg-faint); }
.verse em { font-style: italic; font-variation-settings: "opsz" 72, "wght" 360, "SOFT" 0, "WONK" 1; }

/* ---------------------------------------------------------------------------
   2. Layout primitives
   --------------------------------------------------------------------------- */
.section {
  position: relative;
  padding-block: clamp(7rem, 16vh, 14rem);
  background: var(--post-bg);
  color: var(--post-fg);
}
.section--ink   { background: var(--post-ink); }
.section--tight { padding-block: clamp(5rem, 10vh, 8rem); }
[data-theme="ink"] { background: var(--post-ink); }

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--post-gutter);
}
.container--narrow { max-width: 920px; }
.measure { max-width: 60ch; }

/* hairline rule — a quiet editorial divider */
.rule { height: 1px; background: var(--post-hairline); border: 0; width: 100%; }

.eyebrow-row {
  display: flex; align-items: center; gap: 0.85rem;
  margin-bottom: clamp(1.4rem, 2.4vw, 2.2rem);
}
.eyebrow-row::before {
  content: ""; width: 1.6rem; height: 1px; background: var(--post-accent);
  opacity: 0.8; flex: none;
}
[data-theme="ink"] .eyebrow-row::before, .section--ink .eyebrow-row::before { background: var(--post-bronze); }

/* ---------------------------------------------------------------------------
   3. Buttons  (pill is Sequel's; Post keeps corners near-square + warm)
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--post-sans); font-weight: 600;
  font-size: 0.92rem; letter-spacing: 0.01em;
  padding: 0.95em 1.6em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background .4s var(--post-ease), color .4s var(--post-ease),
              border-color .4s var(--post-ease), transform .4s var(--post-ease),
              opacity .4s var(--post-ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn .btn__arrow { transition: transform .4s var(--post-ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn__label { display: inline-flex; align-items: baseline; }
.btn__stop { color: var(--post-stop); display: inline-block; transform-origin: 50% 72%; }

/* Primary — ink fill on bone */
.btn--primary { background: var(--post-ink); color: var(--post-bone); border-color: var(--post-ink); }
.btn--primary:hover { background: var(--post-ink-soft); }

/* Primary on ink grounds — bone fill */
.section--ink .btn--primary, [data-theme="ink"] .btn--primary {
  background: var(--post-bone); color: var(--post-ink); border-color: var(--post-bone);
}
.section--ink .btn--primary:hover, [data-theme="ink"] .btn--primary:hover {
  background: #fff;
}

/* Ghost — hairline outline, inherits ground */
.btn--ghost { border-color: var(--post-hairline); color: var(--post-fg); background: transparent; }
.btn--ghost:hover { border-color: var(--post-fg); background: color-mix(in srgb, var(--post-fg) 6%, transparent); }

/* Accent text-link (oxblood on bone, bronze on ink) */
.link {
  display: inline-flex; align-items: center; gap: 0.4em;
  color: var(--post-link); font-weight: 600; font-size: 0.95rem;
  border-bottom: 1px solid color-mix(in srgb, var(--post-link) 40%, transparent);
  padding-bottom: 1px; transition: border-color .35s var(--post-ease), gap .35s var(--post-ease);
}
.link:hover { border-color: var(--post-link); gap: 0.65em; }

/* ---------------------------------------------------------------------------
   4. Material  (Post's "chrome" = warm translucent paper, not cold glass)
   --------------------------------------------------------------------------- */
.material {
  background: color-mix(in srgb, var(--post-bone) 72%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(112%);
  backdrop-filter: blur(14px) saturate(112%);
  border: 1px solid var(--post-hairline);
  border-radius: 2px;
}
.section--ink .material, [data-theme="ink"] .material {
  background: color-mix(in srgb, var(--post-ink) 56%, transparent);
  border-color: color-mix(in srgb, var(--post-bone) 16%, transparent);
}

.badge {
  display: inline-flex; align-items: center;
  font-family: var(--post-sans); font-weight: 600;
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--post-fg-faint);
  padding: 0.45em 0.85em;
  border: 1px solid var(--post-hairline);
  border-radius: 2px;
}

/* ---------------------------------------------------------------------------
   5. Header / nav
   --------------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80;  /* above the menu overlay (70) so the toggle stays tappable */
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1rem, 2.2vw, 1.6rem) var(--post-gutter);
  transition: transform .5s var(--post-ease), background .5s var(--post-ease),
              border-color .5s var(--post-ease), padding .5s var(--post-ease);
  border-bottom: 1px solid transparent;
  color: var(--post-bone);                       /* over the ink hero */
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav.is-hidden { transform: translateY(-104%); }
.nav.is-solid {
  background: color-mix(in srgb, var(--post-bone) 86%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
  border-bottom-color: var(--post-hairline);
  color: var(--post-ink);
  padding-block: clamp(0.7rem, 1.4vw, 1rem);
}

.nav__brand { display: flex; align-items: center; gap: 0.6rem; flex: none; }
.nav__brand svg, .nav__brand img { height: 22px; width: auto; color: currentColor; }
.nav__wordmark { height: 22px; width: auto; }
/* swap wordmark colour-variant with the nav ground: bone letters over hero, ink letters when solid */
.nav__wordmark--bone { display: none; }
.nav.is-solid .nav__wordmark--ink { display: none; }
.nav.is-solid .nav__wordmark--bone { display: inline-block; }

.nav__tabs { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.6rem); }
.nav__tab {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.01em;
  color: currentColor; opacity: 0.82; position: relative;
  transition: opacity .3s var(--post-ease);
}
.nav__tab::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: currentColor; transition: width .35s var(--post-ease);
}
.nav__tab:hover { opacity: 1; }
.nav__tab:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 1rem; flex: none; }
.nav .btn--nav {
  padding: 0.6em 1.15em; font-size: 0.84rem;
  border: 1px solid currentColor; color: currentColor; border-radius: 2px;
  background: transparent;
}
.nav.is-solid .btn--nav { background: var(--post-ink); color: var(--post-bone); border-color: var(--post-ink); }
.nav .btn--nav:hover { background: currentColor; color: var(--post-bg); }
.nav.is-solid .btn--nav:hover { background: var(--post-ink-soft); color: var(--post-bone); }

.nav__menu-btn { display: none; }

/* ---------------------------------------------------------------------------
   6. Hero
   --------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--post-ink); color: var(--post-bone);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img, .hero__clip {
  position: absolute; inset: 0; width: 100%; height: 112%;
  object-fit: cover; object-position: center 42%;
  opacity: 0; will-change: transform;
}
.hero__media img { transition: opacity 1.2s var(--post-ease); }
.hero__clip { transition: opacity 1.2s var(--post-ease); will-change: opacity, transform; }
.hero__media img.is-poster { opacity: 1; }
.hero__clip.is-front { opacity: 1; }
.hero__media img.is-hidden { opacity: 0; }
/* warm cinematic grade + legibility scrims */
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(20,17,13,0.92) 0%, rgba(20,17,13,0.42) 34%, rgba(20,17,13,0.18) 60%, rgba(20,17,13,0.40) 100%),
    radial-gradient(120% 90% at 70% 35%, transparent 40%, rgba(20,17,13,0.5) 100%);
}
/* width/height:100% is required: an absolutely-positioned <svg> with no viewBox is a
   replaced element, so inset:0 alone leaves it at its 300x150 intrinsic size in the
   top-left corner — which showed as a grain rectangle over lighter video frames. */
.hero__grain { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; opacity: 0.16; mix-blend-mode: overlay; pointer-events: none; }

.hero__inner {
  position: relative; z-index: 2; width: 100%;
  max-width: 1280px; margin-inline: auto;
  padding: 0 var(--post-gutter) clamp(3.2rem, 9vh, 6.5rem);
}
/* the brand line is a first-impression anchor — enlarged, with "Post" carrying the weight */
.hero__eyebrow {
  font-size: clamp(0.95rem, 1.7vw, 1.4rem);
  letter-spacing: 0.16em;
  color: color-mix(in srgb, var(--post-bone) 68%, transparent);
  margin-bottom: clamp(1.5rem, 2.4vw, 2rem);
}
.hero__eyebrow-brand { color: var(--post-bone); font-weight: 700; }
.hero__title { color: var(--post-bone); max-width: 16ch; margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.hero__sub {
  color: color-mix(in srgb, var(--post-bone) 84%, transparent);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.5;
  max-width: 44ch; margin-bottom: clamp(2rem, 4vw, 2.8rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: color-mix(in srgb, var(--post-bone) 65%, transparent);
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 42px; background: currentColor; transform-origin: top; animation: scrollPulse 2.4s var(--post-ease) infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(0.3); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------------------------------------------------------------------------
   7. The Truth (editorial verse)
   --------------------------------------------------------------------------- */
.truth__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 5rem); }
.truth__head { max-width: 32rem; }
.truth__lines { display: flex; flex-direction: column; gap: clamp(1.5rem, 3.4vw, 2.6rem); max-width: 30ch; }
.truth__lines p { line-height: 1.3; }
.truth__close {
  margin-top: clamp(2rem, 4vw, 3rem); padding-top: clamp(2rem,4vw,3rem);
  border-top: 1px solid var(--post-hairline); max-width: 34ch;
}

@media (min-width: 900px) {
  .truth__grid { grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
}

/* ---------------------------------------------------------------------------
   8. What Post is — statement + proposition cards
   --------------------------------------------------------------------------- */
.statement__head { max-width: 52rem; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.statement__sub { margin-top: 1.6rem; max-width: 42ch; }

.cards { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2vw, 1.6rem); }
@media (min-width: 820px) { .cards { grid-template-columns: 1fr 1fr; } }

.card {
  position: relative; overflow: hidden; border-radius: 2px;
  border: 1px solid var(--post-hairline);
  background: var(--post-surface);
  min-height: clamp(360px, 46vw, 520px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  isolation: isolate;
}
.card__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.card__media img, .card__media video { width: 100%; height: 130%; object-fit: cover; position: absolute; inset: -15% 0 0 0; will-change: transform; }
.card__media::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,17,13,0.86), rgba(20,17,13,0.18) 55%, rgba(20,17,13,0.08));
}
.card__badge { margin-bottom: auto; }
.card__title { color: var(--post-bone); margin: clamp(8rem,18vw,12rem) 0 0.8rem; }
.card__body { color: color-mix(in srgb, var(--post-bone) 82%, transparent); max-width: 32ch; margin-bottom: 1.4rem; }
/* the badge floats over a live film frame — give it a frosted ink chip so it stays
   legible over bright passages (sunset sky) as well as dark ones, on any frame */
.card__badge .badge {
  color: var(--post-bone);
  border-color: color-mix(in srgb, var(--post-bone) 30%, transparent);
  background: color-mix(in srgb, var(--post-ink) 42%, transparent);
  -webkit-backdrop-filter: blur(7px) saturate(120%);
  backdrop-filter: blur(7px) saturate(120%);
  text-shadow: 0 1px 12px rgba(20, 17, 13, 0.55);
}

/* ---------------------------------------------------------------------------
   9. The Edge — three pillars + chapters
   --------------------------------------------------------------------------- */
.pillars { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 860px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: clamp(2rem,3vw,3.5rem); } }
.pillar { border-top: 1px solid var(--post-hairline); padding-top: 1.6rem; }
.pillar__n { font-family: var(--post-serif); font-variation-settings: "opsz" 40,"wght" 360; font-size: 0.95rem; color: var(--post-accent); margin-bottom: 1.2rem; display: block; }
.pillar__title { margin-bottom: 0.9rem; }
.pillar__body { color: var(--post-fg-muted); font-size: 1rem; max-width: 34ch; }
.section--ink .pillar__n { color: var(--post-bronze); }

/* chapters map / list */
.chapters { margin-top: clamp(4rem, 9vw, 7rem); }
.chapters__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(2rem,4vw,3rem); }
.chapters__list {
  display: grid; grid-template-columns: repeat(2, 1fr);  /* 12 cities → always fills evenly */
  gap: 1px; background: var(--post-hairline);
  border: 1px solid var(--post-hairline);
}
@media (min-width: 600px)  { .chapters__list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .chapters__list { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .chapters__list { grid-template-columns: repeat(6, 1fr); } }
.chapter {
  background: var(--post-bg); padding: 1.1rem 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.95rem; transition: background .35s var(--post-ease), color .35s var(--post-ease);
}
.section--ink .chapter { background: var(--post-ink); }
.chapter:hover { background: var(--post-ink); color: var(--post-bone); }
.section--ink .chapter:hover { background: var(--post-bone); color: var(--post-ink); }
.chapter__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--post-accent); flex: none; }
.section--ink .chapter__dot { background: var(--post-bronze); }

/* ---------------------------------------------------------------------------
   10. Manifesto set-piece (sticky pin, full-bleed zoom, 3D belief wheel)
   --------------------------------------------------------------------------- */
.manifesto { position: relative; height: 300vh; background: var(--post-ink); } /* 5 beliefs → tighter scroll */
.manifesto__stage {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: grid; place-items: center;
}
.manifesto__panel {
  position: relative; overflow: hidden;
  width: clamp(280px, 42vw, 560px); aspect-ratio: 4 / 3;
  border: 1px solid color-mix(in srgb, var(--post-bone) 16%, transparent);
  border-radius: 6px; will-change: width, height, border-radius;
}
/* three crossfading film layers — the picture travels with the manifesto */
.manifesto__media { position: absolute; inset: 0; }
.manifesto__layer {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; will-change: opacity;
  filter: brightness(0.7) saturate(1.04);
}
.manifesto__layer[data-beat="solitude"] { opacity: 1; }   /* opening beat is lit until JS takes over */
.manifesto__panel::after {
  content:""; position:absolute; inset:0; z-index: 1;
  background:
    radial-gradient(135% 120% at 50% 44%, rgba(20,17,13,0.40), rgba(20,17,13,0.88)),
    linear-gradient(180deg, rgba(20,17,13,0.34) 0%, rgba(20,17,13,0.10) 40%, rgba(20,17,13,0.52) 100%);
}
.manifesto__content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: var(--post-gutter); opacity: 0;
}
.manifesto__eyebrow { color: color-mix(in srgb, var(--post-bone) 76%, transparent); margin-bottom: clamp(2rem,5vh,3.5rem); }
.manifesto__wheel {
  position: relative;
  height: clamp(19rem, 52vh, 32rem);
  width: min(94vw, 60rem);
  perspective: 1300px;
  overflow: hidden;
  /* soft dissolve at the top/bottom edges — lines arrive and depart, never hard-clip */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 17%, #000 83%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 17%, #000 83%, transparent 100%);
}
.belief {
  position: absolute; left: 0; right: 0; top: 50%;
  max-width: min(92vw, 36rem); margin-inline: auto;   /* longer lines settle to ~2 balanced lines, centered */
  text-wrap: balance;
  font-family: var(--post-serif);
  font-variation-settings: "opsz" 120, "wght" 400, "SOFT" 0, "WONK" 0;
  font-size: clamp(1.4rem, 3.8vw, 2.5rem); line-height: 1.18; letter-spacing: -0.02em;
  color: var(--post-bone); will-change: transform, opacity, filter;
  transform-style: preserve-3d;
  /* soft legibility lift over warm/bright film passages — diffuse, reads as depth not shadow */
  text-shadow: 0 1px 34px rgba(20, 17, 13, 0.55);
}
.belief em { font-style: italic; color: var(--post-bronze); font-variation-settings: "opsz" 120,"wght" 380,"WONK" 1; }
/* the signature device — the oxblood full-stop, here as the metronome of the set-piece */
.belief__stop { color: var(--post-stop); display: inline-block; transform-origin: 50% 72%; }
.manifesto__cta { margin-top: clamp(2.5rem, 6vh, 4rem); opacity: 0; }

/* ---------------------------------------------------------------------------
   11. How it works — the full stack
   --------------------------------------------------------------------------- */
.stack__head { max-width: 52rem; margin-bottom: clamp(3rem, 6vw, 5rem); }
.stack__list { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--post-hairline); }
.stack-item {
  display: grid; grid-template-columns: 1fr; gap: 0.8rem;
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  border-bottom: 1px solid var(--post-hairline);
  align-items: start;
}
.stack-item__index { font-family: var(--post-serif); font-variation-settings:"opsz" 28,"wght" 340; color: var(--post-accent); font-size: 0.9rem; }
.section--ink .stack-item__index { color: var(--post-bronze); }
.stack-item__title { margin-bottom: 0.5rem; }
.stack-item__title em { font-style: italic; color: var(--post-fg-muted); }
.stack-item__body { color: var(--post-fg-muted); max-width: 52ch; }
.stack-item__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }

@media (min-width: 860px) {
  .stack-item { grid-template-columns: 3rem 1.1fr 1.4fr; gap: clamp(1.5rem,3vw,3rem); align-items: baseline; }
}

/* deal-flow feature row */
.dealflow {
  margin-top: clamp(3rem, 6vw, 5rem);
  border: 1px solid var(--post-hairline); border-radius: 2px;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--post-surface);
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem,4vw,3rem);
}
.section--ink .dealflow { background: var(--post-surface); }
.dealflow__classes { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap: 0.6rem; }
.dealflow__class { font-size: 0.92rem; color: var(--post-fg-muted); display: flex; align-items: center; gap: 0.55rem; }
.dealflow__class .chapter__dot { background: var(--post-accent); }
@media (min-width: 900px) { .dealflow { grid-template-columns: 0.9fr 1.1fr; align-items: center; } }

/* ---------------------------------------------------------------------------
   11b. Expert sessions — the speaker gallery (ink marquee)
   Real press headshots, unified by a warm duotone that resolves to full colour
   on hover. Auto-drifts; pauses on hover/focus; drag to scrub; degrades to a
   native horizontal-scroll strip with no JS / reduced motion.
   --------------------------------------------------------------------------- */
.speakers { overflow: hidden; }
.speakers__head { margin-bottom: clamp(2.4rem, 5vw, 3.8rem); }
.speakers__head-row { display: grid; grid-template-columns: 1fr; gap: clamp(1.2rem, 2.4vw, 2rem); align-items: end; }
@media (min-width: 900px) { .speakers__head-row { grid-template-columns: 1.25fr 0.75fr; gap: clamp(2rem, 5vw, 5rem); } }
.speakers__dek { color: color-mix(in srgb, var(--post-bone) 64%, transparent); font-size: clamp(1rem, 1.3vw, 1.16rem); line-height: 1.55; max-width: 40ch; }

.speakers__viewport {
  position: relative;
  /* soft dissolve at both edges — cards arrive and depart, never hard-clip */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
/* pan-y lets vertical swipes scroll the page; we only scrub on horizontal drag */
.speakers__viewport.is-marquee { cursor: grab; touch-action: pan-y; }
.speakers__viewport.is-marquee.is-drag { cursor: grabbing; }

.speakers__track {
  display: flex; gap: clamp(0.7rem, 1.1vw, 1.05rem);
  list-style: none; padding-inline: var(--post-gutter);
  /* base (no-JS / reduced motion): native horizontal scroll */
  overflow-x: auto; scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.speakers__track::-webkit-scrollbar { display: none; }
/* enhanced (JS marquee): transform-driven, native scroll off */
.speakers__viewport.is-marquee .speakers__track {
  overflow: visible; scroll-snap-type: none; will-change: transform;
}

.speaker {
  position: relative; flex: 0 0 auto;
  width: clamp(206px, 22vw, 286px); aspect-ratio: 4 / 5;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(0.9rem, 1.3vw, 1.2rem);
  border-radius: var(--post-radius); overflow: hidden; isolation: isolate;
  scroll-snap-align: center;
  background: linear-gradient(165deg, #221b13, #14110D 70%);
  outline: 1px solid color-mix(in srgb, var(--post-bone) 9%, transparent); outline-offset: -1px;
  transition: transform .55s var(--post-ease);
  -webkit-user-select: none; user-select: none;
}
.speaker__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%;
  z-index: -2;
  /* the unifying warm monochrome — disparate press photos read as one curated set */
  filter: grayscale(1) sepia(0.34) saturate(0.72) contrast(1.05) brightness(0.92);
  transition: filter .6s var(--post-ease), transform 1.1s var(--post-ease);
  will-change: filter, transform; -webkit-user-drag: none;
}
.speaker::after {
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  /* bottom block carries name/role; a firmer top band keeps the bronze session
     tag legible even over bright photos (white studio, blue sky) */
  background: linear-gradient(to top, rgba(12,9,6,0.93) 0%, rgba(12,9,6,0.44) 34%, rgba(12,9,6,0.05) 56%, rgba(12,9,6,0.18) 74%, rgba(12,9,6,0.74) 100%);
}
.speaker:hover { transform: translateY(-6px); }
.speaker:hover .speaker__img { filter: grayscale(0) sepia(0) saturate(1.02) contrast(1.01) brightness(1); transform: scale(1.045); }

.speaker__topic {
  position: absolute; top: clamp(0.85rem, 1.2vw, 1.1rem); left: clamp(0.9rem, 1.3vw, 1.2rem); right: clamp(0.9rem, 1.3vw, 1.2rem);
  z-index: 1; font-family: var(--post-sans); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--post-bronze);
  text-shadow: 0 1px 3px rgba(12,9,6,0.92), 0 0 18px rgba(12,9,6,0.6);
}
.speaker__name { position: relative; z-index: 1; font-family: var(--post-serif); font-variation-settings:"opsz" 60,"wght" 470; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.08; letter-spacing: -0.01em; color: var(--post-bone); text-shadow: 0 1px 22px rgba(12,9,6,0.7); }
.speaker__role { position: relative; z-index: 1; margin-top: 0.28rem; font-family: var(--post-sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.01em; color: color-mix(in srgb, var(--post-bone) 62%, transparent); }

/* monogram fallback — any speaker with no verified photo */
.speaker--mono { background: radial-gradient(120% 90% at 28% 18%, color-mix(in srgb, var(--post-bronze) 17%, transparent), transparent 58%), linear-gradient(160deg, #251d14 0%, #14110D 72%); }
.speaker--mono::after { opacity: 0.4; }
.speaker__mono { position:absolute; inset:0; z-index:-2; display:grid; place-items:center; }
.speaker__mono span { font-family: var(--post-serif); font-variation-settings:"opsz" 144,"wght" 340; font-size: clamp(2.8rem, 6.5vw, 4.4rem); color: color-mix(in srgb, var(--post-bone) 22%, transparent); letter-spacing: -0.02em; }

.speakers__foot { display:flex; align-items:center; justify-content:space-between; gap:1.4rem; flex-wrap:wrap; margin-top: clamp(2rem, 4vw, 3rem); }
.speakers__controls { display:flex; gap:0.6rem; }
.speakers__arrow { width:46px; height:46px; display:grid; place-items:center; border-radius:50%; color:var(--post-bone); border:1px solid color-mix(in srgb,var(--post-bone) 22%, transparent); background:transparent; transition: background .3s var(--post-ease), border-color .3s var(--post-ease), transform .25s var(--post-ease); }
.speakers__arrow:hover { background: color-mix(in srgb,var(--post-bone) 12%, transparent); border-color: color-mix(in srgb,var(--post-bone) 48%, transparent); }
.speakers__arrow:active { transform: scale(0.93); }
.speakers__arrow:focus-visible { outline: 2px solid var(--post-bronze); outline-offset: 3px; }
.speakers__arrow svg { width:20px; height:20px; }
.speakers__note { font-family: var(--post-sans); font-size:0.8rem; letter-spacing:0.04em; color: color-mix(in srgb,var(--post-bone) 52%, transparent); }

@media (max-width: 600px) { .speakers__foot { justify-content: flex-start; } }
@media (prefers-reduced-motion: reduce) { .speaker, .speaker__img { transition: none; } }

/* ---------------------------------------------------------------------------
   12. Who it's for
   --------------------------------------------------------------------------- */
.forwho__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
.forwho__lines { display: flex; flex-direction: column; gap: 1.3rem; }
@media (min-width: 900px) { .forwho__grid { grid-template-columns: 1.1fr 0.9fr; gap: clamp(3rem,8vw,7rem); } }

/* ---------------------------------------------------------------------------
   13. Stats / social proof
   --------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--post-hairline); border: 1px solid var(--post-hairline); margin-top: clamp(3rem,6vw,4.5rem); }
@media (min-width: 820px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--post-bg); padding: clamp(2rem,4vw,3rem) clamp(1.4rem,2.5vw,2rem);
  display: flex; flex-direction: column; gap: 0.8rem;
}
.section--ink .stat { background: var(--post-ink); }
.stat__num {
  font-family: var(--post-serif);
  font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 0, "WONK" 0;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem); line-height: 1; letter-spacing: -0.02em;
  color: var(--post-fg);
}
.stat__num .stop { color: var(--post-accent); }
.section--ink .stat__num .stop { color: var(--post-bronze); }
.stat__label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--post-fg-faint); font-weight: 600; }

/* ---------------------------------------------------------------------------
   14. Final CTA
   --------------------------------------------------------------------------- */
#cta { position: relative; overflow: hidden; isolation: isolate; }
.cta__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.cta__bg-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.cta__bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(130% 115% at 50% 52%, transparent 22%, rgba(20,17,13,0.66) 100%),
    linear-gradient(to bottom, rgba(20,17,13,0.5), rgba(20,17,13,0.28) 48%, rgba(20,17,13,0.72));
}
.cta { text-align: center; position: relative; }
.cta__head { max-width: 18ch; margin: 0 auto clamp(1.6rem, 3vw, 2.2rem); }
.cta__sub { max-width: 46ch; margin: 0 auto clamp(2.4rem,5vw,3.2rem); }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------------
   15. Footer
   --------------------------------------------------------------------------- */
.footer { background: #100D0A; color: var(--post-bone); border-top: 1px solid color-mix(in srgb, var(--post-bone) 12%, transparent); }
.footer__inner { padding-block: clamp(4.5rem, 10vh, 8rem); }
.footer__manifesto {
  font-family: var(--post-serif); font-variation-settings: "opsz" 110,"wght" 400;
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1.12; letter-spacing: -0.02em;
  color: var(--post-bone); margin-bottom: clamp(3.5rem, 8vw, 6rem); max-width: 16ch;
}
.footer__manifesto em { font-style: italic; color: var(--post-bronze); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem,5vw,3rem); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(2rem,4vw,4rem); } }
.footer__brand .nav__wordmark { height: 26px; margin-bottom: 1.2rem; }
.footer__tagline { color: color-mix(in srgb, var(--post-bone) 60%, transparent); font-size: 0.92rem; max-width: 28ch; }
.footer__col h4 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: color-mix(in srgb, var(--post-bone) 55%, transparent); font-weight: 600; margin-bottom: 1.1rem; }
.footer__col a { display: block; color: color-mix(in srgb, var(--post-bone) 84%, transparent); font-size: 0.95rem; padding: 0.35rem 0; transition: color .3s var(--post-ease); }
.footer__col a:hover { color: var(--post-bone); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  margin-top: clamp(3.5rem,7vw,5rem); padding-top: 1.8rem;
  border-top: 1px solid color-mix(in srgb, var(--post-bone) 12%, transparent);
  color: color-mix(in srgb, var(--post-bone) 52%, transparent); font-size: 0.82rem;
}
.footer__legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ---------------------------------------------------------------------------
   16. Reveal initial states (JS adds .is-in to play)
   --------------------------------------------------------------------------- */
.reveal { opacity: 0; }
.reveal-up { opacity: 0; transform: translateY(28px); }
[data-split] { opacity: 0; }    /* hidden until JS splits + reveals */
html.no-js [data-split], .reveal, .reveal-up { opacity: 1 !important; transform: none !important; }

/* split char/line spans */
.split-line { display: block; overflow: hidden; }
.split-word-wrap { display: inline-block; white-space: nowrap; }  /* keep words intact; only break between them */
.split-char, .split-word { display: inline-block; will-change: transform, opacity, filter; }
.split-line-inner { display: inline-block; will-change: transform, opacity, filter; }

/* ---------------------------------------------------------------------------
   17. Responsive — nav collapse + mobile menu
   --------------------------------------------------------------------------- */
@media (max-width: 880px) {
  .nav__tabs { display: none; }
  .nav__right .btn--nav { display: none; }
  .nav__menu-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
    color: currentColor;
  }
  .nav__menu-btn .bars { display: inline-flex; flex-direction: column; gap: 5px; width: 22px; }
  .nav__menu-btn .bars span { width: 22px; height: 1.5px; background: currentColor; transition: transform .4s var(--post-ease), opacity .3s; transform-origin: center; }
  .nav__menu-btn.is-open .bars span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .nav__menu-btn.is-open .bars span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }
  /* keep the toggle legible over the open ink overlay */
  .nav__menu-btn.is-open { color: var(--post-bone); }
}

/* hide the hero scroll cue where it would collide with stacked CTAs */
@media (max-width: 600px) { .hero__scroll { display: none; } }

/* mobile menu overlay */
.menu {
  position: fixed; inset: 0; z-index: 70; background: var(--post-ink); color: var(--post-bone);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--post-gutter); gap: 0.4rem;
  clip-path: circle(0% at calc(100% - 3rem) 2.4rem);
  transition: clip-path .6s var(--post-ease);
  pointer-events: none;
}
.menu.is-open { clip-path: circle(150% at calc(100% - 3rem) 2.4rem); pointer-events: auto; }
.menu a {
  font-family: var(--post-serif); font-variation-settings:"opsz" 90,"wght" 400;
  font-size: clamp(2rem, 9vw, 3.2rem); padding: 0.3rem 0; color: var(--post-bone);
  border-bottom: 1px solid color-mix(in srgb, var(--post-bone) 12%, transparent);
}
.menu a .stop { color: var(--post-bronze); }
.menu__foot { margin-top: 2.5rem; display: flex; gap: 1.4rem; color: color-mix(in srgb,var(--post-bone) 60%, transparent); font-size: 0.85rem; }

/* ---------------------------------------------------------------------------
   18. Reduced motion
   --------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-up, [data-split] { opacity: 1 !important; transform: none !important; }
  .manifesto { height: auto !important; }
  .manifesto__stage { position: relative; height: auto; padding-block: 8rem; }
  .manifesto__content { position: relative; opacity: 1 !important; }
  .manifesto__panel { display: none; }
  .manifesto__wheel { height: auto; overflow: visible; -webkit-mask-image: none; mask-image: none; }
  .belief { position: relative; top: auto; white-space: normal; opacity: 1 !important; transform: none !important; filter: none !important; margin-block: 0.6rem; }
  .hero__scroll-line { animation: none; }
}
