/* ============================================================
   ZURU Pitch v2 — page styles
   Photo-led, cinematic, editorial. Zero emoji slop.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { background: #0A0A0F; }

body {
  font-family: var(--font-sans);
  color: #0A0A0F;
  background: #F5F3EF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

::selection { background: #FFE438; color: #0A0A0F; }

/* ── Custom cursor ─────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: white;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-out-expo), height .25s var(--ease-out-expo);
  will-change: transform;
}
.cursor.is-over-link { width: 64px; height: 64px; }
.cursor.is-down { width: 18px; height: 18px; }

/* ── Progress bar ──────────────────────────────────────── */
.progress {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: #E30613;
  z-index: 9999;
  width: 0%;
  transition: width 80ms linear;
}

/* ── Topbar / timecode ─────────────────────────────────── */
.topbar {
  position: fixed;
  top: 20px; left: 24px; right: 24px;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  color: white;
  pointer-events: none;
}
.topbar .l, .topbar .r, .topbar .c {
  display: flex; gap: 16px; align-items: center;
}
.topbar .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #E30613;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.topbar .tc { letter-spacing: 0.12em; opacity: 0.85; }
.topbar .slash { opacity: 0.5; }

/* ── Section chrome ────────────────────────────────────── */
section { position: relative; }
.wrap { max-width: 1480px; margin: 0 auto; padding: 0 40px; }

.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(10,10,15,0.55);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .bar { width: 28px; height: 1px; background: currentColor; display: inline-block; }
.dark .eyebrow { color: rgba(255,255,255,0.5); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  color: white;
}
.hero .bg {
  position: absolute; inset: 0;
  background-image: url("plates/hero-xshot-squad.jpg");
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero .scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
}
.hero .chrome {
  position: absolute;
  inset: 0;
  padding: 96px 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.hero .crosshair {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.3);
  width: 80px; height: 80px;
}
.hero .crosshair.tl { top: 24px; left: 24px; border-right: none; border-bottom: none; }
.hero .crosshair.tr { top: 24px; right: 24px; border-left: none; border-bottom: none; }
.hero .crosshair.bl { bottom: 24px; left: 24px; border-right: none; border-top: none; }
.hero .crosshair.br { bottom: 24px; right: 24px; border-left: none; border-top: none; }

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.hero-top .block h5 {
  margin: 0 0 6px;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.25em;
}
.hero-top .block p { margin: 0; color: white; font-weight: 500; letter-spacing: 0.12em; }

.hero-headline {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(4rem, 13vw, 13rem);
  letter-spacing: -0.055em;
  line-height: 0.88;
  color: white;
  margin: 0;
  max-width: 14ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero-headline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: #FFE438;
}
.hero-headline .stamp {
  display: inline-block;
  transform: rotate(-2deg);
  background: #E30613;
  color: white;
  padding: 0 0.15em 0.04em;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.hero-sub {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  margin: 0;
  letter-spacing: -0.005em;
}
.hero-sub .hl { background: #FFE438; color: #0A0A0F; padding: 0 4px; font-weight: 500; }
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
}
.scroll-cue .line {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.scroll-cue .line::after {
  content: ""; position: absolute; left: 0; right: 0;
  height: 14px; top: -14px; background: #FFE438;
  animation: scrollCue 1.8s cubic-bezier(0.7,0,0.3,1) infinite;
}
@keyframes scrollCue {
  0% { top: -14px; } 100% { top: 100%; }
}

/* ── FLOWSHOT (free-flowing scroll-driven videos) ───── */
.reel-flow {
  background: #0A0A0F;
}
.flowshot {
  position: relative;
  width: 100%;
  background: #0A0A0F;
}
.flowshot-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.flowshot-media video,
.flowshot-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  display: block;
}
.flowshot-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}
.flowshot-chrome {
  position: absolute; inset: 0;
  z-index: 4;
  padding: 4vw 4vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
}
.flowshot-chrome-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
}
.flowshot-chrome .tl, .flowshot-chrome .tr,
.flowshot-chrome .bl, .flowshot-chrome .br {
  display: flex; flex-direction: column; gap: 4px;
}
.flowshot-chrome .label { color: rgba(255,255,255,0.5); font-size: 10px; }
.flowshot-chrome .val { color: white; }
.flowshot-title {
  align-self: flex-start;
  max-width: 18ch;
}
.flowshot-title .eye {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #FFE438;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.flowshot-title h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: white;
  margin: 0;
  text-transform: none;
}
.flowshot-title h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: #FFE438;
}
.reel {
  position: relative;
  height: 600vh;
  background: #0A0A0F;
}
.reel-sticky {
  position: sticky; top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.reel-plate {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: opacity, transform;
}
.reel-plate::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.75) 100%);
}
.reel-letterbox {
  position: absolute;
  left: 0; right: 0;
  height: 48px;
  background: #000;
  z-index: 6;
  pointer-events: none;
}
.reel-letterbox.top { top: 0; }
.reel-letterbox.bottom { bottom: 0; }

.reel-chrome {
  position: absolute; inset: 0;
  z-index: 8;
  padding: 72px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
}
.reel-chrome .tl, .reel-chrome .tr, .reel-chrome .bl, .reel-chrome .br {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reel-chrome .label { color: rgba(255,255,255,0.45); }
.reel-chrome .val { color: white; }
.reel-chrome-row {
  display: flex; justify-content: space-between; align-items: flex-start;
}

.reel-shot-title {
  align-self: flex-start;
  max-width: 18ch;
}
.reel-shot-title .eye {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #FFE438;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.reel-shot-title h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: white;
  margin: 0;
  text-transform: none;
}
.reel-shot-title h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: #FFE438;
}

.reel-progress {
  position: absolute;
  bottom: 72px; left: 40px; right: 40px;
  z-index: 9;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}
.reel-progress .seg {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 10px;
  transition: color .3s, border-color .3s;
}
.reel-progress .seg.active { color: white; border-top-color: white; }

.reel-hair {
  position: absolute;
  z-index: 7;
  pointer-events: none;
}
.reel-hair.center {
  top: 50%; left: 50%;
  width: 120px; height: 120px;
  transform: translate(-50%, -50%);
}
.reel-hair svg { width: 100%; height: 100%; }

/* ── STATS (dark editorial) ───────────────────────────── */
.stats {
  background: #0A0A0F;
  color: white;
  padding: 160px 0 140px;
  position: relative;
}
.stats .wrap { max-width: 1280px; }
.stats h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: -0.035em;
  line-height: 1;
  color: white;
  max-width: 22ch;
  margin: 24px 0 0;
}
.stats h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: #FFE438;
}
.stat-list {
  margin-top: 88px;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-row {
  display: grid;
  grid-template-columns: 80px 1.1fr 1fr 120px;
  gap: 32px;
  align-items: baseline;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.stat-row .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.stat-row .num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: white;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.stat-row .num .unit {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.45em;
  color: #FFE438;
}
.stat-row .label {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}
.stat-row .src {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  text-align: right;
}

/* ── Interlude ──────────────────────────────────────── */
.interlude {
  position: relative;
  height: 70vh;
  min-height: 520px;
  background-image: url("plates/bob-basket-topdown.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: white;
  overflow: hidden;
}
.interlude::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
}
.interlude .caption {
  position: relative;
  z-index: 2;
  padding: 0 40px 60px;
  max-width: 820px;
}
.interlude .caption .eye {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFE438;
}
.interlude .caption h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 16px 0 0;
  color: white;
  max-width: 22ch;
}
.interlude .caption h3 em {
  font-family: var(--font-display); font-style: italic; font-weight: 500; color: #FFE438;
}

/* ── THESIS (yellow editorial slab) ──────────────────── */
.thesis {
  background: #FFE438;
  color: #0A0A0F;
  padding: 180px 0 160px;
  position: relative;
  overflow: hidden;
}
.thesis .wrap { max-width: 1280px; }
.thesis h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 9rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: #0A0A0F;
  margin: 28px 0 0;
  max-width: 14ch;
}
.thesis h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: #E30613;
  position: relative;
  display: inline-block;
}
.thesis h2 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 4px;
  background: #E30613;
  transform-origin: left;
  animation: wobbleLine 3s ease-in-out infinite;
}
@keyframes wobbleLine {
  0%,100% { transform: scaleX(1); }
  50% { transform: scaleX(0.95) translateX(3%); }
}

.thesis-body {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.thesis-body p {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.5;
  color: #0A0A0F;
  margin: 0;
  letter-spacing: -0.005em;
}
.thesis-body p + p { margin-top: 20px; }
.thesis-body p strong {
  font-weight: 700;
  background: #0A0A0F;
  color: #FFE438;
  padding: 0 6px;
}

.thesis-closer {
  margin-top: 88px;
  border-top: 2px solid #0A0A0F;
  padding-top: 48px;
}
.thesis-closer .quote {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0A0A0F;
  margin: 0;
  max-width: 26ch;
}
.thesis-closer .quote em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: #E30613;
}
.thesis-smallprint {
  margin-top: 48px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(10,10,15,0.7);
  line-height: 1.65;
  max-width: 72ch;
  text-transform: uppercase;
  padding-left: 16px;
  border-left: 2px solid #0A0A0F;
}

/* ── CONCEPTS (film posters) ─────────────────────────── */
.concepts {
  background: #F5F3EF;
  padding: 160px 0 140px;
}
.concepts .wrap { max-width: 1480px; }
.concepts h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  letter-spacing: -0.035em;
  line-height: 1;
  color: #0A0A0F;
  margin: 24px 0 0;
  max-width: 22ch;
}
.concepts h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

.concept-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.concept {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
  background: #111;
  cursor: none;
  transition: transform .5s var(--ease-out-expo);
  color: white;
}
.concept .plate {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease-out-expo);
}
.concept:hover .plate { transform: scale(1.04); }
.concept::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.concept .chrome {
  position: absolute; inset: 0;
  padding: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}
.concept .top-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.concept .top-row .badge {
  background: #E30613;
  color: white;
  padding: 6px 10px;
  font-weight: 600;
}
.concept .bottom h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 8px;
  color: white;
}
.concept .bottom h3 em {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: #FFE438;
}
.concept .bottom .blurb {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 30ch;
}
.concept .bottom .cta {
  margin-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.concept .bottom .cta .arr {
  width: 34px; height: 34px; border-radius: 50%;
  background: #FFE438; color: #0A0A0F;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s;
  font-size: 14px;
}
.concept:hover .bottom .cta .arr { transform: translate(4px, -4px); }

.concept.selected {
  outline: 3px solid #FFE438;
  outline-offset: -3px;
}
.concept.selected .top-row .badge { background: #FFE438; color: #0A0A0F; }

/* ── PICK CTA (dark editorial) ──────────────────────── */
.pick {
  background: #0A0A0F;
  color: white;
  padding: 180px 0 140px;
  position: relative;
  overflow: hidden;
}
.pick .wrap { max-width: 1280px; }
.pick h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 9rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: white;
  margin: 28px 0 0;
}
.pick h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: #FFE438;
}
.pick-buttons {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pick-btn {
  appearance: none;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 26px 28px;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: -0.005em;
  text-align: left;
  cursor: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: all .3s var(--ease-out-expo);
}
.pick-btn .num {
  font-family: var(--font-display);
  font-style: italic;
  color: #FFE438;
  font-size: 18px;
  margin-right: 10px;
}
.pick-btn .label { font-weight: 500; }
.pick-btn .label em {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  font-size: 13px;
}
.pick-btn:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.5); }
.pick-btn.active {
  background: #FFE438;
  color: #0A0A0F;
  border-color: #FFE438;
}
.pick-btn.active .num { color: #E30613; }
.pick-btn.active .label em { color: rgba(10,10,15,0.7); }
.pick-btn .check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.3;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.pick-btn.active .check { opacity: 1; background: #0A0A0F; color: #FFE438; border-color: #0A0A0F; }

.pick-detail {
  margin-top: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pick-detail .why, .pick-detail .timeline { padding: 48px; }
.pick-detail .why { border-right: 1px solid rgba(255,255,255,0.1); }
.pick-detail h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 24px;
  font-weight: 500;
}
.pick-detail h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: white;
}
.pick-detail h3 em {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: #FFE438;
}
.pick-detail .why p {
  font-size: 15.5px; line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.pick-detail .next {
  margin-top: 32px;
  padding: 20px;
  border: 1px solid rgba(255,228,56,0.25);
  border-left: 3px solid #FFE438;
}
.pick-detail .next h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #FFE438;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 500;
}
.pick-detail .next p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.92);
  margin: 0;
  line-height: 1.5;
}
.pick-detail .timeline ul {
  list-style: none; margin: 0; padding: 0;
}
.pick-detail .timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  line-height: 1.5;
}
.pick-detail .timeline li:last-child { border-bottom: 0; }
.pick-detail .timeline li .when {
  font-family: var(--font-display);
  font-style: italic;
  color: #FFE438;
  font-size: 16px;
}
.pick-detail .timeline li .what { color: rgba(255,255,255,0.85); }

.book-row {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #FFE438;
  color: #0A0A0F;
  border: none;
  padding: 28px 40px;
  font-family: inherit;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
  cursor: none;
  text-decoration: none;
  transition: all .4s var(--ease-out-expo);
}
.book-btn:hover {
  background: #E30613;
  color: white;
  transform: translate(-3px, -3px);
}
.book-btn .arr {
  width: 34px; height: 34px;
  background: #0A0A0F;
  color: #FFE438;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.book-btn:hover .arr { background: white; color: #E30613; }
.book-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.book-meta strong { color: white; font-weight: 500; }

/* ── STUDIO (Feed Me Light) ─────────────────────────── */
.studio {
  background: #0A0A0F;
  color: white;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.studio-hero {
  position: relative;
  height: 64vh;
  min-height: 480px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.studio-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.studio-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,15,0.55) 0%, rgba(10,10,15,0.15) 35%, rgba(10,10,15,0.85) 100%);
}
.studio-hero-chrome {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}
.studio-hero-chrome .eye {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.studio-hero-chrome h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}
.studio-hero-chrome h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: #FFE438;
}
.studio-lede {
  max-width: 56ch;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin: 4px 0 0;
}

.studio-body {
  padding: 96px 64px 120px;
  max-width: 1280px;
}
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.studio-col h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 20px;
}
.studio-col h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: #FFE438;
}
.studio-col p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
  max-width: 48ch;
}

.studio-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.studio-city {
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.studio-city:last-child { border-right: 0; padding-right: 0; }
.studio-city + .studio-city { padding-left: 24px; }
.studio-city .city-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.studio-city strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: #FFE438;
  line-height: 1;
}
.studio-city .city-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
}

.studio-work {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.studio-work-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.studio-work-row .tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: #E30613;
}
.studio-work-row .title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: white;
}
.studio-work-row .kind {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: right;
}
.studio-foot {
  margin-top: 28px !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.6) !important;
  max-width: 52ch !important;
}

@media (max-width: 880px) {
  .studio-hero { height: 56vh; min-height: 360px; }
  .studio-hero-chrome { padding: 32px 24px; }
  .studio-body { padding: 64px 24px 80px; }
  .studio-grid { grid-template-columns: 1fr; gap: 56px; }
  .studio-cities { grid-template-columns: 1fr; }
  .studio-city { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 20px 0 !important; }
  .studio-city:last-child { border-bottom: 0; }
  .studio-work-row { grid-template-columns: 32px 1fr; }
  .studio-work-row .kind { grid-column: 2; text-align: left; }
}

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  background: #0A0A0F;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}
.footer .wrap { max-width: 1280px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-mark {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  color: white;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.footer-mark em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: #FFE438;
}
.footer p.intro { max-width: 40ch; line-height: 1.6; color: rgba(255,255,255,0.65); margin: 0; }
.footer h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer .row { color: white; font-weight: 400; }
.footer .row + .row { margin-top: 8px; }
.footer-bottom {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.footer-bottom em {
  font-family: var(--font-display);
  font-style: italic;
  color: #FFE438;
  text-transform: none;
  letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  .stat-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .stat-row .src { text-align: left; }
  .thesis-body, .concept-grid, .pick-buttons, .pick-detail, .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .pick-detail .why { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .reel-progress { display: none; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Video preloader ---------- */
.zuru-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0A0A0F;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 600ms ease;
  pointer-events: auto;
  cursor: default;
}
.zuru-loader.is-exiting {
  opacity: 0;
  pointer-events: none;
}
.zuru-loader-inner {
  width: min(420px, 80vw);
  text-align: center;
  color: rgba(255,255,255,0.92);
}
.zuru-loader-eye {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.zuru-loader-eye .slash {
  margin: 0 8px;
  color: rgba(255,255,255,0.25);
}
.zuru-loader-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FFE438;
  margin-bottom: 32px;
}
.zuru-loader-bar {
  position: relative;
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  margin-bottom: 14px;
}
.zuru-loader-fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: rgba(255,255,255,0.85);
  transition: width 280ms ease;
}
.zuru-loader-pct {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.zuru-loader-pct .slash {
  margin: 0 6px;
  color: rgba(255,255,255,0.2);
}
