/* =========================================================================
   WHAT'S YOUR FAVORITE SCARY MOVIE — relaunch site
   Design system  ·  cozy-horror direction (1b)
   Palette: near-black / bone / blood-red / candle-amber
   ========================================================================= */

/* ----------------------------------------------------------------- Tokens */
:root {
  --bg:        #0B0809;   /* near-black page */
  --bg-card:   #141011;   /* raised card on dark */
  --bg-card-2: #15100F;
  --cream:     #F3EDE1;   /* bone / popcorn paper */
  --cream-2:   #DED4C4;   /* kraft */
  --cream-ink: #0B0809;   /* ink on cream */
  --red:       #E8121D;   /* blood red */
  --red-hi:    #FF4A3D;
  --amber:     #E8A33D;   /* candle */
  --text:      #F3EDE1;
  --muted:     #B3A79C;
  --muted-2:   #8A7D73;
  --muted-3:   #7A6E66;
  --line:      #1D1617;   /* divider on dark */
  --line-2:    #241C1D;
  --border:    #3A2F2B;   /* soft outline */
  --line-cream: rgba(11, 8, 9, .16);

  --ff-display: 'Poppins', sans-serif;
  --ff-wordmark:'Michroma', sans-serif;
  --ff-body:    'Space Grotesk', sans-serif;
  --ff-mono:    'Courier Prime', monospace;
  --ff-serif:   'Bodoni Moda', serif;

  --wrap: 1140px;
  --nav-h: 66px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red-hi); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ----------------------------------------------------------------- Keyframes */
@keyframes wyfsm-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes wyfsm-flicker { 0%,100%{opacity:1} 42%{opacity:1} 44%{opacity:.35} 46%{opacity:1} 78%{opacity:.6} 80%{opacity:1} }
@keyframes wyfsm-pulse   { 0%,100%{ box-shadow:0 0 0 0 rgba(232,18,29,.55) } 70%{ box-shadow:0 0 0 18px rgba(232,18,29,0) } }
@keyframes wyfsm-candle  { 0%,100%{opacity:.55;transform:translateX(-50%) scale(1)} 30%{opacity:.72;transform:translateX(-50%) scale(1.04)} 55%{opacity:.44;transform:translateX(-50%) scale(.98)} 75%{opacity:.66;transform:translateX(-50%) scale(1.02)} }
@keyframes wyfsm-fade    { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform:none; } }

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

/* ----------------------------------------------------------------- Grain (global) */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------------------------------------------------------------- Layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.band { position: relative; padding: 56px 0; }
.band--dark  { background: var(--bg); }
.band--panel { background: var(--bg-card); }
.band--cream { background: var(--cream); color: var(--cream-ink); }
.band--red   { background: var(--red); color: var(--cream-ink); }
.band + .band { border-top: 1px solid transparent; }

/* candle glow to drop into a positioned band */
.candle {
  position: absolute; top: -120px; left: 50%;
  width: min(560px, 90vw); height: 360px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(232,163,61,.22), rgba(232,163,61,0) 68%);
  animation: wyfsm-candle 4.6s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
.band > .wrap { position: relative; z-index: 1; }

/* ----------------------------------------------------------------- Type helpers */
.eyebrow {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .2em;
  color: var(--amber); text-transform: uppercase;
}
.eyebrow--red { color: var(--red); }
.wordmark-tag {
  display: inline-block; background: var(--bg); color: var(--amber);
  font-family: var(--ff-wordmark); font-size: 9px; letter-spacing: .16em;
  padding: 7px 11px 6px; transform: rotate(-2deg);
}
.kicker { font-family: var(--ff-wordmark); font-size: 9px; letter-spacing: .1em; color: var(--red); }
.mono { font-family: var(--ff-mono); }
.serif-i { font-family: var(--ff-serif); font-style: italic; }

.display {
  font-family: var(--ff-display); font-weight: 900;
  letter-spacing: -.04em; line-height: .92;
}
.h-hero  { font-size: clamp(44px, 11vw, 88px); }
.h-1     { font-size: clamp(32px, 6vw, 52px); }
.h-2     { font-size: clamp(26px, 4.5vw, 40px); }
.h-3     { font-size: clamp(20px, 3vw, 26px); }
.red { color: var(--red); }
.amber { color: var(--amber); }
.lead { font-size: clamp(15px, 2.2vw, 18px); line-height: 1.6; color: var(--muted); }
.muted { color: var(--muted-2); }

.section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.section-head .rule { flex: 1; height: 1px; background: var(--line-2); }
.band--cream .section-head .rule { background: rgba(11,8,9,.22); }

/* ----------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-display); font-weight: 800; font-size: 13px; letter-spacing: .04em;
  padding: 14px 22px; border-radius: 999px; border: 1.5px solid transparent;
  transition: all .2s var(--ease); cursor: pointer; text-align: center;
}
.btn-red    { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hi); color: #fff; }
.btn-amber  { background: var(--amber); color: var(--cream-ink); }
.btn-amber:hover { filter: brightness(1.08); color: var(--cream-ink); }
.btn-ink    { background: var(--bg); color: var(--cream); }
.btn-ink:hover { background: #000; color: var(--cream); }
.btn-outline{ background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-outline-ink { background: transparent; border-color: var(--cream-ink); color: var(--cream-ink); }
.btn-outline-ink:hover { background: var(--cream-ink); color: var(--cream); }
.btn--pulse { animation: wyfsm-pulse 2.6s infinite; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-row .btn { flex: 1 1 auto; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); border-radius: 999px; padding: 9px 15px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em; color: var(--text);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.pill:hover { border-color: var(--amber); color: var(--amber); }

/* ----------------------------------------------------------------- Top nav */
.nav {
  position: sticky; top: 0; z-index: 8000;
  background: rgba(11,8,9,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.brand { display: flex; flex-direction: column; line-height: .86; }
.brand__top { font-family: var(--ff-wordmark); font-size: 9px; letter-spacing: .1em; color: var(--red); }
.brand__main { font-family: var(--ff-display); font-weight: 900; font-size: 18px; color: var(--cream); letter-spacing: -.03em; margin-top: 3px; }
.nav__links { display: none; align-items: center; gap: 22px; }
.nav__links a {
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: .12em;
  color: var(--muted-2); text-transform: uppercase;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--amber); }
.nav__links a.nav__cta {
  color: var(--amber); border: 1.5px solid var(--amber); border-radius: 999px;
  padding: 7px 14px; letter-spacing: .1em;
}
.nav__links a.nav__cta:hover { background: var(--amber); color: var(--bg); }
.nav__menu-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--amber); border-radius: 999px; padding: 8px 15px; background: transparent;
  font-family: var(--ff-display); font-weight: 800; font-size: 11px; letter-spacing: .06em; color: var(--amber);
}
.nav__menu-btn:hover { background: var(--amber); color: var(--bg); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__menu-btn { display: none; }
}

/* ----------------------------------------------------------------- Menu overlay */
.menu {
  position: fixed; inset: 0; z-index: 9500;
  background: var(--bg); overflow-y: auto;
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), visibility .28s var(--ease);
}
.menu.open { opacity: 1; visibility: visible; }
.menu__glow {
  position: absolute; top: -80px; left: 50%; width: min(560px, 92vw); height: 380px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(232,163,61,.26), rgba(232,163,61,0) 68%);
  animation: wyfsm-candle 4.4s ease-in-out infinite; pointer-events: none;
}
.menu__inner { position: relative; max-width: 620px; margin-inline: auto; padding: 18px 24px 60px; }
.menu__bar { display: flex; align-items: center; justify-content: space-between; padding: 6px 0 10px; }
.menu__close {
  border: 1.5px solid var(--red); border-radius: 999px; padding: 8px 15px; background: transparent;
  font-family: var(--ff-display); font-weight: 800; font-size: 11px; letter-spacing: .06em; color: var(--red);
}
.menu__close:hover { background: var(--red); color: #fff; }
.menu__list { margin-top: 12px; }
.menu__list a {
  display: flex; align-items: baseline; gap: 14px; padding: 15px 0;
  border-bottom: 1px solid var(--line); color: var(--cream);
}
.menu__list a:hover { opacity: .68; color: var(--cream); }
.menu__list .num { font-family: var(--ff-mono); font-size: 11px; color: var(--muted-3); width: 24px; }
.menu__list .label { font-family: var(--ff-display); font-weight: 900; font-size: clamp(26px, 7vw, 34px); letter-spacing: -.035em; }
.menu__list .flag { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .14em; color: var(--red); }
.menu__tag {
  margin-top: 28px; font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(18px, 5vw, 22px); line-height: 1.35; color: var(--amber); letter-spacing: -.02em;
}
.menu__socials { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; color: var(--muted-3); }
.menu__socials a { color: var(--muted-3); }
.menu__socials a:hover { color: var(--amber); }
body.menu-open { overflow: hidden; }

/* ----------------------------------------------------------------- Cards / media */
.card { background: var(--bg-card); border-radius: 18px; overflow: hidden; }
.card--hover { cursor: pointer; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.card--hover:hover { transform: translateY(-3px); }
.ratio { position: relative; overflow: hidden; }
.ratio > img { width: 100%; height: 100%; object-fit: cover; }
.cover-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,8,9,.1) 40%, rgba(11,8,9,.9)); pointer-events: none; }

.play-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 58px; height: 58px; border-radius: 50%; background: rgba(243,237,225,.94);
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--bg);
  border: none; transition: transform .2s var(--ease);
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.08); }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); color: #fff; border-radius: 4px; padding: 5px 9px;
  font-family: var(--ff-mono); font-size: 9.5px; letter-spacing: .14em;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: wyfsm-flicker 2.2s infinite; }

/* episode row (list item) */
.ep-row { display: flex; gap: 13px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); cursor: pointer; transition: opacity .2s var(--ease); }
.ep-row:last-child { border-bottom: 1px solid var(--line); }
.ep-row:hover { opacity: .75; }
.ep-row__thumb { width: 54px; height: 54px; flex: none; border-radius: 8px; overflow: hidden; }
.ep-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ep-row__title { font-family: var(--ff-display); font-weight: 700; font-size: 14px; color: var(--text); line-height: 1.25; }
.ep-row__meta { font-family: var(--ff-mono); font-size: 10.5px; color: var(--muted-2); margin-top: 4px; }
.ep-row__go { color: var(--amber); font-size: 13px; }

/* Prev/next episode nav (generated episode pages) */
.ep-nav-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ep-nav { display: flex; flex-direction: column; gap: 5px; padding: 16px; border-radius: 12px; background: var(--bg-card); border: 1px solid var(--line); transition: transform .2s var(--ease), border-color .2s var(--ease); min-width: 0; }
.ep-nav:hover { transform: translateY(-2px); border-color: var(--amber); }
.ep-nav--next { text-align: right; }
.ep-nav__dir { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .14em; color: var(--amber); }
.ep-nav__title { font-family: var(--ff-display); font-weight: 700; font-size: 13px; color: var(--text); line-height: 1.25; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* Episode transcript (generated episode pages) */
.transcript { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.transcript > summary { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 18px 0; cursor: pointer; list-style: none; }
.transcript > summary::-webkit-details-marker { display: none; }
.transcript__hint { font-size: 10.5px; letter-spacing: .12em; color: var(--muted-2); }
.transcript[open] > summary .transcript__hint { opacity: .5; }
.transcript__body { padding: 4px 0 22px; max-width: 660px; }
.transcript__body p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0 0 14px; }

/* Leaderboard per-host SMASH/SLASH stamps */
.ledger-row__hosts { display: flex; gap: 6px; align-items: center; flex: none; }
.hv { display: inline-flex; align-items: center; gap: 3px; font-family: var(--ff-mono); font-size: 10px; font-weight: 700; letter-spacing: .04em; padding: 3px 7px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted-2); }
.hv .ic { width: 12px; height: 12px; }
.hv--smash { color: var(--amber); border-color: rgba(232,163,61,.42); }
.hv--slash { color: var(--red); border-color: rgba(232,18,29,.42); }

/* ----------------------------------------------------------------- Newsletter / footer */
.newsletter { display: flex; border: 2px solid var(--cream-ink); border-radius: 999px; overflow: hidden; max-width: 440px; }
.newsletter input { flex: 1; min-width: 0; padding: 14px 18px; border: none; background: transparent; font-family: var(--ff-body); font-size: 13px; color: var(--cream-ink); }
.newsletter input::placeholder { color: #9A8F86; }
.newsletter input:focus { outline: none; }
.newsletter button { background: var(--red); color: #fff; border: none; padding: 14px 22px; font-family: var(--ff-display); font-weight: 800; font-size: 12px; }
.newsletter button:hover { background: var(--red-hi); }
.newsletter--dark { border-color: var(--border); }
.newsletter--dark input { color: var(--text); }
.newsletter--dark input::placeholder { color: var(--muted-3); }

.site-footer { background: var(--cream); color: var(--cream-ink); }
.footer-socials { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 26px; font-family: var(--ff-wordmark); font-size: 9px; letter-spacing: .12em; color: var(--cream-ink); }
.footer-socials a { color: var(--cream-ink); border-bottom: 1px solid rgba(11,8,9,.35); padding-bottom: 2px; }
.footer-socials a:hover { color: var(--red); border-color: var(--red); }
.footer-legal { margin-top: 26px; padding-top: 16px; border-top: 1px solid rgba(11,8,9,.2); display: flex; justify-content: space-between; align-items: center; font-family: var(--ff-mono); font-size: 11px; color: #9A8F86; flex-wrap: wrap; gap: 10px; }
.footer-legal a { color: #9A8F86; }
.footer-legal a:hover { color: var(--red); }

/* ----------------------------------------------------------------- Audio player (mini) */
.player { background: var(--bg-card); border-radius: 18px; padding: 18px; }
.player__top { display: flex; gap: 14px; }
.player__art { width: 78px; height: 78px; flex: none; border-radius: 10px; overflow: hidden; }
.player__art img { width: 100%; height: 100%; object-fit: cover; }
.scrub { height: 6px; background: var(--line-2); border-radius: 3px; overflow: hidden; margin-top: 16px; cursor: pointer; }
.scrub__fill { height: 100%; background: var(--amber); width: 13%; }
.player__times { display: flex; justify-content: space-between; font-family: var(--ff-mono); font-size: 10.5px; color: var(--muted-3); margin-top: 7px; font-variant-numeric: tabular-nums; }
.player__controls { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 14px; }
.player__skip { font-family: var(--ff-mono); font-size: 11px; color: var(--muted-2); background: none; border: none; }
.player__play { width: 52px; height: 52px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 17px; border: none; }
.player__play:hover { background: var(--red-hi); }

/* ----------------------------------------------------------------- Grid helpers */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 680px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.stack-sm { display: flex; flex-direction: column; gap: 8px; }
.stack   { display: flex; flex-direction: column; gap: 16px; }
.center  { text-align: center; }
.hidden  { display: none !important; }
.hidden-mobile { display: none; }
@media (min-width: 680px) { .hidden-mobile { display: block; } }

/* ----- Coming soon / disabled ------------------------------------------ */
.badge-soon {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber); border: 1px solid var(--amber); border-radius: 999px; padding: 5px 11px 4px;
}
.badge-soon--onart { position: absolute; left: 12px; top: 12px; background: rgba(11,8,9,.72); backdrop-filter: blur(4px); z-index: 2; }
.btn-disabled {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 800; font-size: 13px; letter-spacing: .06em;
  padding: 14px 22px; border-radius: 999px; border: 1.5px solid var(--line-2);
  color: var(--muted-2); background: transparent; cursor: not-allowed; text-transform: uppercase;
}

/* ----- Modal (ballot -> Patreon) --------------------------------------- */
.modal {
  position: fixed; inset: 0; z-index: 9600;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.modal.open { opacity: 1; visibility: visible; }
.modal__scrim { position: absolute; inset: 0; background: rgba(5,5,6,.82); backdrop-filter: blur(3px); }
.modal__card {
  position: relative; z-index: 1; width: 100%; max-width: 440px;
  background: var(--bg-card); border: 1px solid var(--line-2); border-radius: 20px;
  padding: 30px 26px 26px; box-shadow: 0 40px 90px rgba(0,0,0,.6);
  transform: translateY(10px) scale(.98); transition: transform .25s var(--ease);
}
.modal.open .modal__card { transform: none; }
.modal__x {
  position: absolute; right: 16px; top: 16px; width: 32px; height: 32px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line-2); color: var(--muted-2); font-size: 13px;
}
.modal__x:hover { border-color: var(--amber); color: var(--amber); }
.modal__or { display: flex; align-items: center; gap: 12px; margin: 18px 0 12px; }
.modal__or::before, .modal__or::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }
.modal__or span { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .16em; color: var(--muted-3); text-transform: uppercase; }

/* jump scare */
.boo {
  position: fixed; inset: 0; z-index: 99999; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 900; font-size: clamp(120px, 40vw, 260px);
  color: var(--bg); letter-spacing: -.06em;
  opacity: 0; visibility: hidden;
}
.boo.show { opacity: 1; visibility: visible; }

/* utility measure */
.measure { max-width: 640px; }
.measure-sm { max-width: 460px; }

/* =========================================================================
   Components used across pages
   ========================================================================= */

/* ----- Marquee --------------------------------------------------------- */
.marquee { overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-block; animation: wyfsm-marquee 18s linear infinite; }
.marquee--red { background: var(--red); padding: 9px 0; }
.marquee--red .marquee__track { font-family: var(--ff-wordmark); font-size: 9px; letter-spacing: .2em; color: #fff; }
.marquee--word .marquee__track { font-family: var(--ff-display); font-weight: 900; font-size: clamp(15px,3vw,22px); letter-spacing: -.01em; color: var(--red); }

/* ----- Hero ------------------------------------------------------------ */
.hero-featured { position: relative; border-radius: 18px; overflow: hidden; background: var(--bg-card); }
.hero-featured .ratio { height: clamp(220px, 42vw, 420px); }

/* ----- Leaderboard podium --------------------------------------------- */
.podium { display: flex; align-items: flex-end; gap: 10px; margin-top: 22px; }
.podium__col { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.podium__col--win { flex: 1.28; }
.podium__poster { width: 100%; aspect-ratio: 2/3; border: 3px solid var(--cream-ink); overflow: hidden; }
.podium__poster--win { border-color: var(--red); box-shadow: 6px 6px 0 var(--red); }
.podium__poster img { width: 100%; height: 100%; object-fit: cover; }
.podium__rank { font-family: var(--ff-display); font-weight: 900; font-size: 20px; color: var(--cream-ink); }
.podium__rank--win { font-size: 26px; color: var(--red); }
.podium__name { font-family: var(--ff-display); font-weight: 700; font-size: 12px; color: var(--cream-ink); text-align: center; line-height: 1.2; }
.podium__name span { color: var(--muted-2); font-weight: 500; }

/* ----- Leaderboard rows (interactive) --------------------------------- */
.ledger { display: flex; flex-direction: column; margin-top: 18px; }
.ledger-row { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line-cream); }
.ledger-row:last-child { border-bottom: 1px solid var(--line-cream); }
.ledger-row__rank { font-family: var(--ff-display); font-weight: 900; font-size: 15px; color: var(--muted); width: 26px; }
.ledger-row__body { flex: 1; min-width: 0; }
.ledger-row__title { font-family: var(--ff-display); font-weight: 700; font-size: 14px; color: var(--cream-ink); line-height: 1.2; }
.ledger-row__meta { font-family: var(--ff-mono); font-size: 10.5px; color: var(--muted-2); margin-top: 3px; }
.ledger-bar { height: 3px; background: rgba(11,8,9,.12); margin-top: 7px; }
.ledger-bar > span { display: block; height: 100%; background: var(--red); transition: width .35s var(--ease); }
.ledger-row__verdict { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex: none; }
.ledger-row__score { font-family: var(--ff-display); font-weight: 900; font-size: 16px; color: var(--cream-ink); }
/* hide the SMASH/SLASH word on very narrow screens, keep the icon + score */
@media (max-width: 420px) {
  .ledger-row__verdict .verdict { font-size: 0; gap: 0; padding: 5px; }
  .ledger-row__verdict .verdict .ic { width: 15px; height: 15px; }
}

/* simple lists on dark (home leaderboard, worst-of) */
.rows-dark { display: flex; flex-direction: column; margin-top: 14px; }
.rows-dark .r { display: flex; align-items: baseline; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); }
.rows-dark .r:last-child { border-bottom: 1px solid var(--line); }
.rows-dark .rank { font-family: var(--ff-display); font-weight: 900; font-size: 14px; color: var(--muted); width: 22px; }
.rows-dark .nm { flex: 1; font-family: var(--ff-display); font-weight: 700; font-size: 14px; color: var(--text); }
.rows-dark .sc { font-family: var(--ff-display); font-weight: 900; font-size: 14px; color: var(--red); }
.band--cream .rows-dark .r { border-color: var(--line-cream); }
.band--cream .rows-dark .nm { color: var(--cream-ink); }

/* sort tabs */
.tabs { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.tab {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; padding: 8px 14px;
  border-radius: 999px; border: 1px solid rgba(11,8,9,.25); color: #5A5048; background: transparent;
}
.tab.is-on { color: var(--cream-ink); background: var(--amber); border-color: var(--amber); }
.tab--smash.is-on { background: var(--amber); border-color: var(--amber); color: var(--cream-ink); }
.tab--slash.is-on { background: var(--red); border-color: var(--red); color: #fff; }

/* ----- Host / couch cards --------------------------------------------- */
.polaroid { flex: none; background: var(--cream); padding: 6px 6px 20px; box-shadow: 0 10px 22px rgba(0,0,0,.5); }
.polaroid > .frame { overflow: hidden; }
/* team photos are black & white; warm back up slightly on hover */
.polaroid img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter .3s var(--ease); }
.polaroid:hover img { filter: grayscale(0); }
.host-card { background: var(--bg-card); border-radius: 18px; overflow: hidden; }
.host-card__top { display: flex; gap: 14px; padding: 16px; align-items: flex-start; }
.host-card__name { font-family: var(--ff-display); font-weight: 900; font-size: 17px; color: var(--text); letter-spacing: -.02em; }
.host-card__role { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .14em; color: var(--red); margin-top: 4px; }
.host-card__bio { font-size: 12.5px; color: var(--muted-2); line-height: 1.5; margin-top: 8px; }
.host-card__facts { display: flex; border-top: 1px solid var(--line-2); font-family: var(--ff-mono); font-size: 10.5px; color: var(--muted-2); }
.host-card__facts > div { flex: 1; padding: 11px 14px; }
.host-card__facts > div + div { border-left: 1px solid var(--line-2); }
.host-card__facts b { color: var(--text); font-weight: 400; }

/* ----- Merch / product ------------------------------------------------- */
.product { background: var(--bg-card); border-radius: 18px; overflow: hidden; }
.product__media { height: 220px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product__foot { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; gap: 12px; }
.product__name { font-family: var(--ff-display); font-weight: 800; font-size: 15px; color: var(--text); }
.product__desc { font-family: var(--ff-mono); font-size: 10.5px; color: var(--muted-2); margin-top: 3px; }
.product__price { font-family: var(--ff-display); font-weight: 900; font-size: 17px; color: var(--amber); white-space: nowrap; }
.noise { position: absolute; inset: 0; opacity: .45; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E"); }

/* knife lockup (cap art) */
.lockup { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.lockup__tag { font-family: var(--ff-wordmark); font-size: 9.5px; letter-spacing: .24em; color: var(--red); }
.scaredy { position: absolute; inset: 0; }
.scaredy__type { position: absolute; left: 0; right: 0; top: 26px; text-align: center; }
.scaredy__type .cert { font-family: var(--ff-wordmark); font-size: 9px; letter-spacing: .06em; color: var(--red); }
.scaredy__type .big { font-family: var(--ff-display); font-weight: 900; font-size: 38px; line-height: .82; letter-spacing: -.05em; color: var(--cream-ink); margin-top: 7px; }

/* ----- SMASH / SLASH verdict (signature rating) ------------------------ */
/* SMASH = we loved it (amber burst) · SLASH = we didn't (blood-red claw)   */
.verdict {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--ff-display); font-weight: 900; font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 9px 4px; border-radius: 5px;
  border: 1.5px solid currentColor; line-height: 1;
}
.verdict .ic { width: 13px; height: 13px; flex: none; }
.verdict--smash { color: var(--amber); }
.verdict--slash { color: var(--red); }
.verdict--solid.verdict--smash { background: var(--amber); color: var(--bg); border-color: var(--amber); }
.verdict--solid.verdict--slash { background: var(--red); color: #fff; border-color: var(--red); }

/* big rubber-stamp variant for the episode verdict + hero moments */
.stamp {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-display); font-weight: 900; font-size: clamp(20px, 4vw, 26px);
  letter-spacing: .02em; text-transform: uppercase; line-height: 1;
  border: 2.5px solid currentColor; border-radius: 8px; padding: 10px 18px 8px;
  transform: rotate(-4deg);
}
.stamp .ic { width: clamp(20px, 4vw, 26px); height: clamp(20px, 4vw, 26px); flex: none; }
.stamp--smash { color: var(--amber); }
.stamp--slash { color: var(--red); }

/* ----- Verdict block (episode page) ------------------------------------ */
.verdict-score { font-family: var(--ff-display); font-weight: 900; font-size: clamp(52px, 12vw, 72px); line-height: .8; color: var(--red); letter-spacing: -.05em; }
.host-score { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line-cream); }
.host-score:last-child { border-bottom: 1px solid var(--line-cream); }
.host-score__name { font-family: var(--ff-display); font-weight: 800; font-size: 12.5px; color: var(--cream-ink); width: 78px; }
.host-score__bar { flex: 1; height: 5px; background: rgba(11,8,9,.12); }
.host-score__bar > span { display: block; height: 100%; }
.host-score__val { font-family: var(--ff-mono); font-size: 12px; color: var(--cream-ink); width: 28px; text-align: right; }

/* chapters / timestamps */
.chapters { display: flex; flex-direction: column; margin-top: 14px; font-family: var(--ff-mono); }
.chapters .row { display: flex; gap: 14px; padding: 9px 0; border-top: 1px solid var(--line); }
.chapters .row:last-child { border-bottom: 1px solid var(--line); }
.chapters .ts { font-size: 11.5px; color: var(--amber); flex: none; width: 52px; }
.chapters .lbl { font-size: 12px; color: var(--muted); }

/* ----- Ballot cards ---------------------------------------------------- */
.ballot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ballot-card { background: var(--bg-card); border-radius: 16px; overflow: hidden; cursor: pointer; }
.ballot-card .frame { height: 170px; }
.ballot-card .frame img { width: 100%; height: 100%; object-fit: cover; }
.ballot-card .body { padding: 14px; }
.ballot-card .title { font-family: var(--ff-display); font-weight: 800; font-size: 14px; color: var(--text); }
.ballot-card .sub { font-family: var(--ff-mono); font-size: 10.5px; color: var(--muted-2); margin-top: 3px; }
.vote-bar { height: 6px; background: var(--line-2); border-radius: 3px; overflow: hidden; margin-top: 12px; }
.vote-bar > span { display: block; height: 100%; background: var(--amber); transition: width .4s var(--ease); }
.vote-label { font-family: var(--ff-mono); font-size: 11px; color: var(--muted); margin-top: 7px; }
.vote-cta { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em; color: var(--amber); margin-top: 12px; }

/* ----- Input rows (contact) -------------------------------------------- */
.field { border-bottom: 1px solid var(--line-2); padding: 11px 2px; background: transparent; border-top: none; border-left: none; border-right: none; color: var(--text); font-family: var(--ff-body); font-size: 13.5px; width: 100%; }
.field::placeholder { color: var(--muted-3); }
.field:focus { outline: none; border-color: var(--amber); }
.subject-tabs { display: flex; border: 1.5px solid var(--line-2); border-radius: 12px; overflow: hidden; }
.subject-tabs button { flex: 1; text-align: center; font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em; padding: 12px 4px; background: transparent; color: var(--muted-3); border: none; }
.subject-tabs button + button { border-left: 1px solid var(--line-2); }
.subject-tabs button.is-on { background: var(--red); color: var(--cream); }

/* contact-style list rows on cream */
.link-rows { display: flex; flex-direction: column; margin-top: 12px; }
.link-rows .row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 13px 0; border-top: 1px solid var(--line-cream); cursor: pointer; }
.link-rows .row:last-child { border-bottom: 1px solid var(--line-cream); }
.link-rows .k { font-family: var(--ff-display); font-weight: 700; font-size: 14px; color: var(--cream-ink); }
.link-rows .v { font-family: var(--ff-mono); font-size: 11.5px; color: var(--muted-2); }

/* rules list (about) */
.rules { display: flex; flex-direction: column; margin-top: 18px; }
.rules .rule { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line-cream); }
.rules .rule:last-child { border-bottom: 1px solid var(--line-cream); }
.rules .n { font-family: var(--ff-display); font-weight: 900; font-size: 15px; color: var(--red); width: 24px; }
.rules .t { flex: 1; font-size: 13.5px; color: var(--cream-ink); line-height: 1.5; }

/* poster strip */
.poster-strip { display: flex; gap: 9px; margin-top: 16px; }
.poster-strip .p { flex: 1; aspect-ratio: 2/3; border-radius: 6px; overflow: hidden; }
.poster-strip .p img { width: 100%; height: 100%; object-fit: cover; }

/* shorts strip (9:16) */
.shorts { display: flex; gap: 10px; margin-top: 14px; }
.shorts .s { flex: 1; aspect-ratio: 9/16; border-radius: 12px; overflow: hidden; cursor: pointer; }
.shorts .s img { width: 100%; height: 100%; object-fit: cover; }

/* ----- Sponsors -------------------------------------------------------- */
.sponsors { padding: 40px 0; }
.sponsor-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
@media (min-width: 720px) { .sponsor-row { grid-template-columns: repeat(4, 1fr); } }
.sponsor {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  min-height: 92px; padding: 18px 14px; text-align: center;
  border: 1px solid var(--line-2); border-radius: 12px; background: rgba(255,255,255,.015);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
  cursor: pointer;
}
.sponsor:hover { border-color: var(--amber); transform: translateY(-2px); }
.sponsor__name { font-family: var(--ff-wordmark); font-size: 13px; letter-spacing: .04em; color: var(--muted); }
.sponsor__tag { font-family: var(--ff-mono); font-size: 9px; letter-spacing: .18em; color: var(--muted-3); }
.sponsor:hover .sponsor__name { color: var(--amber); }
.band--cream .sponsor { border-color: var(--line-cream); }
.band--cream .sponsor__name { color: #5A5048; }
.band--cream .sponsor__tag { color: var(--muted-2); }

/* page hero spacing */
.page-hero { padding-top: 40px; padding-bottom: 8px; }
.reveal { animation: wyfsm-fade .6s var(--ease) both; }

/* home hero two-column on desktop */
.hero-grid { display: grid; gap: 34px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 48px; } }

/* generic two-col split at desktop */
.split { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; gap: 40px; } }
