:root {
  color-scheme: dark;
  --ink: #08070b;
  --night: #121018;
  --panel: rgba(19, 17, 26, 0.82);
  --cream: #fff1d1;
  --muted: #b9afbb;
  --line: rgba(255, 241, 209, 0.16);
  --pink: #ff4fb8;
  --cyan: #38d9ff;
  --amber: #ffb13b;
  --green: #89f06f;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 79, 184, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 10%, rgba(56, 217, 255, 0.18), transparent 30rem),
    linear-gradient(135deg, #08070b 0%, #18111a 48%, #090d13 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

body::after {
  position: fixed;
  inset: -18vh -14vw;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 38%, rgba(255, 79, 184, 0.14), transparent 24rem),
    radial-gradient(circle at 82% 46%, rgba(56, 217, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 52% 84%, rgba(255, 177, 59, 0.08), transparent 22rem);
  content: "";
  filter: blur(2px);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
audio {
  font: inherit;
}

.grain,
.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: 10;
  opacity: 0.14;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.1) 49% 50%, transparent 51% 100%),
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 220px 220px, 3px 3px;
}

.scanline {
  z-index: 9;
  opacity: 0.08;
  background: repeating-linear-gradient(to bottom, transparent 0 7px, rgba(255, 255, 255, 0.18) 8px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 241, 209, 0.1);
  background: linear-gradient(180deg, rgba(8, 7, 11, 0.9), rgba(8, 7, 11, 0.64));
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

main {
  padding-top: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(250px, 48vw);
}

.brand img {
  width: 100%;
  height: auto;
  animation: logoGlow 5.6s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px rgba(255, 79, 184, 0.36));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 7, 11, 0.64);
}

.main-nav a {
  min-width: 5.25rem;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--cream);
  background: rgba(255, 241, 209, 0.1);
  outline: none;
}

.motion-reveal {
  transition:
    opacity 700ms ease,
    transform 760ms cubic-bezier(0.2, 0.78, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-motion .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
}

.has-motion .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) 0 clamp(1.5rem, 3vw, 3rem);
}

.hero::before {
  position: absolute;
  inset: 10% 12% auto auto;
  z-index: -2;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 177, 59, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 177, 59, 0.88), rgba(255, 79, 184, 0.26) 38%, transparent 68%);
  box-shadow: 0 0 90px rgba(255, 177, 59, 0.18);
  content: "";
  filter: blur(1px);
  animation: auraFloat 8s ease-in-out infinite alternate;
}

.film-edge {
  position: absolute;
  top: 7%;
  bottom: 7%;
  width: 22px;
  border-block: 1px solid var(--line);
  background:
    repeating-linear-gradient(to bottom, rgba(255, 241, 209, 0.34) 0 14px, transparent 14px 28px);
  opacity: 0.34;
  animation: filmRoll 16s linear infinite;
}

.film-edge-left {
  left: -42px;
}

.film-edge-right {
  right: -42px;
  animation-duration: 19s;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-copy {
  min-width: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 6.7vw, 6.15rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(255, 79, 184, 0.75),
    0 0 34px rgba(56, 217, 255, 0.22);
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(110deg, var(--cream), var(--pink) 48%, var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.74em;
  line-height: 1.02;
  text-shadow: none;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.05rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.guest-title {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.34em;
  font-weight: 850;
  line-height: 1.15;
  text-transform: none;
}

.episode-card .guest-title {
  margin-top: 0.2rem;
  font-size: 0.52em;
}

.hero-text,
.section-heading p,
.hosts-copy p,
.review-panel p,
.now-playing p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.15rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #130711;
  background: linear-gradient(135deg, var(--amber), var(--pink));
  box-shadow: 0 0 28px rgba(255, 79, 184, 0.32);
}

.button-secondary {
  border-color: rgba(56, 217, 255, 0.36);
  color: var(--cream);
  background: rgba(56, 217, 255, 0.09);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 0 0 28px rgba(56, 217, 255, 0.2);
}

.button-icon {
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 7, 11, 0.18);
  font-size: 0.72rem;
}

.now-playing {
  position: relative;
  min-width: 0;
  padding: clamp(1rem, 2.3vw, 1.35rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: panelDrift 7.8s ease-in-out infinite alternate;
}

.now-playing::before,
.now-playing::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--cream) 0 12px, transparent 12px 26px);
  content: "";
  opacity: 0.22;
  animation: sprocketSlide 7s linear infinite;
}

.now-playing::before {
  top: 0;
}

.now-playing::after {
  bottom: 0;
}

.cassette-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(137, 240, 111, 0.38);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.player-layout {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
}

.cover-art {
  width: 132px;
  height: 132px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 241, 209, 0.2);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.36);
  transition: transform 420ms ease, filter 420ms ease;
}

.now-playing:hover .cover-art {
  filter: saturate(1.08) contrast(1.04);
  transform: rotate(-1.4deg) scale(1.035);
}

.episode-kicker {
  margin-bottom: 0.35rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audio-player {
  width: 100%;
  height: 42px;
  margin-top: 1.2rem;
  accent-color: var(--pink);
}

.film-card {
  position: relative;
  margin-top: 0.9rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 241, 209, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(56, 217, 255, 0.1), transparent 46%),
    linear-gradient(25deg, rgba(255, 79, 184, 0.12), transparent 58%),
    rgba(8, 7, 11, 0.38);
  overflow: hidden;
}

.film-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 241, 209, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 241, 209, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  pointer-events: none;
}

.film-card-header,
.film-facts {
  position: relative;
  z-index: 1;
}

.film-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.film-card-header .eyebrow {
  margin-bottom: 0;
  font-size: 0.68rem;
}

.film-card-title {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.film-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0;
}

.film-facts div {
  min-width: 0;
  padding: 0.48rem 0.52rem;
  border: 1px solid rgba(255, 241, 209, 0.1);
  border-radius: 8px;
  background: rgba(8, 7, 11, 0.34);
}

.film-facts dt {
  margin-bottom: 0.16rem;
  color: var(--green);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.film-facts dd {
  margin: 0;
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.film-facts div:last-child {
  grid-column: 1 / -1;
}

.meter {
  height: 6px;
  margin-top: 1rem;
  border-radius: 999px;
  background: rgba(255, 241, 209, 0.12);
  overflow: hidden;
}

.meter span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--amber));
  animation: tape 5s ease-in-out infinite alternate;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.episodes-section {
  padding-top: clamp(0.75rem, 1.6vw, 1.25rem);
}

.editorial-preview-section {
  padding-top: clamp(0.75rem, 1.5vw, 1.25rem);
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.season-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 100%;
  margin-bottom: 1.25rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 7, 11, 0.64);
}

.season-tab {
  min-width: 7.5rem;
  min-height: 2.85rem;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.season-tab:hover,
.season-tab:focus-visible {
  color: var(--cream);
  background: rgba(255, 241, 209, 0.09);
  outline: none;
}

.season-tab.is-active {
  border-color: rgba(255, 177, 59, 0.42);
  color: #130711;
  background: linear-gradient(135deg, var(--amber), var(--pink));
  box-shadow: 0 0 24px rgba(255, 79, 184, 0.22);
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.episode-card {
  position: relative;
  display: block;
  min-height: 240px;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  font: inherit;
  text-align: left;
  background:
    linear-gradient(150deg, rgba(255, 79, 184, 0.16), transparent 46%),
    linear-gradient(25deg, rgba(56, 217, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.episode-card:nth-child(2n) {
  animation: cardFloat 7.2s ease-in-out infinite alternate;
}

.episode-card:nth-child(2n + 1) {
  animation: cardFloat 8.4s ease-in-out 900ms infinite alternate;
}

.episode-card.is-hidden {
  display: none;
}

.episode-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 7, 11, 0.08) 0%, rgba(8, 7, 11, 0.54) 48%, rgba(8, 7, 11, 0.9) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 241, 209, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(255, 79, 184, 0.22), rgba(56, 217, 255, 0.1));
  content: "";
}

.episode-card::before {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 2;
  height: 42px;
  border-block: 1px solid rgba(255, 241, 209, 0.16);
  background: repeating-linear-gradient(90deg, rgba(255, 241, 209, 0.34) 0 10px, transparent 10px 20px);
  content: "";
  opacity: 0.26;
  animation: sprocketSlide 9s linear infinite;
}

.episode-card:hover,
.episode-card:focus-visible,
.episode-card.is-active {
  border-color: rgba(255, 177, 59, 0.54);
  transform: translateY(-4px);
  outline: none;
}

.episode-card:focus-visible {
  box-shadow:
    0 0 0 3px rgba(56, 217, 255, 0.26),
    0 16px 42px rgba(0, 0, 0, 0.24);
}

.episode-card.featured {
  background:
    linear-gradient(150deg, rgba(255, 79, 184, 0.16), transparent 46%),
    linear-gradient(25deg, rgba(56, 217, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.episode-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 220ms ease, filter 220ms ease;
}

.episode-card:hover .episode-image,
.episode-card:focus-visible .episode-image,
.episode-card.is-active .episode-image {
  filter: saturate(1.14) contrast(1.05);
  transform: scale(1.06);
}

.episode-card > :not(.episode-image) {
  position: relative;
  z-index: 3;
}

.play-card {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(255, 241, 209, 0.36);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(8, 7, 11, 0.6);
  place-items: center;
  pointer-events: none;
  transition: transform 160ms ease, background 160ms ease;
}

.episode-card:hover .play-card,
.episode-card:focus-visible .play-card,
.episode-card.is-active .play-card {
  background: var(--pink);
  transform: scale(1.05);
}

.episode-season {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.episode-card-title {
  display: block;
  max-width: 14ch;
  margin-bottom: 0.45rem;
  color: var(--cream);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.08;
}

.episode-card-meta {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.weekly-fact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  margin: 0;
  padding: clamp(1.15rem, 3vw, 1.75rem);
  border: 1px solid rgba(255, 241, 209, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(56, 217, 255, 0.13), transparent 38%),
    linear-gradient(20deg, rgba(255, 79, 184, 0.18), transparent 52%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.weekly-fact::before {
  position: absolute;
  inset: 0 0 auto;
  height: 26px;
  border-block: 1px solid rgba(255, 241, 209, 0.14);
  background: repeating-linear-gradient(90deg, rgba(255, 241, 209, 0.34) 0 11px, transparent 11px 24px);
  content: "";
  opacity: 0.3;
}

.weekly-fact::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: clamp(5.5rem, 10vw, 8rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 241, 209, 0.15);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 241, 209, 0.08) 0 13%, transparent 14% 28%, rgba(255, 79, 184, 0.11) 29% 30%, transparent 31%),
    conic-gradient(from 18deg, rgba(56, 217, 255, 0.08), rgba(255, 79, 184, 0.1), rgba(255, 177, 59, 0.08), rgba(56, 217, 255, 0.08));
  content: "";
  opacity: 0.7;
  pointer-events: none;
}

.weekly-fact-copy,
.weekly-fact-meta {
  position: relative;
  z-index: 1;
}

.weekly-fact .eyebrow {
  margin-bottom: 0.45rem;
}

.weekly-fact-title {
  max-width: 18ch;
  margin: 0 0 0.55rem;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.weekly-fact-text {
  max-width: 66ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.weekly-fact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  max-width: 20rem;
}

.weekly-fact-meta span {
  min-height: 2.45rem;
  padding: 0.72rem 0.92rem;
  border: 1px solid rgba(255, 241, 209, 0.18);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(8, 7, 11, 0.58);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(255, 79, 184, 0.1);
}

.weekly-fact-meta span:first-child {
  color: #130711;
  background: linear-gradient(135deg, var(--cyan), var(--pink), var(--amber));
}

.editorial-heading {
  margin-bottom: 0.8rem;
}

.editorial-heading h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.3rem, 5.2vw, 5rem);
  line-height: 0.9;
  white-space: nowrap;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1rem;
}

.editorial-preview-section .weekly-fact {
  margin-top: 1rem;
}

.editorial-card {
  position: relative;
  min-height: 286px;
  padding: clamp(1rem, 2.5vw, 1.45rem);
  border: 1px solid rgba(255, 241, 209, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(56, 217, 255, 0.12), transparent 38%),
    linear-gradient(25deg, rgba(255, 79, 184, 0.14), transparent 58%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.editorial-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 38px;
  border-block: 1px solid rgba(255, 241, 209, 0.12);
  background: repeating-linear-gradient(90deg, rgba(255, 241, 209, 0.24) 0 9px, transparent 9px 19px);
  content: "";
  opacity: 0.22;
}

.editorial-card::after {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 4.8rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 241, 209, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 241, 209, 0.08) 0 17%, transparent 18%),
    conic-gradient(from 42deg, rgba(56, 217, 255, 0.08), rgba(255, 79, 184, 0.12), rgba(255, 177, 59, 0.08), rgba(56, 217, 255, 0.08));
  content: "";
  pointer-events: none;
}

.editorial-card > * {
  position: relative;
  z-index: 1;
}

.editorial-card-label {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.editorial-card-label span {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 241, 209, 0.2);
  border-radius: 50%;
  color: #130711;
  background: linear-gradient(135deg, var(--cyan), var(--pink), var(--amber));
  font-size: 0.78rem;
  font-weight: 950;
  place-items: center;
}

.editorial-card-label .eyebrow {
  margin: 0;
}

.remembered-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: remembered;
}

.remembered-list li {
  position: relative;
  min-height: 4.2rem;
  padding: 0.75rem 1rem 0.75rem 3.8rem;
  border: 1px solid rgba(255, 241, 209, 0.12);
  border-radius: 8px;
  background: rgba(8, 7, 11, 0.38);
  counter-increment: remembered;
}

.remembered-list li::before {
  position: absolute;
  top: 0.78rem;
  left: 1rem;
  color: var(--green);
  content: counter(remembered, decimal-leading-zero);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.remembered-list strong,
.scene-title {
  color: var(--cream);
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  line-height: 1.05;
}

.remembered-list p,
.scene-text {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.scene-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.scene-title {
  max-width: 14ch;
  margin: auto 0 0.75rem;
  font-size: clamp(1.9rem, 3.7vw, 3.6rem);
  line-height: 0.95;
}

.scene-text {
  max-width: 44ch;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.stats-section {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.stats-grid,
.stats-detail-grid {
  display: grid;
  gap: 1rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.stats-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(56, 217, 255, 0.12), transparent 42%),
    linear-gradient(25deg, rgba(255, 79, 184, 0.16), transparent 56%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: 220px;
  padding: 1rem;
  overflow: hidden;
  animation: cardFloat 8.5s ease-in-out infinite alternate;
}

.stat-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 36px;
  background: repeating-linear-gradient(90deg, rgba(255, 241, 209, 0.24) 0 8px, transparent 8px 17px);
  content: "";
  opacity: 0.22;
  animation: sprocketSlide 10s linear infinite reverse;
}

.stat-card::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 241, 209, 0.13), transparent 18%),
    linear-gradient(180deg, transparent, rgba(8, 7, 11, 0.34));
  content: "";
  pointer-events: none;
}

.stat-card > * {
  position: relative;
  z-index: 1;
}

.stat-icon {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0 0.35rem;
  border: 1px solid rgba(255, 241, 209, 0.26);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(8, 7, 11, 0.46);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  place-items: center;
  text-transform: uppercase;
}

.stat-value {
  display: block;
  min-width: 0;
  margin: 1.45rem 0 1.1rem;
  color: var(--cream);
  font-size: clamp(2.15rem, 2.9vw, 2.95rem);
  line-height: 0.9;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  white-space: nowrap;
}

.stat-decade .stat-value {
  font-size: clamp(2.15rem, 2.9vw, 2.95rem);
}

.stat-label {
  display: block;
  margin: auto 0 0.55rem;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-card p,
.overlap-item p,
.overlap-empty {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.stat-meter {
  display: block;
  height: 0.55rem;
  margin-top: 1rem;
  border: 1px solid rgba(255, 241, 209, 0.14);
  border-radius: 999px;
  background: rgba(8, 7, 11, 0.58);
  overflow: hidden;
}

.stat-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--amber));
  background-size: 180% 100%;
  animation: meterShimmer 4.8s ease-in-out infinite alternate;
}

.stats-detail-grid {
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

.stats-panel {
  min-width: 0;
  padding: 1.2rem;
  overflow: hidden;
}

.stats-panel::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 241, 209, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 241, 209, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  pointer-events: none;
}

.stats-panel-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.stats-panel-heading .eyebrow {
  margin-bottom: 0.55rem;
}

.stats-panel-heading h3 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
}

.decade-chart {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
}

.decade-row {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr) 4.8rem;
  gap: 0.85rem;
  align-items: center;
}

.decade-row > span:first-child,
.decade-row strong,
.overlap-item strong,
.overlap-item span {
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decade-row > span:first-child {
  color: var(--cream);
}

.decade-row strong {
  color: var(--amber);
  text-align: right;
}

.decade-bar {
  display: block;
  height: 1rem;
  border: 1px solid rgba(255, 241, 209, 0.14);
  border-radius: 999px;
  background: rgba(8, 7, 11, 0.56);
  overflow: hidden;
}

.decade-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--amber));
}

.overlap-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.overlap-item {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 241, 209, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 79, 184, 0.12), transparent),
    rgba(8, 7, 11, 0.42);
}

.overlap-item strong,
.overlap-item span {
  display: block;
}

.overlap-item strong {
  color: var(--cream);
}

.overlap-item span {
  margin: 0.25rem 0 0.55rem;
  color: var(--green);
}

.hosts-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hosts-copy blockquote {
  margin: 2rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--pink);
  color: var(--cream);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1.05;
}

.hosts-image-wrap {
  position: relative;
  isolation: isolate;
  animation: panelDrift 8.5s ease-in-out infinite alternate;
}

.hosts-image-wrap::before {
  position: absolute;
  inset: 8% -8% -8% 8%;
  z-index: -1;
  border: 1px solid rgba(56, 217, 255, 0.24);
  border-radius: 8px;
  background: rgba(56, 217, 255, 0.08);
  content: "";
}

.hosts-image-wrap > img:first-child {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.mic-love {
  position: absolute;
  right: -1.5rem;
  bottom: -2.5rem;
  width: 24%;
  height: auto;
  min-width: 84px;
  opacity: 0.35;
  filter: invert(1);
}

.review-section {
  position: relative;
  min-height: 680px;
  padding: clamp(4rem, 9vw, 8rem) 1rem;
  background:
    linear-gradient(90deg, rgba(8, 7, 11, 0.94), rgba(8, 7, 11, 0.62)),
    image-set(url("assets/vhs-room.jpg") 1x) center right / cover;
  overflow: hidden;
}

.review-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 79, 184, 0.14), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255, 241, 209, 0.06) 22px 23px);
  content: "";
}

.review-panel {
  position: relative;
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(255, 241, 209, 0.2);
  border-radius: 8px;
  background: rgba(8, 7, 11, 0.74);
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-follow,
.social-link {
  display: inline-flex;
  align-items: center;
}

.social-follow {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.social-link {
  gap: 0.45rem;
  min-height: 2.25rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(56, 217, 255, 0.26);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(56, 217, 255, 0.06);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(255, 79, 184, 0.46);
  color: var(--cream);
  background: rgba(255, 79, 184, 0.1);
  outline: none;
}

.social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-link svg path {
  fill: currentColor;
  stroke: none;
}

@keyframes tape {
  from {
    transform: translateX(-16%);
  }

  to {
    transform: translateX(132%);
  }
}

@keyframes grainDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 220px 120px, 24px 36px;
  }
}

@keyframes scanlineFloat {
  from {
    background-position-y: 0;
  }

  to {
    background-position-y: 72px;
  }
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 0 14px rgba(255, 79, 184, 0.28));
  }

  to {
    filter: drop-shadow(0 0 26px rgba(56, 217, 255, 0.26));
  }
}

@keyframes auraFloat {
  from {
    scale: 0.98;
  }

  to {
    scale: 1.04;
  }
}

@keyframes filmRoll {
  from {
    background-position-y: 0;
  }

  to {
    background-position-y: 280px;
  }
}

@keyframes sprocketSlide {
  from {
    background-position-x: 0;
  }

  to {
    background-position-x: 260px;
  }
}

@keyframes panelDrift {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -8px;
  }
}

@keyframes cardFloat {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -6px;
  }
}

@keyframes meterShimmer {
  from {
    background-position: 0 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .section {
    width: min(100% - 24px, 720px);
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 1rem 0 0.75rem;
  }

  main {
    padding-top: 144px;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .main-nav a {
    flex: 1;
    min-width: 0;
    padding-inline: 0.72rem;
  }

  .hero,
  .hosts-section,
  .section-heading,
  .editorial-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .film-edge {
    display: none;
  }

  .episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weekly-fact {
    grid-template-columns: 1fr;
  }

  .weekly-fact-meta {
    justify-content: flex-start;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-detail-grid {
    grid-template-columns: 1fr;
  }

  .overlap-list {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .player-layout {
    grid-template-columns: 1fr;
  }

  .film-card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .film-card-title {
    text-align: left;
  }

  .film-facts {
    grid-template-columns: 1fr;
  }

  .cover-art {
    width: min(100%, 240px);
    height: min(100vw - 48px, 240px);
  }

  .episode-grid {
    grid-template-columns: 1fr;
  }

  .weekly-fact {
    padding-top: 2.4rem;
  }

  .weekly-fact-title {
    max-width: 12ch;
  }

  .weekly-fact-meta span {
    flex: 1 1 auto;
    text-align: center;
  }

  .editorial-heading h2 {
    font-size: clamp(2.2rem, 13vw, 3.6rem);
  }

  .editorial-card {
    min-height: auto;
  }

  .editorial-card::after {
    width: 3.6rem;
  }

  .remembered-list li {
    padding-left: 3.25rem;
  }

  .scene-title {
    max-width: 12ch;
    margin-top: 2.5rem;
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .season-tabs {
    display: flex;
  }

  .season-tab {
    flex: 1;
    min-width: 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .decade-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .decade-row strong {
    text-align: left;
  }

  .episode-card {
    min-height: 210px;
  }

  .review-section {
    min-height: auto;
    background-position: center;
  }

  .mic-love {
    right: 0;
    bottom: -1.25rem;
  }
}

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

  body::after,
  .hero::before,
  .film-edge-left,
  .film-edge-right {
    transform: none !important;
  }
}
