:root {
  color-scheme: dark;
  --red: #ff0000;
  --red-bright: #ff0000;
  --red-deep: #8f0000;
  --ink: #070707;
  --panel: #101011;
  --panel-2: #171719;
  --paper: #f2eee8;
  --soft: #b8b2aa;
  --muted: #77716a;
  --line: rgba(255, 255, 255, 0.15);
  --dark-line: rgba(7, 7, 7, 0.16);
  --max: 1380px;
  --pad: clamp(22px, 5vw, 76px);
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  color: var(--ink);
  background: white;
  transform: translateY(-170%);
}
.skip-link:focus { transform: translateY(0); }
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.page-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: 0.032;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 19px var(--pad);
  border-bottom: 1px solid transparent;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled {
  padding-top: 11px;
  padding-bottom: 11px;
  border-color: var(--line);
  background: rgba(7, 7, 7, 0.9);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 13px; width: fit-content; }
.brand img {
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
}
.brand-copy strong {
  display: block;
  font: 400 25px/0.88 var(--display);
  letter-spacing: 0.035em;
}
.brand-copy span {
  display: block;
  margin-top: 5px;
  color: #918c85;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.site-header nav { display: flex; gap: clamp(16px, 1.7vw, 31px); }
.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(7,7,7,0.68);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: var(--paper);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-header nav a {
  position: relative;
  color: #9b958e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-header nav a:hover { color: white; }
.site-header nav a:hover::after { transform: scaleX(1); }
.private-badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #706c66;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.private-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px var(--pad) 110px;
  isolation: isolate;
  background:
    radial-gradient(circle at 77% 41%, rgba(255, 0, 0, 0.22), transparent 27%),
    linear-gradient(112deg, #070707 0 58%, #111112 58% 100%);
}
.hero::before {
  position: absolute;
  z-index: -3;
  top: 0;
  right: -5%;
  width: 48%;
  height: 100%;
  content: "";
  border-left: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, transparent 0 11px, rgba(255,255,255,0.035) 11px 12px),
    linear-gradient(150deg, transparent 8%, rgba(255,0,0,0.18) 48%, transparent 83%);
  transform: skewX(-5deg);
}
.hero::after {
  position: absolute;
  z-index: -2;
  right: 4%;
  bottom: 8%;
  width: 47%;
  height: 30%;
  content: "";
  opacity: 0.48;
  background: repeating-linear-gradient(0deg, transparent 0 8px, rgba(255,0,0,0.38) 8px 10px);
  mask-image: linear-gradient(90deg, transparent, black 35%, transparent);
  transform: rotate(-9deg);
}
.hero-geometry {
  position: absolute;
  z-index: -1;
  top: 18%;
  right: 8%;
  width: min(39vw, 600px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 29px rgba(255,255,255,0.012), 0 0 0 30px rgba(255,255,255,0.055);
}
.hero-copy { position: relative; z-index: 4; width: min(61vw, 960px); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 25px;
  color: #a59f98;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow > span:first-child { width: 27px; height: 2px; background: var(--red); }
.hero h1,
.section-heading h2,
.browser-titlebar strong,
.playbook-copy h2,
.platform-intro h2,
.offer-card h3,
.asset-row strong,
.next-copy h2,
.next-links strong,
.episode-card h3,
.empty-state h3,
.dialog-copy h2 {
  font-family: var(--display);
  font-weight: 400;
}
.hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(69px, 8.9vw, 142px);
  letter-spacing: 0.012em;
  line-height: 0.79;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { margin-top: 12px; color: var(--red-bright); font-style: normal; }
.hero-deck {
  max-width: 660px;
  margin: 38px 0 0;
  color: #b7b1aa;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.72;
}
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 35px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 51px;
  padding: 0 21px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-red { color: white; background: var(--red); }
.button-red:hover { background: var(--red-bright); }
.button-quiet { border-color: var(--line); color: #bdb7b0; background: rgba(255,255,255,0.025); }
.button-quiet:hover, .button-outline:hover { border-color: white; color: white; }
.button-outline { border-color: var(--line); background: transparent; }
.button-light { color: var(--ink); background: white; }
.button-light:hover { background: var(--paper); }
.hero-portrait {
  position: absolute;
  z-index: 3;
  top: 18%;
  right: 8%;
  width: min(39vw, 600px);
  text-align: center;
}
.portrait-ring {
  position: relative;
  width: 94%;
  aspect-ratio: 1;
  overflow: hidden;
  margin: 3% auto 0;
  border: 1px solid rgba(255,255,255,0.48);
  border-radius: 50%;
  background: #171717;
  box-shadow: 0 0 0 11px rgba(255,255,255,0.025), 0 34px 95px rgba(0,0,0,0.55);
}
.portrait-ring::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  box-shadow: inset 0 0 75px rgba(0,0,0,0.22);
  pointer-events: none;
}
.portrait-ring img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; }
.portrait-caption {
  display: inline-block;
  margin-top: 18px;
  color: #86817a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.hero-number {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -1%;
  color: transparent;
  font: 400 min(42vw, 620px)/0.8 var(--display);
  opacity: 0.78;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
}
.hero-stats {
  position: absolute;
  z-index: 4;
  right: var(--pad);
  bottom: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(44vw, 600px);
  border-top: 1px solid var(--line);
}
.hero-stats > div { padding: 14px 20px 0; border-left: 1px solid var(--line); }
.hero-stats > div:first-child { padding-left: 0; border-left: 0; }
.hero-stats strong { display: block; font: 400 36px/1 var(--display); }
.hero-stats span { display: block; margin-top: 4px; color: #77726c; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #66615b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}
.scroll-cue span { width: 36px; height: 1px; background: #625d57; }

.section-shell { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; }
.archive-section {
  position: relative;
  padding: clamp(100px, 10vw, 150px) var(--pad) 125px;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255,0,0,0.045), transparent 22%),
    var(--paper);
}
.archive-catalog-section { padding-top: 110px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 45px;
}
.section-number {
  margin: 0 0 13px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}
.section-heading h2 { margin: 0; font-size: clamp(62px, 8vw, 118px); letter-spacing: 0.012em; line-height: 0.85; }
.section-heading > p {
  max-width: 470px;
  margin: 0 0 6px;
  color: #665f58;
  font-size: 14px;
  line-height: 1.75;
}
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 44px; background: #ded8d0; }
.featured-card { position: relative; min-height: 335px; overflow: hidden; padding: 0; border: 0; cursor: pointer; color: white; background: #111; font: inherit; text-align: left; }
.featured-card:focus-visible { z-index: 2; outline: 3px solid var(--red); outline-offset: -3px; }
.featured-card img { width: 100%; height: 100%; min-height: 335px; object-fit: cover; filter: saturate(0.78) contrast(1.07); transition: transform 0.45s ease, filter 0.45s ease; }
.featured-card:nth-child(1) img { object-position: 50% 35%; }
.featured-card:nth-child(2) img { object-position: 50% 27%; }
.featured-card:nth-child(3) img { object-position: 50% 32%; }
.featured-card:nth-child(4) img { object-position: 50% 26%; }
.featured-card:nth-child(5) img { object-position: 50% 30%; }
.featured-card:nth-child(6) img { object-position: 50% 30%; }
.featured-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.08) 23%, rgba(0,0,0,0.88) 100%); }
.featured-number { position: absolute; top: -4px; right: 15px; color: rgba(255,255,255,0.13); font: 400 108px/1 var(--display); }
.featured-copy { position: absolute; right: 25px; bottom: 23px; left: 25px; }
.featured-copy small { display: block; color: #ff3e45; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; }
.featured-copy strong { display: block; margin-top: 8px; font: 400 36px/1 var(--display); letter-spacing: 0.025em; }
.featured-open { position: absolute; top: 24px; left: 24px; display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; font-size: 13px; transition: background 0.2s ease, transform 0.2s ease; }
.featured-card:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.08); }
.featured-card:hover .featured-open { background: var(--red); border-color: var(--red); transform: rotate(45deg); }

.archive-browser { overflow: hidden; border: 1px solid #242426; color: var(--paper); background: #0d0d0e; box-shadow: 0 25px 70px rgba(0,0,0,0.16); }
.browser-titlebar { display: flex; justify-content: space-between; align-items: end; gap: 30px; padding: 31px 32px 25px; border-bottom: 1px solid var(--line); }
.browser-titlebar span { display: block; margin-bottom: 7px; color: #847e77; font-size: 10px; font-weight: 700; letter-spacing: 0.17em; }
.browser-titlebar strong { display: block; font-size: clamp(34px, 3.8vw, 54px); letter-spacing: 0.018em; line-height: 0.95; }
.surprise-button { padding: 8px 0; border: 0; border-bottom: 1px solid #5b5650; cursor: pointer; color: #aaa39b; background: transparent; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.surprise-button:hover { color: white; border-color: var(--red); }
.archive-toolbar {
  position: sticky;
  z-index: 25;
  top: 70px;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto auto;
  gap: 15px;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid var(--line);
  background: rgba(16,16,17,0.94);
  backdrop-filter: blur(18px);
}
.search-field {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 45px;
  padding: 0 14px;
  background: #1c1c1f;
}
.search-field svg { width: 17px; fill: none; stroke: #8f8982; stroke-linecap: round; stroke-width: 1.5; }
.search-field input { width: 100%; border: 0; outline: 0; color: white; background: transparent; font-size: 14px; }
.search-field input::placeholder { color: #746f68; }
.search-field kbd { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid var(--line); color: #726d67; font-family: inherit; font-size: 10px; }
.filter-row { display: flex; gap: 3px; }
.filter-chip {
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid transparent;
  cursor: pointer;
  color: #77716b;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.filter-chip:hover { color: white; }
.filter-chip.is-active { border-color: rgba(255,255,255,0.22); color: white; background: #222225; }
.select-field { display: flex; align-items: center; gap: 8px; }
.select-field > span { color: #69645f; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.select-field select { border: 0; outline: 0; cursor: pointer; color: #bbb4ac; background: transparent; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.result-meta { display: flex; justify-content: space-between; align-items: center; min-height: 53px; padding: 0 25px; color: #827b74; font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.clear-button { padding: 0; border: 0; border-bottom: 1px solid #615b55; cursor: pointer; color: #8c857e; background: transparent; font-size: inherit; font-weight: inherit; letter-spacing: inherit; text-transform: inherit; }
.episode-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border-top: 1px solid var(--line); background: var(--line); }
.episode-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 27px;
  border: 0;
  cursor: pointer;
  text-align: left;
  background: var(--panel);
  isolation: isolate;
}
.episode-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.56;
  background:
    repeating-linear-gradient(135deg, transparent 0 9px, rgba(255,255,255,0.026) 9px 10px),
    radial-gradient(circle at 89% 4%, var(--glow), transparent 43%);
  transition: opacity 0.35s ease, transform 0.55s cubic-bezier(.2,.8,.2,1);
}
.episode-card::after { position: absolute; z-index: -1; right: -25%; bottom: -36%; width: 82%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.07); border-radius: 50%; content: ""; transition: transform 0.5s ease; }
.episode-card:hover::before { opacity: 0.9; transform: scale(1.04); }
.episode-card:hover::after { transform: translate(-9%, -8%) scale(1.12); }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.card-index { color: rgba(255,255,255,0.28); font: 400 17px/1 var(--display); }
.card-type { color: #aaa39b; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.card-number { position: absolute; z-index: -1; top: 32px; right: -3px; color: rgba(255,255,255,0.045); font: 400 clamp(125px, 13vw, 178px)/0.82 var(--display); transition: transform 0.5s ease, color 0.3s ease; }
.episode-card:hover .card-number { color: rgba(255,255,255,0.085); transform: translateX(-8px); }
.card-monogram { position: relative; width: 110px; height: 110px; display: grid; place-items: center; overflow: hidden; margin-top: 42px; border: 1px solid rgba(255,255,255,0.34); border-radius: 50%; color: #d7d0c7; background: rgba(7,7,7,0.25); font: 400 31px/1 var(--display); letter-spacing: 0.04em; box-shadow: 0 0 0 9px rgba(255,255,255,0.018), 0 16px 35px rgba(0,0,0,0.22); }
.photo-fallback { position: absolute; inset: 0; display: grid; place-items: center; }
.card-monogram img, .dialog-monogram img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, filter 0.4s ease; }
.episode-card:hover .card-monogram img { transform: scale(1.045); filter: contrast(1.04); }
.card-copy { margin-top: auto; padding-top: 32px; }
.episode-card h3 { max-width: 93%; margin: 0; font-size: clamp(31px, 3vw, 43px); letter-spacing: 0.015em; line-height: 0.95; }
.card-copy > p { min-height: 43px; margin: 12px 0 22px; color: #9b948d; font-size: 12px; line-height: 1.6; }
.card-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid var(--line); }
.card-meta { color: #928b84; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.card-meta i { margin: 0 3px; color: var(--red); font-style: normal; }
.card-open { display: flex; align-items: center; gap: 8px; color: #b8b1a9; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.card-open i { display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid var(--line); border-radius: 50%; font-style: normal; transition: background 0.2s ease, border-color 0.2s ease; }
.episode-card:hover .card-open i { background: var(--red); border-color: var(--red); }
.archive-footer { display: flex; justify-content: space-between; align-items: center; gap: 25px; padding: 26px; border-top: 1px solid var(--line); }
.archive-footer p { margin: 0; color: #77716a; font-size: 10px; font-weight: 700; letter-spacing: 0.13em; }
.archive-footer p i { margin: 0 5px; color: var(--red); font-style: normal; }
.empty-state { padding: 75px 24px; border-top: 1px solid var(--line); text-align: center; }
.empty-state > span { color: rgba(255,255,255,0.06); font: 400 130px/1 var(--display); }
.empty-state h3 { margin: -25px 0 7px; font-size: 40px; letter-spacing: 0.02em; }
.empty-state p { margin: 0 0 25px; color: #89837d; font-size: 12px; }

.playbook-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 10vw, 150px) var(--pad);
  background:
    radial-gradient(circle at 18% 43%, rgba(255,0,0,0.2), transparent 29%),
    repeating-linear-gradient(135deg, transparent 0 11px, rgba(255,255,255,0.025) 11px 12px),
    #09090a;
}
.playbook-section::before {
  position: absolute;
  top: 0;
  right: 12%;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--line);
  transform: rotate(-14deg);
  transform-origin: top;
}
.playbook-ghost {
  position: absolute;
  right: -1.5%;
  bottom: -8%;
  color: transparent;
  font: 400 min(37vw, 535px)/0.8 var(--display);
  -webkit-text-stroke: 1px rgba(255,255,255,0.055);
}
.playbook-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}
.playbook-cover {
  position: relative;
  display: block;
  width: min(100%, 440px);
  justify-self: end;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.035);
  box-shadow: 0 38px 90px rgba(0,0,0,0.62);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.playbook-cover::before {
  position: absolute;
  z-index: -1;
  inset: 24px -23px -23px 24px;
  border: 1px solid rgba(255,0,0,0.45);
  content: "";
}
.playbook-cover:hover { border-color: var(--red); transform: translateY(-5px); }
.playbook-cover img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.playbook-cover > span {
  display: block;
  padding: 14px 5px 4px;
  color: #827c75;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}
.playbook-copy { position: relative; max-width: 760px; }
.playbook-kicker {
  margin: 0 0 17px;
  color: #8d8780;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.21em;
}
.playbook-copy h2 {
  margin: 0;
  font-size: clamp(62px, 7.3vw, 108px);
  letter-spacing: 0.012em;
  line-height: 0.84;
}
.playbook-copy h2 em { display: inline-block; margin-top: 10px; color: var(--red); font-style: normal; }
.playbook-lead {
  max-width: 690px;
  margin: 35px 0 0;
  color: #c2bbb3;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.72;
}
.playbook-promise {
  margin: 27px 0 0;
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.playbook-form { max-width: 700px; margin-top: 30px; }
.playbook-field-row { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 8px; }
.playbook-form label { display: block; }
.playbook-form label > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.playbook-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  outline: 0;
  color: white;
  background: rgba(255,255,255,0.055);
  font: 500 13px/1 var(--sans);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.playbook-form input::placeholder { color: #7f7972; }
.playbook-form input:focus { border-color: var(--red); background: rgba(255,255,255,0.085); }
.playbook-form .button { width: 100%; margin-top: 8px; border: 0; cursor: pointer; }
.playbook-form .button > span { display: flex; width: 100%; align-items: center; justify-content: space-between; }
.playbook-form .button[data-active] { cursor: wait; opacity: 0.72; }
.playbook-errors { padding: 0; margin: 0 0 10px; color: #ffaaa6; font-size: 11px; line-height: 1.5; list-style: none; }
.playbook-errors:empty { display: none; }
.playbook-form .formkit-alert-success { padding: 16px 18px; border: 1px solid rgba(255,255,255,0.18); color: white; background: rgba(255,255,255,0.06); font-size: 13px; line-height: 1.55; }
.playbook-fineprint { margin: 12px 0 0; color: #77716b; font-size: 10px; letter-spacing: 0.06em; }
.playbook-audio {
  max-width: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 15px 18px;
  align-items: end;
  margin-top: 31px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}
.playbook-audio-copy { grid-column: 1 / -1; }
.playbook-audio-kicker {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.playbook-audio h3 {
  margin: 0;
  font: 400 clamp(31px, 3.4vw, 46px)/0.95 var(--display);
  letter-spacing: 0.02em;
}
.playbook-audio-copy > p:last-child {
  max-width: none;
  margin: 10px 0 0;
  color: #9c958d;
  font-size: 13px;
  line-height: 1.65;
  white-space: nowrap;
}
.playbook-audio audio {
  width: 100%;
  min-width: 0;
  height: 44px;
  accent-color: var(--red);
}
.playbook-audio-button { min-height: 44px; white-space: nowrap; }

.platform-section {
  position: relative;
  overflow: hidden;
  padding: 135px var(--pad) 0;
  background:
    linear-gradient(112deg, rgba(255,0,0,0.12), transparent 31%),
    repeating-linear-gradient(135deg, transparent 0 11px, rgba(255,255,255,0.018) 11px 12px),
    #0a0a0b;
}
.platform-section::before { position: absolute; top: 0; right: 16%; width: 1px; height: 100%; content: ""; background: var(--line); transform: rotate(16deg); transform-origin: top; }
.platform-number { position: absolute; top: 58px; right: -2%; color: rgba(255,255,255,0.035); font: 400 min(31vw, 455px)/0.8 var(--display); }
.platform-intro { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.52fr); gap: 70px; align-items: end; }
.platform-intro h2 { margin: 0; font-size: clamp(57px, 7.2vw, 105px); letter-spacing: 0.012em; line-height: 0.86; }
.platform-intro h2 em, .next-copy h2 em { color: var(--red-bright); font-style: normal; }
.platform-intro > p { margin: 0 0 5px; color: #aba49c; font-size: 14px; line-height: 1.75; }
.offer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 54px; background: rgba(255,255,255,0.14); }
.offer-card { position: relative; min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 29px; background: linear-gradient(145deg, #82070b, #c81218 57%, #560306); }
.offer-card::before { position: absolute; inset: 0; content: ""; opacity: 0.55; background: repeating-linear-gradient(135deg, transparent 0 9px, rgba(255,255,255,0.06) 9px 10px); }
.offer-card.is-bright { background: linear-gradient(145deg, #a3090f, #e91e25 58%, #7b060a); }
.offer-card > * { position: relative; z-index: 1; }
.offer-number { color: rgba(255,255,255,0.4); font: 400 17px/1 var(--display); }
.offer-card small { color: rgba(255,255,255,0.7); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; }
.offer-card h3 { margin: 9px 0 11px; font-size: clamp(36px, 3.8vw, 53px); letter-spacing: 0.012em; line-height: 0.92; }
.offer-card p { margin: 0; color: rgba(255,255,255,0.79); font-size: 12px; line-height: 1.65; }
.offer-note { color: rgba(255,255,255,0.58); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; }
.asset-row { position: relative; z-index: 2; display: grid; grid-template-columns: 1.7fr repeat(4, 0.65fr); align-items: stretch; margin-top: 2px; border: 1px solid var(--line); background: #101011; }
.asset-row > div { min-height: 120px; display: flex; flex-direction: column; justify-content: center; padding: 22px; border-left: 1px solid var(--line); }
.asset-row > div:first-child { border-left: 0; }
.asset-row strong { display: block; font-size: 32px; letter-spacing: 0.02em; line-height: 0.95; }
.asset-row span { display: block; margin-top: 5px; color: #7c7670; font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.asset-copy > span { margin: 0 0 8px; color: var(--red-bright); }
.asset-copy > strong { font-size: 27px; }
.next-panel { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; overflow: hidden; margin-top: 68px; border: 1px solid rgba(255,255,255,0.22); background: linear-gradient(122deg, #111113 0 54%, #9c090e 54% 100%); }
.next-panel::before { position: absolute; inset: 0; content: ""; opacity: 0.42; background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(255,255,255,0.035) 10px 11px); }
.next-ghost { position: absolute; top: -40px; left: 42%; color: rgba(255,255,255,0.055); font: 400 290px/1 var(--display); }
.next-copy { position: relative; z-index: 2; padding: clamp(47px, 6vw, 82px); }
.next-copy h2 { margin: 0; font-size: clamp(68px, 9vw, 128px); letter-spacing: 0.015em; line-height: 0.76; }
.next-copy > p:last-child { max-width: 610px; margin: 32px 0 0; color: #aaa39b; font-size: 13px; line-height: 1.75; }
.next-links { position: relative; z-index: 2; display: grid; align-self: stretch; background: rgba(93,4,8,0.18); }
.next-links a { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 27px 31px; border-bottom: 1px solid rgba(255,255,255,0.21); transition: background 0.2s ease; }
.next-links a:last-child { border-bottom: 0; }
.next-links a:hover { background: rgba(255,255,255,0.08); }
.next-links small { display: block; margin-bottom: 5px; color: rgba(255,255,255,0.64); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; }
.next-links strong { display: block; font-size: 34px; letter-spacing: 0.02em; line-height: 1; }
.next-links i { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; font-style: normal; transition: transform 0.2s ease; }
.next-links a:hover i { transform: rotate(45deg); }
.platform-cta { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 35px 0 75px; }
.platform-cta p { margin: 0; color: #9e9891; font-size: 13px; letter-spacing: 0.035em; }
.platform-cta p strong { color: white; }
.site-footer { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 24px; margin: 0 calc(var(--pad) * -1); padding: 26px var(--pad); border-top: 1px solid var(--line); color: #706b65; font-size: 10px; font-weight: 700; letter-spacing: 0.13em; }
.footer-links { display: flex; gap: 25px; }
.footer-links a { color: #a8a199; transition: color 0.2s ease; }
.footer-links a:hover { color: white; }

.episode-dialog {
  width: min(960px, calc(100vw - 40px));
  max-height: min(760px, calc(100svh - 40px));
  padding: 0;
  border: 1px solid rgba(255,255,255,0.24);
  color: var(--paper);
  background: #111113;
  box-shadow: 0 40px 130px rgba(0,0,0,0.78);
}
.episode-dialog[open] { display: grid; grid-template-columns: 0.8fr 1.2fr; animation: dialog-in 0.26s ease both; }
.episode-dialog::backdrop { background: rgba(0,0,0,0.82); backdrop-filter: blur(9px); }
.dialog-close { position: absolute; z-index: 3; top: 15px; right: 15px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; color: #c0bab2; background: rgba(7,7,7,0.4); font-size: 23px; font-weight: 300; }
.dialog-visual { position: relative; display: grid; place-items: center; min-height: 575px; overflow: hidden; background: radial-gradient(circle at 42% 38%, var(--dialog-glow), transparent 52%), repeating-linear-gradient(135deg, transparent 0 9px, rgba(255,255,255,0.03) 9px 10px), #171719; }
.dialog-visual::after { position: absolute; width: 105%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; content: ""; }
.dialog-number { position: absolute; top: 18px; left: -4px; color: rgba(255,255,255,0.07); font: 400 165px/0.85 var(--display); }
.dialog-monogram { position: relative; z-index: 2; display: grid; place-items: center; width: 330px; aspect-ratio: 1; overflow: hidden; border: 1px solid rgba(255,255,255,0.42); border-radius: 50%; font: 400 44px/1 var(--display); letter-spacing: 0.04em; box-shadow: 0 0 0 13px rgba(255,255,255,0.024), 0 28px 65px rgba(0,0,0,0.35); }
.dialog-monogram.has-show-art { width: min(90%, 440px); aspect-ratio: 16 / 9; border-radius: 3px; background: #09090a; box-shadow: 0 0 0 13px rgba(255,255,255,0.024), 0 28px 65px rgba(0,0,0,0.35); }
.dialog-monogram.has-show-art.is-square { width: min(78%, 360px); aspect-ratio: 1; }
.dialog-monogram.has-show-art img { object-fit: contain; background: #09090a; }
.dialog-copy { align-self: center; padding: 65px 60px; }
.dialog-copy .eyebrow { margin-bottom: 20px; }
.dialog-copy h2 { margin: 0; font-size: clamp(54px, 6vw, 78px); letter-spacing: 0.015em; line-height: 0.83; }
.dialog-title { margin: 22px 0 0; color: #c0bab3; font-size: 16px; font-weight: 600; line-height: 1.45; }
.dialog-summary { margin: 25px 0; color: #a19a93; font-size: 14px; line-height: 1.72; }
.dialog-topics { display: flex; flex-wrap: wrap; gap: 6px; }
.dialog-topics span { padding: 7px 9px; border: 1px solid var(--line); color: #9c958e; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.dialog-actions { display: flex; gap: 9px; margin-top: 32px; }
.video-dialog {
  width: min(1120px, calc(100vw - 40px));
  max-height: calc(100svh - 40px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.24);
  color: var(--paper);
  background: #09090a;
  box-shadow: 0 40px 130px rgba(0,0,0,0.82);
}
.video-dialog[open] { display: block; animation: dialog-in 0.26s ease both; }
.video-dialog::backdrop { background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); }
.video-dialog-close { background: rgba(7,7,7,0.82); }
.video-frame { width: 100%; aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 21px 25px 23px; border-top: 1px solid var(--line); }
.video-footer p { margin: 0 0 5px; color: var(--red); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; }
.video-footer h2 { margin: 0; font: 400 27px/1 var(--display); letter-spacing: 0.03em; }
.video-footer a { flex: 0 0 auto; color: #bdb7b0; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.video-footer a:hover { color: white; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(15px) scale(0.986); } }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1140px) {
  .hero-copy { width: 63vw; }
  .hero-geometry, .hero-portrait { top: 20%; right: 2vw; width: 38vw; }
  .archive-toolbar { grid-template-columns: 1fr auto; }
  .filter-row { grid-column: 1 / -1; grid-row: 2; overflow-x: auto; }
  .episode-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .asset-row { grid-template-columns: 1.4fr repeat(4, 0.65fr); }
}

@media (max-width: 820px) {
  :root { --pad: 22px; }
  .site-header { grid-template-columns: minmax(0, 1fr) auto auto; gap: 12px; padding: 13px var(--pad); }
  .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px var(--pad) 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    background: rgba(7,7,7,0.97);
    box-shadow: 0 20px 45px rgba(0,0,0,0.38);
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    backdrop-filter: blur(18px);
  }
  .site-header nav a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 12px; }
  .site-header nav a:last-child { border-bottom: 0; }
  .site-header nav a::after { display: none; }
  .site-header.is-menu-open nav { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .menu-toggle { display: grid; }
  .site-header.is-menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-header.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.is-menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .brand img { width: 54px; height: 54px; }
  .brand-copy strong { font-size: 22px; }
  .private-badge { font-size: 9px; }
  .hero { min-height: 990px; align-items: start; padding-top: 140px; background: linear-gradient(164deg, #070707 0 62%, #141112 100%); }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(65px, 20vw, 108px); }
  .hero h1 em { margin-top: 8px; }
  .hero-deck { max-width: 560px; margin-top: 26px; font-size: 14px; }
  .hero-actions { flex-wrap: wrap; }
  .hero-portrait { top: auto; right: 50%; bottom: 155px; width: min(72vw, 510px); transform: translateX(50%); }
  .hero-geometry { top: auto; right: 50%; bottom: 117px; width: 89vw; transform: translateX(50%); }
  .portrait-ring { width: 100%; margin-top: 0; }
  .portrait-caption { display: none; }
  .hero-number { top: auto; right: -9%; bottom: 100px; font-size: 74vw; }
  .hero-stats { right: var(--pad); bottom: 42px; left: var(--pad); width: auto; }
  .hero-stats > div { padding-right: 9px; padding-left: 12px; }
  .hero-stats strong { font-size: 30px; }
  .scroll-cue { display: none; }
  .section-heading, .platform-intro { grid-template-columns: 1fr; gap: 24px; }
  .playbook-layout { grid-template-columns: 1fr; gap: 70px; }
  .playbook-copy { grid-row: 1; }
  .playbook-cover { grid-row: 2; width: min(79vw, 430px); justify-self: center; }
  .playbook-field-row { grid-template-columns: 1fr; }
  .playbook-audio { grid-template-columns: 1fr; align-items: stretch; }
  .playbook-audio-button { width: 100%; }
  .playbook-audio-copy > p:last-child { white-space: normal; }
  .section-heading h2 { font-size: clamp(60px, 17vw, 95px); }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card { min-height: 330px; }
  .archive-toolbar { position: relative; top: auto; display: flex; flex-wrap: wrap; padding: 12px; }
  .search-field { width: 100%; }
  .filter-row { order: 3; width: 100%; padding-bottom: 3px; }
  .select-field { margin-left: auto; min-height: 38px; }
  .episode-grid { grid-template-columns: 1fr; }
  .episode-card { min-height: 385px; }
  .card-monogram { width: 96px; height: 96px; margin-top: 40px; }
  .browser-titlebar { align-items: flex-start; flex-direction: column; }
  .archive-footer { align-items: stretch; flex-direction: column; }
  .platform-intro h2 { font-size: clamp(55px, 15vw, 88px); }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 285px; }
  .asset-row { grid-template-columns: repeat(2, 1fr); }
  .asset-row > div { border-top: 1px solid var(--line); }
  .asset-row .asset-copy { grid-column: 1 / -1; border-top: 0; }
  .asset-row > div:nth-child(even) { border-left: 0; }
  .next-panel { grid-template-columns: 1fr; background: linear-gradient(165deg, #111113 0 50%, #9c090e 50% 100%); }
  .next-copy { padding: 55px 27px 70px; }
  .next-copy h2 { font-size: clamp(72px, 22vw, 113px); }
  .platform-cta { align-items: flex-start; flex-direction: column; }
  .site-footer { flex-direction: column; }
  .episode-dialog[open] { grid-template-columns: 1fr; overflow-y: auto; }
  .dialog-visual { min-height: 260px; }
  .dialog-monogram { width: 216px; font-size: 31px; }
  .dialog-number { font-size: 118px; }
  .dialog-copy { padding: 43px 26px; }
  .dialog-actions { align-items: stretch; flex-direction: column; }
  .video-footer { align-items: flex-start; flex-direction: column; gap: 14px; }
  .video-footer h2 { font-size: 23px; }
}

@media (max-width: 520px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto; }
  .private-badge { display: none; }
  .brand-copy span { letter-spacing: 0.14em; }
  .hero { min-height: auto; grid-template-rows: auto auto; padding: 127px var(--pad) 0; }
  .hero h1 { font-size: 67px; }
  .hero-portrait {
    position: relative;
    right: auto;
    bottom: auto;
    grid-row: 2;
    width: min(70vw, 360px);
    margin: 64px auto 154px;
    transform: none;
  }
  .hero-actions .button { min-height: 47px; padding: 0 15px; gap: 16px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stats strong { font-size: 27px; }
  .hero-stats span { font-size: 6px; letter-spacing: 0.1em; }
  .featured-card, .featured-card img { min-height: 285px; }
  .playbook-copy h2 { font-size: clamp(58px, 18vw, 78px); }
  .playbook-audio h3 { font-size: 34px; }
  .browser-titlebar, .result-meta, .archive-footer { padding-right: 18px; padding-left: 18px; }
  .asset-row strong { font-size: 28px; }
  .next-links a { padding: 23px 20px; }
  .next-links strong { font-size: 30px; }
  .footer-links { flex-wrap: wrap; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
