/* ============================================================
   PODCAST CAPITALIST — styles.css
   Light "paper" system inspired by Juicy Foods: warm off-white,
   heavy black compressed type, signal-red marker accents, mono
   technical labels. Flat, sharp, graphic. Two dark anchors:
   The Proof and the Footer.
   ============================================================ */

:root {
  --paper: #f3f1ea;        /* dominant warm off-white */
  --paper-2: #eae6dd;      /* deeper paper for alternating bands / cards-on-light */
  --card: #ffffff;         /* raised card surface */
  --ink: #121212;          /* primary text */
  --ink-soft: #3a3a37;     /* secondary text */
  --red: #e60012;          /* signal red */
  --dark: #111111;         /* dark sections (proof) */
  --dark-2: #0c0c0c;       /* footer */
  --gray: #6f6b63;         /* warm gray mono labels */
  --line: rgba(0, 0, 0, 0.13);
  --line-strong: rgba(0, 0, 0, 0.26);
  --line-light: rgba(255, 255, 255, 0.14);   /* lines on dark sections */

  --font-display: 'Anton', Impact, sans-serif;
  --font-cond: 'Oswald', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', 'JetBrains Mono', monospace;
  --font-marker: 'Permanent Marker', cursive;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Global grid + noise texture ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 120% 90% at 50% 0%, #000 30%, transparent 100%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
}

.page { position: relative; z-index: 1; }

/* ---------- Type system ---------- */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.cond {
  font-family: var(--font-cond);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.marker { font-family: var(--font-marker); color: var(--red); }

.text-red { color: var(--red); }
.text-gray { color: var(--gray); }

/* Section eyebrow label: "01 / THE LIE" */
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gray);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.band { padding: 120px 0; border-top: 1px solid var(--line); }

/* ---------- Red bar (BREAKING-NEWS element) ---------- */
.redbar {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  padding: 6px 14px;
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 28px;
  border: 2px solid var(--red);
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 0.35s ease;
  will-change: transform;
}
.btn .btn-bg {
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { transform: scale(1.03); }
.btn:hover .btn-bg { transform: translateY(0); }

.btn--primary { background: var(--red); border-color: var(--red); color: #fff; }
.btn--primary .btn-bg { background: var(--ink); }
.btn--primary:hover { color: #fff; }

.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost .btn-bg { background: var(--ink); }
.btn--ghost:hover { color: var(--paper); }

.btn .arrow { transition: transform 0.35s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 50;
  width: calc(100% - 32px);
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 20px;
  border: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(243, 241, 234, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--line);
}
.brand { display: flex; align-items: baseline; gap: 2px; position: relative; }
.brand .b-podcast {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
}
.brand .b-capitalist {
  font-family: var(--font-marker);
  color: var(--red);
  font-size: 1.25rem;
  transform: rotate(-4deg);
  margin-left: -2px;
}
.brand .reg { font-family: var(--font-body); font-size: 0.6rem; color: var(--gray); align-self: flex-start; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-cond);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: color 0.25s ease, transform 0.25s ease;
}
.nav-links a:hover { color: var(--red); transform: translateY(-1px); }
.nav .btn { padding: 11px 18px; font-size: 0.8rem; }
.nav-cta-mobile { display: none; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 40px;
  padding: 150px 28px 0;
  border-top: 0;
}
.hero-copy { padding-bottom: 60px; }
.hero h1 {
  font-size: clamp(3.2rem, 8.2vw, 7.4rem);
  margin: 22px 0 0;
  color: var(--ink);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero-sub {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-top: 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* Hero figure */
.hero-figure {
  position: relative;
  align-self: end;
  height: 88vh;
  max-height: 760px;
  border-left: 1px solid var(--line);
}
.hero-figure .frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  filter: grayscale(100%) contrast(1.05);
  background: #111;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-figure .frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 2%, rgba(0,0,0,0) 42%);
}
.hero-figure .corner {
  position: absolute; width: 22px; height: 22px; border: 2px solid var(--red); z-index: 3;
}
.hero-figure .corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.hero-figure .corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.hero-figure .fig-cap {
  position: absolute; bottom: 16px; left: 16px; z-index: 4;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
}

/* Mono ticker strip */
.ticker {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 38s linear infinite;
}
.ticker-track span {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 14px 26px;
  color: rgba(255,255,255,0.72);
  display: inline-flex; align-items: center; gap: 26px;
}
.ticker-track span b { color: #fff; font-weight: 700; }
.ticker-track span b.r { color: var(--red); }
.ticker-track span::after { content: "//"; color: var(--gray); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- The Lie ---------- */
.lie h2 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); margin: 26px 0 0; max-width: 16ch; color: var(--ink); }
.lie-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; margin-top: 50px; align-items: start; }
.lie-body p { color: var(--ink-soft); margin-bottom: 18px; max-width: 52ch; }
.lie-affirm {
  font-family: var(--font-cond); font-weight: 600;
  text-transform: uppercase; font-size: 1.5rem; line-height: 1.25;
  color: var(--ink); margin-top: 30px; max-width: 24ch;
}

/* Cross-out stack */
.crossouts { display: flex; flex-direction: column; gap: 14px; }
.crossout {
  position: relative;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: rgba(0,0,0,0.26);
  line-height: 1;
  width: fit-content;
}
.crossout svg { position: absolute; left: -6%; top: 38%; width: 112%; height: 40px; overflow: visible; }
.crossout svg path { stroke: var(--red); stroke-width: 7; fill: none; stroke-linecap: round; }
.crossout-note {
  margin-top: 22px; font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.08em; color: var(--gray);
}
.crossout-note b { color: var(--ink); }

/* Stat callout chips (news-graphic) */
.stat-row { display: flex; flex-wrap: wrap; gap: 0; margin-top: 44px; border: 1px solid var(--line); }
.stat-cell { flex: 1 1 180px; padding: 24px 22px; border-right: 1px solid var(--line); }
.stat-cell:last-child { border-right: 0; }
.stat-cell .num { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; color: var(--ink); }
.stat-cell .num.red { color: var(--red); }
.stat-cell .lab { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--gray); margin-top: 10px; }

/* ---------- The Proof (DARK anchor) ---------- */
.proof { background: var(--dark); color: var(--paper); }
.proof .wrap { position: relative; }
.proof .eyebrow { color: rgba(255,255,255,0.55); }
.proof h2 { font-size: clamp(2.6rem, 6vw, 5.2rem); margin: 24px 0 6px; color: #fff; }
.proof h2 .marker-num { font-family: var(--font-marker); color: var(--red); }
.proof-lead { color: rgba(255,255,255,0.74); max-width: 56ch; margin-top: 14px; }

.videoframe {
  position: relative;
  margin-top: 48px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-light);
  background: #0c0c0c;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
/* Thumbnail image (images/case-study-thumb.png) */
.videoframe .vf-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}
.videoframe .vf-img.img-missing { display: none; }
/* Legibility shade over the thumbnail */
.videoframe::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.55));
}
.videoframe .rec-dot, .videoframe .play, .videoframe .vf-cap, .videoframe .vf-tag { z-index: 2; }
.videoframe::before {
  z-index: 2;
  content: "REC"; position: absolute; top: 18px; left: 18px;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em;
  color: #fff; display: flex; align-items: center; gap: 8px;
}
.videoframe .rec-dot {
  position: absolute; top: 21px; left: 18px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); animation: pulse 1.6s infinite; transform: translateX(-16px);
}
.videoframe .play {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--red); display: grid; place-items: center;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.videoframe:hover .play { transform: scale(1.08); }
.videoframe .play svg { width: 30px; height: 30px; fill: #fff; margin-left: 4px; }
.videoframe .vf-cap {
  position: absolute; bottom: 18px; left: 18px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.9);
}
.videoframe .vf-tag {
  position: absolute; bottom: 18px; right: 18px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--red);
}

/* Proof stat strip (replaces the old terminal block) */
.proof .stat-row { border-color: var(--line-light); margin-top: 26px; }
.proof .stat-cell { border-color: var(--line-light); }
.proof .stat-cell .num { color: #fff; }
.proof .stat-cell .num.red { color: var(--red); }
.proof .stat-cell .lab { color: rgba(255,255,255,0.55); }

/* ---------- The System ---------- */
.system h2 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); margin: 24px 0 0; color: var(--ink); }
.system .lede { color: var(--ink-soft); max-width: 56ch; margin-top: 16px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.card {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 26px 24px 28px;
  position: relative;
  min-height: 420px;
  display: flex; flex-direction: column;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.card:hover { border-color: var(--red); transform: translateY(-4px); }
.card .step { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; color: var(--red); }
.card h3 { font-family: var(--font-cond); text-transform: uppercase; font-size: 1.5rem; line-height: 1.05; margin: 12px 0 12px; font-weight: 700; color: var(--ink); }
.card p { color: var(--ink-soft); font-size: 0.96rem; }
.card .viz { margin-top: auto; padding-top: 22px; }

/* Card 1: economics meter */
.aov-feed { font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-soft); }
.aov-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.aov-row .you { color: var(--red); }
.aov-bar { height: 8px; background: var(--paper-2); border: 1px solid var(--line); margin-top: 12px; position: relative; }
.aov-bar i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--red); width: 0; }

/* Card 2: asset extraction typewriter feed */
.feed-head { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gray); }
.feed-head .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 1.6s infinite; }
.feed { font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink); margin-top: 12px; min-height: 92px; }
.feed .cursor { display: inline-block; width: 8px; background: var(--red); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* Card 3: asset library grid */
.campaign-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; position: relative; }
.campaign-grid .cellbox { aspect-ratio: 1; background: var(--paper-2); border: 1px solid var(--line); transition: background 0.3s, border-color 0.3s; }
.campaign-grid .cellbox.win { background: var(--red); border-color: var(--red); }
.scan-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--gray); margin-top: 12px; }
.scan-label b { color: var(--red); }

@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.4; transform: scale(0.85);} }

/* ---------- The Operator ---------- */
.operator { background: var(--paper-2); }
.op-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.op-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.op-photos .ph { position: relative; overflow: hidden; filter: grayscale(100%) contrast(1.04); border: 1px solid var(--line-strong); background:#111; }
.op-photos .ph img { width: 100%; height: 100%; object-fit: cover; }
.op-photos .ph.tall { grid-row: span 2; }
.operator h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 22px 0 18px; color: var(--ink); }
.operator h2 .marker { display: inline-block; transform: rotate(-3deg); }
.op-body p { color: var(--ink-soft); margin-bottom: 16px; max-width: 54ch; }
.op-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.op-creds .chip { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; color: var(--ink-soft); border: 1px solid var(--line-strong); padding: 8px 12px; }
.op-creds .chip b { color: var(--red); }

/* ---------- The AI ---------- */
.ai-wrap { display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; }
.ai h2 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); margin: 22px 0 16px; color: var(--ink); }
.ai-body p { color: var(--ink-soft); margin-bottom: 16px; max-width: 52ch; }
.ai-list { list-style: none; margin: 22px 0; }
.ai-list li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; color: var(--ink); }
.ai-list li::before { content: ""; width: 9px; height: 9px; background: var(--red); margin-top: 7px; flex: none; }

/* AI price card — dark object on the light page */
.ai-card {
  border: 1px solid var(--dark); background: var(--dark); color: #fff; padding: 34px 30px;
  position: relative;
}
.ai-card .pricetag { font-family: var(--font-display); font-size: 4.4rem; line-height: 1; color: #fff; }
.ai-card .pricetag .cur { font-size: 1.8rem; vertical-align: super; color: var(--red); }
.ai-card .price-lab { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin: 8px 0 26px; }
.ai-card .spec { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.78); display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid var(--line-light); gap: 16px; }
.ai-card .btn { width: 100%; justify-content: center; margin-top: 26px; }

/* ---------- Final CTA ---------- */
.final { text-align: center; padding: 150px 0; border-top: 1px solid var(--line); }
.final h2 { font-size: clamp(3rem, 8vw, 7rem); margin: 22px auto 0; max-width: 16ch; color: var(--ink); }
.final .hero-cta { justify-content: center; margin-top: 40px; }
.final .marker { display: inline-block; transform: rotate(-3deg); }

/* ---------- Footer (DARK anchor) ---------- */
.footer { background: var(--dark-2); color: #fff; border-top: 3px solid var(--red); padding: 70px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .brand .b-podcast { font-size: 2rem; color: #fff; }
.footer .brand .b-capitalist { font-size: 1.8rem; }
.footer-tag { color: rgba(255,255,255,0.55); max-width: 36ch; margin-top: 16px; font-size: 0.95rem; }
.footer .fcol h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer .fcol a { display: block; color: rgba(255,255,255,0.78); font-family: var(--font-cond); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.04em; padding: 5px 0; transition: color 0.25s; }
.footer .fcol a:hover { color: var(--red); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line-light);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.78); text-decoration: underline; text-underline-offset: 2px; transition: color 0.25s; }
.footer-bottom a:hover { color: var(--red); }
.status { display: inline-flex; align-items: center; gap: 9px; }
.status .dot { width: 9px; height: 9px; border-radius: 50%; background: #19d36b; animation: pulse 1.8s infinite; }

/* ============================================================
   MASTERCLASS PAGE (masterclass.html)
   ============================================================ */

/* Hero / opt-in */
.mc-hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: 150px 0 80px;
}
.mc-copy { max-width: 640px; }
.mc-hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  margin: 22px 0 0;
  color: var(--ink);
}
.mc-sub { color: var(--ink-soft); font-size: 1.1rem; margin-top: 22px; max-width: 50ch; }

/* Opt-in form */
.optin { margin-top: 32px; max-width: 520px; }
.optin-fields { display: flex; gap: 12px; }
.optin-fields input {
  flex: 1; min-width: 0;
  font-family: var(--font-body); font-size: 1rem;
  padding: 16px 16px; border: 2px solid var(--ink); background: var(--paper);
  color: var(--ink); border-radius: 0;
}
.optin-fields input::placeholder { color: var(--gray); }
.optin-fields input:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.optin-btn { width: 100%; justify-content: center; margin-top: 12px; }
.optin-note { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.04em; color: var(--gray); margin-top: 14px; line-height: 1.5; }
.optin-confirm {
  font-family: var(--font-cond); text-transform: uppercase; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink); background: var(--paper-2); border-left: 4px solid var(--red);
  padding: 14px 16px; margin-top: 16px; font-size: 0.95rem;
}

/* Hero cover / video preview */
.mc-visual { align-self: center; }
.cover-frame {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border: 1px solid var(--line-strong); background: #111;
}
.cover-frame img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.cover-frame img.img-missing { display: none; }
.cover-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: radial-gradient(ellipse at center, #1d1d1d, #0c0c0c);
}
.cover-fallback .cf-label { font-family: var(--font-display); text-transform: uppercase; font-size: 1.8rem; color: #fff; letter-spacing: -0.01em; }
.cover-fallback .cf-sub { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; color: var(--gray); }
.cover-frame .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 84px; height: 84px; border-radius: 50%; background: var(--red); display: grid; place-items: center;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cover-frame:hover .play { transform: translate(-50%,-50%) scale(1.08); }
.cover-frame .play svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }
.cover-frame .cover-tag {
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; color: #fff;
  background: rgba(0,0,0,0.5); padding: 5px 10px;
}

/* What you'll learn */
.mc-learn h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 24px 0 0; color: var(--ink); }
.learn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 50px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.learn-item { padding: 30px 30px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; gap: 18px; align-items: flex-start; }
.learn-item .ln { font-family: var(--font-display); font-size: 1.8rem; color: var(--red); line-height: 1; flex: none; }
.learn-item p { color: var(--ink-soft); font-size: 1.02rem; margin: 0; }

/* Manifesto */
.mc-manifesto h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 24px 0 0; max-width: 18ch; color: var(--ink); }
.manifesto-body { margin-top: 30px; max-width: 60ch; }
.manifesto-body p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 18px; }
.manifesto-pull {
  font-family: var(--font-cond); text-transform: uppercase; font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.25; color: var(--ink);
  border-left: 4px solid var(--red); padding-left: 22px; margin: 36px 0; max-width: 30ch;
}
.manifesto-close { color: var(--ink); font-size: 1.12rem; font-weight: 500; max-width: 60ch; }
.manifesto-close { border-top: 1px solid var(--line); padding-top: 26px; }

/* Learn item titles */
.mc-learn { background: var(--paper-2); }
.learn-item h3 { font-family: var(--font-cond); text-transform: uppercase; font-weight: 700; font-size: 1.15rem; color: var(--ink); margin: 0 0 8px; line-height: 1.1; }
.learn-item p { margin: 0; }

/* Host */
.mc-host { background: var(--paper-2); }
.host-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 50px; align-items: center; }
.host-photo { position: relative; overflow: hidden; filter: grayscale(100%) contrast(1.05); border: 1px solid var(--line-strong); background: #111; max-width: 360px; }
.host-photo img { width: 100%; height: 100%; object-fit: cover; }
.mc-host h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 20px 0 18px; color: var(--ink); }
.host-copy p { color: var(--ink-soft); margin-bottom: 16px; max-width: 52ch; }

/* Free bonus / report */
.mc-bonus { background: var(--paper); }
.bonus-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.report-frame { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.report-frame img { width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 1; }
.report-frame img.img-missing { display: none; }
.report-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: #fff; border: 1px solid var(--line);
}
.report-fallback .rf-label { font-family: var(--font-display); text-transform: uppercase; font-size: 1.6rem; color: var(--ink); text-align: center; max-width: 12ch; line-height: 0.95; }
.report-fallback .rf-label::first-line { color: var(--ink); }
.report-fallback .rf-sub { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; color: var(--red); }
.bonus-copy h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 20px 0 16px; color: var(--ink); }
.bonus-copy h2 .marker { display: inline-block; transform: rotate(-2deg); }
.bonus-copy p { color: var(--ink-soft); max-width: 48ch; margin-bottom: 26px; }

/* Who it's for */
.mc-who { background: var(--ink); }
.mc-who .who-line {
  font-family: var(--font-cond); text-transform: uppercase; font-weight: 600;
  font-size: clamp(1.4rem, 3.4vw, 2.4rem); line-height: 1.2; color: #fff;
  max-width: 26ch; margin: 0 auto; text-align: center; letter-spacing: 0.01em;
}

/* Final sub */
.mc-final-sub { color: var(--ink-soft); margin: 18px auto 0; max-width: 44ch; }

/* Minimal footer variant */
.mc-footer { padding: 40px 0; }
.mc-footer .footer-bottom { margin-top: 0; padding-top: 0; border-top: 0; }
.mc-footer .brand .b-podcast { font-size: 1.4rem; color: #fff; }
.mc-footer .brand .b-capitalist { font-size: 1.3rem; }

@media (max-width: 1080px) {
  .mc-hero { grid-template-columns: 1fr; min-height: auto; gap: 40px; padding-top: 130px; }
  .mc-visual { order: -1; }
  .bonus-grid { grid-template-columns: 1fr; gap: 36px; }
  .bonus-visual { max-width: 420px; }
  .learn-grid { grid-template-columns: 1fr; }
  .host-grid { grid-template-columns: 1fr; gap: 30px; }
  .host-photo { max-width: 300px; }
}
@media (max-width: 720px) {
  .optin-fields { flex-direction: column; }
  .mc-footer .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---------- Reveal animation base ----------
   Hidden state only applies when JS is active (html.js). Without JS, or if
   the script fails, every .reveal stays fully visible. IntersectionObserver
   adds .is-in, and the CSS transition handles the motion. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; align-items: start; }
  .hero-figure { display: none; }
  .hero-copy { padding-bottom: 40px; }
  .lie-grid, .op-grid, .ai-wrap { grid-template-columns: 1fr; gap: 36px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .band { padding: 84px 0; }
  .hero { padding: 120px 20px 64px; min-height: auto; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 3.6rem); }
  .hero-copy { padding-bottom: 0; }
  .hero-sub { margin-top: 22px; }
  .hero-cta { margin-top: 30px; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 2px solid var(--red);
    padding: 14px 22px 22px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 60;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 6px; justify-content: center; }
  .nav-links .nav-cta-mobile { display: inline-flex; }
  .nav-toggle { display: block; }
  .nav .nav-cta-desktop { display: none; }
  .op-photos { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stat-cell { flex: 1 1 50%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .ticker-track { animation: none; }
}
