/* ============================================================
   SCRIPTED REALITIES — sr.css
   All styling. Uses --sr-* tokens only. No stray hexes.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Space+Grotesk:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Tokens ── */
:root {
  --sr-blue:        #1F5DAE;
  --sr-slate:       #122B45;
  --sr-slate-deep:  #0C1B2E;
  --sr-yellow:      #FFC42E;
  --sr-red:         #E8472A;
  --sr-paper:       #F4F0E7;
  --sr-ink:         #15191F;
  --sr-paper-2:     #E9E3D5;
  --sr-line:        #C9C2B2;
  --sr-muted:       #3A3E46;
  --sr-muted-2:     #7A7363;
  --sr-slate-line:  rgba(255,255,255,.14);
  --sr-slate-muted: #8FA6BE;
  --sr-blue-bright: #1F8FE0;

  --sr-font-display: 'Space Grotesk', system-ui, sans-serif;
  --sr-font-body:    'Newsreader', Georgia, serif;
  --sr-font-mono:    'Courier Prime', 'Courier New', monospace;

  --sr-tracking-display: -0.025em;
  --sr-tracking-tight:   -0.035em;
  --sr-tracking-meta:    0.16em;

  --sr-radius-card: 14px;
  --sr-radius-chip: 4px;
  --sr-radius-pill: 999px;
  --sr-shadow-card: 0 1px 3px rgba(0,0,0,.08);
  --sr-shadow-hero: 0 24px 60px rgba(0,0,0,.28);
  --sr-content-max: 1180px;
  --sr-ease:      cubic-bezier(.2,.8,.2,1);
  --sr-ease-back: cubic-bezier(.3,1.7,.45,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; -webkit-font-smoothing: antialiased; }
body { font-size: 1.6rem; font-family: var(--sr-font-body); background: var(--sr-slate-deep) radial-gradient(circle at 80% 300px, rgba(31,93,174,.3), transparent 50%); color: var(--sr-paper); line-height: 1.6; background-attachment: fixed; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── Layout ── */
.sr-outer { width: 100%; }
.sr-inner { max-width: var(--sr-content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ── Animations ── */
@keyframes sr-blink { 0%,49% { opacity:1 } 50%,100% { opacity:0 } }
@keyframes sr-clap  { 0% { transform: rotate(-34deg) } 60% { transform: rotate(-6deg) } 100% { transform: rotate(-11deg) } }

/* ============================================================
   LOGO MARK
   ============================================================ */
.sr-mark {
  --size: 36px;
  --slate:  var(--sr-blue);
  --bar:    var(--sr-slate);
  --stripe: var(--sr-yellow);
  --play:   var(--sr-paper);
  --cursor: var(--sr-yellow);
  width: var(--size); aspect-ratio: 1; position: relative; flex: none;
}
.sr-mark .board {
  position: absolute; left: 0; bottom: 0; width: 100%; height: 70%;
  border-radius: 9.5%; background: var(--slate);
}
.sr-mark .glyph {
  position: absolute; left: 0; bottom: 0; width: 100%; height: 70%;
  display: flex; align-items: center; justify-content: center; gap: 6%;
}
.sr-mark .play {
  width: 21%; height: 29%; background: var(--play);
  clip-path: polygon(12% 0, 100% 50%, 12% 100%);
}
.sr-mark .cursor {
  width: 3.6%; height: 34%; background: var(--cursor);
  border-radius: 1px; animation: sr-blink 1.05s steps(1) infinite;
}
.sr-mark .bar {
  position: absolute; left: -3%; top: 7%; width: 106%; height: 21%;
  border-radius: 4%; background: var(--bar); transform: rotate(-11deg);
  transform-origin: left center; display: flex; align-items: center;
  gap: 7%; padding: 0 9% 0 11%; box-sizing: border-box; overflow: hidden;
}
.sr-mark .bar.animate { animation: sr-clap 1.1s var(--sr-ease-back) .3s both; }
.sr-mark .tooth { flex: 1; height: 62%; background: var(--stripe); transform: skewX(-20deg); }
.sr-mark--icon .cursor { display: none; }

/* ── Wordmark ── */
.sr-wordmark {
  font-family: var(--sr-font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--sr-tracking-display);
  line-height: 0.88;
}
.sr-wordmark .a { color: var(--sr-paper); }
.sr-wordmark .b { color: var(--sr-yellow); }
.sr-lockup { display: flex; align-items: center; gap: 10px; text-decoration: none; }

/* ============================================================
   NAVIGATION — sticky, dark, blur
   ============================================================ */
.sr-nav {
  position: sticky; top: 0; z-index: 9999;
  background: rgba(12,27,46,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sr-slate-line);
}
.sr-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 32px;
}
.sr-nav-links {
  display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center;
}
.sr-nav-links a {
  font-family: var(--sr-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sr-slate-muted);
  padding: 6px 12px;
  border-radius: var(--sr-radius-chip);
  transition: color 150ms var(--sr-ease);
  white-space: nowrap;
}
.sr-nav-links a:hover,
.sr-nav-links a.is-active { color: var(--sr-yellow); }
.sr-nav-links a.nav-watchlist { color: var(--sr-yellow); }
.sr-nav-subscribe {
  font-family: var(--sr-font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--sr-yellow);
  color: var(--sr-ink);
  padding: 9px 18px;
  border-radius: var(--sr-radius-chip);
  transition: opacity 150ms;
  white-space: nowrap;
}
.sr-nav-subscribe:hover { opacity: .88; }

/* Mobile nav */
.sr-nav-burger { display: none; color: var(--sr-paper); padding: 4px; }
.sr-nav-burger svg { width: 24px; height: 24px; }

@media (max-width: 767px) {
  .sr-nav-links { display: none !important; }
  .sr-nav-burger { display: flex !important; }
  .sr-nav.is-open .sr-nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A1422;
    padding: 24px 28px 40px;
    gap: 0;
    z-index: 9998;
    overflow-y: auto;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .sr-nav.is-open .sr-nav-links a {
    font-size: 26px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #F4F0E7;
    padding: 18px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
    display: block;
  }
  .sr-nav.is-open .sr-nav-links a:last-child { border-bottom: none; }
}

/* ============================================================
   HOMEPAGE — §3.2 HERO "NOW PLAYING"
   ============================================================ */
.sr-hero {
  padding: 80px 0 96px;
}
.sr-hero-inner { display: grid; grid-template-columns: 1.08fr 1fr; gap: 64px; align-items: center; }

/* Kicker */
.sr-hero-kicker {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--sr-slate-muted); margin-bottom: 24px;
}
.sr-hero-kicker .rec-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sr-red); flex-shrink: 0;
  animation: sr-blink 1.4s steps(1) infinite;
}

/* Headline */
.sr-hero-title {
  font-family: var(--sr-font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--sr-tracking-tight);
  line-height: .95;
  color: var(--sr-paper);
  margin-bottom: 20px;
}
.sr-hero-title .accent { color: var(--sr-yellow); }

.sr-hero-dek {
  font-family: var(--sr-font-body);
  font-size: 21px;
  color: var(--sr-slate-muted);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 32px;
}

/* Buttons */
.sr-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.sr-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sr-font-display); font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  background: var(--sr-yellow); color: var(--sr-ink);
  padding: 13px 24px; border-radius: var(--sr-radius-chip);
  transition: opacity 150ms;
}
.sr-btn-primary:hover { opacity: .88; }
.sr-btn-primary .play-tri {
  width: 0; height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent var(--sr-ink);
}
.sr-btn-outline {
  display: inline-flex; align-items: center;
  font-family: var(--sr-font-display); font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--sr-paper);
  border: 1.5px solid var(--sr-slate-line);
  padding: 12px 22px; border-radius: var(--sr-radius-chip);
  transition: border-color 150ms, color 150ms;
}
.sr-btn-outline:hover { border-color: var(--sr-paper); }

.sr-hero-platforms {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--sr-slate-muted);
}

/* Letterbox still */
.sr-hero-still {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 1.55; background: var(--sr-slate);
  box-shadow: var(--sr-shadow-hero);
}
.sr-hero-still img { width: 100%; height: 100%; object-fit: cover; }
.sr-hero-still-placeholder {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    #13314f 0, #13314f 12px,
    #16395b 12px, #16395b 24px
  );
}
.sr-still-bars {
  position: absolute; left: 0; right: 0;
  background: #000; height: 11%;
}
.sr-still-bars.top { top: 0; }
.sr-still-bars.bottom { bottom: 0; }
.sr-still-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.sr-still-play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sr-yellow);
  display: flex; align-items: center; justify-content: center;
  transition: transform 200ms var(--sr-ease);
}
.sr-hero-still:hover .sr-still-play-btn { transform: scale(1.08); }
.sr-still-play-btn::after {
  content: ''; width: 0; height: 0;
  border-style: solid; border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent var(--sr-ink);
  margin-left: 3px;
}
.sr-still-ep {
  position: absolute; bottom: 14%; left: 20px;
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .16em;
  color: rgba(244,240,231,.6);
}

@media (max-width: 900px) {
  .sr-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .sr-hero-still { max-width: 560px; }
}

/* ============================================================
   §3.3 CONCEPT HOOK
   ============================================================ */
.sr-hook {
  border-top: 1px solid var(--sr-slate-line);
  border-bottom: 1px solid var(--sr-slate-line);
  padding: 56px 0;
}
.sr-hook-inner { text-align: center; }
.sr-hook p {
  font-family: var(--sr-font-body);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--sr-paper);
  max-width: 760px;
  margin: 0 auto;
}
.sr-hook .highlight { color: var(--sr-yellow); font-style: italic; }

/* ============================================================
   §3.4 FROM THE NOTEBOOK (paper section)
   ============================================================ */
.sr-notebook {
  background: var(--sr-paper);
  color: var(--sr-ink);
  padding: 80px 0;
}
.sr-notebook-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.sr-notebook-kicker {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--sr-blue); margin-bottom: 10px;
}
.sr-notebook-title {
  font-family: var(--sr-font-display); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; letter-spacing: var(--sr-tracking-display);
  color: var(--sr-ink); line-height: 1;
}
.sr-notebook-all {
  font-family: var(--sr-font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--sr-blue); white-space: nowrap;
}
.sr-notebook-all:hover { opacity: .75; }

/* Grid */
.sr-notebook-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }

/* Feature card */
.sr-feature-card { display: block; }
.sr-feature-image {
  position: relative; aspect-ratio: 2; border-radius: var(--sr-radius-chip);
  overflow: hidden; background: var(--sr-slate);
  margin-bottom: 20px;
}
.sr-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.sr-feature-image-placeholder {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, #E4DCC9 0, #E4DCC9 12px, #EDE6D6 12px, #EDE6D6 24px);
}
.sr-feature-bars { position: absolute; left:0; right:0; background: var(--sr-ink); height: 10%; opacity: .7; }
.sr-feature-bars.top { top: 0; }
.sr-feature-bars.bottom { bottom: 0; }
.sr-feature-meta {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--sr-blue); margin-bottom: 10px;
}
.sr-feature-card h3 {
  font-family: var(--sr-font-display); font-size: 34px; font-weight: 700;
  letter-spacing: var(--sr-tracking-display); color: var(--sr-ink);
  line-height: 1.05; margin-bottom: 12px;
  transition: color 150ms;
}
.sr-feature-card:hover h3 { color: var(--sr-blue); }
.sr-feature-card p {
  font-family: var(--sr-font-body); font-size: 17px;
  color: var(--sr-muted); line-height: 1.55;
}
.sr-feature-lede {
  font-size: 15px !important;
  color: var(--sr-muted-2) !important;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--sr-line);
  line-height: 1.6 !important;
}
.sr-feature-lede:empty,
.sr-feature-lede[aria-hidden="true"] {
  display: none;
}

/* Feature card — no image variant
   Spans both columns, drops the image slot entirely, scales type up to own the space */
.sr-feature-card--no-image {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--sr-line);
  padding-top: 32px;
}
.sr-feature-card--no-image .sr-feature-card-body {
  grid-column: 1 / -1;
}
.sr-feature-card--no-image .sr-feature-meta {
  margin-bottom: 14px;
}
.sr-feature-card--no-image h3 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  margin-bottom: 16px;
}
.sr-feature-card--no-image p {
  font-size: 19px;
  max-width: 640px;
}

/* Essay list */
.sr-essay-list { display: flex; flex-direction: column; gap: 0; }
.sr-essay-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-top: 1px solid var(--sr-line);
  transition: transform 200ms var(--sr-ease);
}
.sr-essay-item:hover { transform: translateY(-4px); }
.sr-essay-index {
  font-family: var(--sr-font-mono); font-size: 13px;
  color: var(--sr-blue); min-width: 28px; padding-top: 2px;
  flex-shrink: 0;
}
.sr-essay-body {}
.sr-essay-cat {
  font-family: var(--sr-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--sr-muted-2); margin-bottom: 4px;
}
.sr-essay-item a {
  font-family: var(--sr-font-display); font-size: 18px; font-weight: 600;
  letter-spacing: var(--sr-tracking-display); color: var(--sr-ink);
  line-height: 1.2;
  transition: color 150ms;
  display: block;
}
.sr-essay-item:hover a { color: var(--sr-blue); }

@media (max-width: 900px) {
  .sr-notebook-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   §3.5 BROWSE THE REELS
   ============================================================ */
.sr-reels { padding: 80px 0; }
.sr-reels-kicker {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--sr-slate-muted); text-align: center;
  margin-bottom: 40px;
}
.sr-reels-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.sr-reel-card {
  display: block; padding: 28px 24px; border-radius: var(--sr-radius-card);
  border: 1px solid var(--sr-slate-line);
  background: rgba(255,255,255,.02);
  transition: transform 200ms var(--sr-ease), background 200ms;
}
.sr-reel-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.04); }
.sr-reel-index {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--sr-blue-bright); margin-bottom: 12px;
}
.sr-reel-name {
  font-family: var(--sr-font-display); font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--sr-tracking-display);
  color: var(--sr-paper); line-height: 1; margin-bottom: 10px;
}
.sr-reel-desc {
  font-family: var(--sr-font-body); font-size: 14px;
  color: var(--sr-slate-muted); line-height: 1.55; margin-bottom: 14px;
}
.sr-reel-count {
  font-family: var(--sr-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--sr-slate-muted);
}

@media (max-width: 900px) { .sr-reels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sr-reels-grid { grid-template-columns: 1fr; } }

/* ============================================================
   §3.6 SUBSCRIBE
   ============================================================ */
.sr-subscribe { padding: 48px 0 80px; }
.sr-subscribe-panel {
  background: var(--sr-blue);
  border-radius: 18px;
  padding: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.sr-subscribe-panel::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 85% 30%, rgba(255,196,46,.18), transparent 55%);
}
.sr-subscribe-heading {
  font-family: var(--sr-font-display); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: var(--sr-tracking-display);
  color: var(--sr-paper); line-height: 1; margin-bottom: 14px;
}
.sr-subscribe-dek {
  font-family: var(--sr-font-body); font-size: 17px;
  color: rgba(244,240,231,.75); line-height: 1.55;
}
.sr-subscribe-form { position: relative; z-index: 1; }
.sr-email-row { display: flex; gap: 10px; margin-bottom: 16px; }
.sr-email-input {
  flex: 1; font-family: var(--sr-font-body); font-size: 16px;
  background: #fff; color: var(--sr-ink); border: none; border-radius: var(--sr-radius-chip);
  padding: 13px 18px; outline: none;
}
.sr-email-input::placeholder { color: rgba(21,25,31,.45); }
.sr-email-submit {
  font-family: var(--sr-font-display); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  background: var(--sr-ink); color: var(--sr-paper);
  padding: 13px 20px; border-radius: var(--sr-radius-chip);
  transition: opacity 150ms; white-space: nowrap;
}
.sr-email-submit:hover { opacity: .8; }
.sr-subscribe-platforms {
  font-family: var(--sr-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .16em;
  color: rgba(244,240,231,.55);
}

@media (max-width: 767px) {
  .sr-subscribe-panel { grid-template-columns: 1fr; gap: 32px; }
  .sr-email-row { flex-direction: column; }
}

/* ============================================================
   §3.7 FOOTER
   ============================================================ */
.sr-footer {
  border-top: 1px solid var(--sr-slate-line);
  padding: 28px 0;
}
.sr-footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.sr-footer-copy {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--sr-slate-muted);
}
.sr-footer-sign {
  font-family: var(--sr-font-body); font-style: italic;
  font-size: 15px; color: var(--sr-slate-muted);
}

/* ============================================================
   TAG / ARCHIVE PAGE — §4.1
   ============================================================ */
.sr-archive { background: var(--sr-slate-deep); min-height: 100vh; }

.sr-tag-header {
  padding: 72px 0 56px;
  background: radial-gradient(circle at 85% 20%, rgba(31,93,174,.30), transparent 55%);
  border-bottom: 1px solid var(--sr-slate-line);
  margin-bottom: 56px;
}
.sr-tag-kicker {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--sr-yellow); margin-bottom: 16px;
}
.sr-tag-title {
  font-family: var(--sr-font-display); font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: var(--sr-tracking-tight);
  color: var(--sr-paper); line-height: .92; margin-bottom: 20px;
}
.sr-tag-desc {
  font-family: var(--sr-font-body); font-size: 21px;
  color: var(--sr-slate-muted); max-width: 560px; line-height: 1.55;
}

/* Post grid */
.sr-post-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  padding-bottom: 80px;
}
.sr-post-card {
  display: block; transition: transform 200ms var(--sr-ease);
}
.sr-post-card:hover { transform: translateY(-4px); }
.sr-post-thumb {
  position: relative; aspect-ratio: 1.5; border-radius: 10px;
  overflow: hidden; background: var(--sr-slate);
  margin-bottom: 16px;
}
.sr-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sr-post-thumb-placeholder {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, #13314f 0, #13314f 12px, #16395b 12px, #16395b 24px);
}
.sr-post-thumb-bars { position: absolute; left:0; right:0; background: #000; height: 12%; }
.sr-post-thumb-bars.top { top: 0; }
.sr-post-thumb-bars.bottom { bottom: 0; }
.sr-post-meta {
  font-family: var(--sr-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--sr-blue-bright); margin-bottom: 8px;
}
.sr-post-title {
  font-family: var(--sr-font-display); font-size: 20px; font-weight: 700;
  letter-spacing: var(--sr-tracking-display); color: var(--sr-paper);
  line-height: 1.15; margin-bottom: 8px;
  transition: color 150ms;
}
.sr-post-card:hover .sr-post-title { color: var(--sr-yellow); }
.sr-post-dek {
  font-family: var(--sr-font-body); font-size: 14px;
  color: var(--sr-slate-muted); line-height: 1.5;
}

/* Pagination */
.sr-pagination { display: flex; justify-content: center; gap: 8px; padding: 0 0 80px; }
.sr-page-chip {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 8px 14px; border-radius: var(--sr-radius-chip);
  border: 1px solid var(--sr-slate-line); color: var(--sr-slate-muted);
  transition: color 150ms, border-color 150ms;
}
.sr-page-chip.is-current { background: var(--sr-yellow); color: var(--sr-ink); border-color: var(--sr-yellow); }
.sr-page-chip:hover:not(.is-current) { color: var(--sr-paper); border-color: var(--sr-paper); }

@media (max-width: 900px) { .sr-post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sr-post-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ESSAY / ARTICLE PAGE — §4.2
   ============================================================ */
.sr-article-page { background: var(--sr-paper); color: var(--sr-ink); }

/* Paper header variant */
.sr-nav-paper {
  background: rgba(244,240,231,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid var(--sr-ink);
}
.sr-nav-paper .sr-nav-links a { color: var(--sr-muted); }
.sr-nav-paper .sr-nav-links a:hover { color: var(--sr-blue); }
.sr-nav-paper .sr-nav-links a.nav-watchlist { color: var(--sr-blue); }
.sr-nav-paper .sr-wordmark .a { color: var(--sr-slate); }
.sr-nav-paper .sr-wordmark .b { color: var(--sr-blue); }
.sr-nav-paper .sr-mark { --slate: var(--sr-blue); --bar: var(--sr-slate); }
.sr-nav-paper-tag {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .16em; color: var(--sr-blue);
}
.sr-nav-paper .sr-nav-subscribe { background: var(--sr-blue); color: var(--sr-paper); }

/* Article title block */
.sr-article-title-block {
  max-width: 620px; margin: 0 auto;
  padding: 72px clamp(20px,4vw,48px) 48px;
  text-align: center;
}
.sr-article-cat {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--sr-blue); margin-bottom: 16px;
}
.sr-article-title {
  font-family: var(--sr-font-display); font-size: clamp(32px, 4vw, 50px);
  font-weight: 700; letter-spacing: -0.03em; color: var(--sr-ink);
  line-height: 1.05; margin-bottom: 18px;
}
.sr-article-standfirst {
  font-family: var(--sr-font-body); font-size: 23px; font-style: italic;
  color: var(--sr-muted); line-height: 1.5; margin-bottom: 28px;
}
.sr-article-byline {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.sr-byline-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sr-blue); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sr-font-display); font-size: 13px; font-weight: 700;
  color: var(--sr-paper);
}
.sr-byline-text {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .16em; color: var(--sr-muted-2);
}

/* Hero still */
.sr-article-image {
  max-width: 720px; margin: 0 auto 56px;
  padding: 0 clamp(20px,4vw,48px);
}
.sr-article-still {
  position: relative; border-radius: var(--sr-radius-chip);
  overflow: hidden; aspect-ratio: 2.39;
  background: var(--sr-paper-2);
}
.sr-article-still img { width: 100%; height: 100%; object-fit: cover; }
.sr-article-still-placeholder {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, #E4DCC9 0, #E4DCC9 12px, #EDE6D6 12px, #EDE6D6 24px);
}
.sr-article-still-bars { position: absolute; left:0; right:0; background: var(--sr-ink); height: 10%; opacity: .12; }
.sr-article-still-bars.top { top: 0; }
.sr-article-still-bars.bottom { bottom: 0; }
.sr-article-caption {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--sr-muted-2); text-align: center; margin-top: 10px;
}

/* Body */
.sr-article-body {
  max-width: 620px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px) 80px;
  font-family: var(--sr-font-body); font-size: 20px;
  line-height: 1.62; color: var(--sr-muted);
}
.sr-article-body p + p { margin-top: 22px; }
.sr-article-body h2 {
  font-family: var(--sr-font-display); font-size: 28px; font-weight: 700;
  letter-spacing: var(--sr-tracking-display); color: var(--sr-ink);
  margin-top: 48px; margin-bottom: 16px;
}
.sr-article-body h3 {
  font-family: var(--sr-font-display); font-size: 22px; font-weight: 700;
  letter-spacing: var(--sr-tracking-display); color: var(--sr-ink);
  margin-top: 36px; margin-bottom: 12px;
}
.sr-article-body blockquote {
  font-style: italic; font-size: 25px; color: var(--sr-slate);
  border-left: 4px solid var(--sr-blue); padding-left: 24px;
  margin: 36px 0; line-height: 1.45;
}
.sr-article-body a { color: var(--sr-blue); text-decoration: underline; text-underline-offset: 3px; }
.sr-article-body b, .sr-article-body strong { color: var(--sr-ink); font-weight: 600; }
.sr-article-body img { border-radius: var(--sr-radius-chip); margin: 32px auto; }
.sr-article-body figcaption {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--sr-muted-2); text-align: center; margin-top: 8px;
}

/* Ghost Koenig blocks */
.sr-article-body .kg-image-card img { margin: 0; }
.sr-article-body .kg-gallery-card { margin: 32px 0; }
.sr-article-body .kg-callout-card {
  background: var(--sr-paper-2); border-radius: var(--sr-radius-chip);
  padding: 20px 24px; margin: 28px 0;
  font-size: 17px;
}

/* Article post footer */
.sr-article-foot {
  max-width: 620px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px) 80px;
}
.sr-article-foot-rule { height: 1.5px; background: var(--sr-line); margin-bottom: 24px; }
.sr-tag-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sr-tag-chip {
  font-family: var(--sr-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .14em;
  padding: 6px 12px; border-radius: var(--sr-radius-chip);
  background: var(--sr-blue); color: var(--sr-paper);
}
.sr-tag-chip-outline {
  background: transparent; color: var(--sr-ink);
  border: 1px solid var(--sr-ink);
}

/* Paper footer variant */
.sr-footer-paper {
  background: var(--sr-paper); border-top: 1.5px solid var(--sr-ink);
}
.sr-footer-paper .sr-footer-copy,
.sr-footer-paper .sr-footer-sign { color: var(--sr-muted-2); }

/* ============================================================
   WATCHLIST PAGE — §4.3
   ============================================================ */
.sr-watchlist-page { background: var(--sr-slate-deep); min-height: 100vh; }

.sr-watchlist-header {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--sr-slate-line);
  margin-bottom: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
}
.sr-watchlist-kicker {
  font-family: var(--sr-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--sr-slate-muted); margin-bottom: 16px;
}
.sr-watchlist-title {
  font-family: var(--sr-font-display); font-size: clamp(40px, 6vw, 66px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: var(--sr-tracking-tight);
  color: var(--sr-paper); line-height: .92;
}
.sr-watchlist-title .accent { color: var(--sr-yellow); }
.sr-watchlist-dek {
  font-family: var(--sr-font-body); font-size: 18px;
  color: var(--sr-slate-muted); line-height: 1.55; max-width: 430px;
  align-self: end;
}

/* Two-column body */
.sr-watchlist-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding-bottom: 80px;
}
.sr-wl-col-label {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--sr-yellow); margin-bottom: 24px;
}

/* Coming soon rows */
.sr-coming-item {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 16px; align-items: start;
  padding: 16px 0; border-top: 1px solid var(--sr-slate-line);
}
.sr-coming-poster {
  width: 64px; aspect-ratio: 0.7; border-radius: 6px;
  overflow: hidden; flex-shrink: 0; background: var(--sr-slate);
}
.sr-coming-poster img { width: 100%; height: 100%; object-fit: cover; }
.sr-coming-poster-placeholder {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(-45deg, #13314f 0, #13314f 8px, #16395b 8px, #16395b 16px);
}
.sr-coming-title {
  font-family: var(--sr-font-display); font-size: 18px; font-weight: 600;
  letter-spacing: var(--sr-tracking-display); color: var(--sr-paper);
  margin-bottom: 4px;
}
.sr-coming-director {
  font-family: var(--sr-font-body); font-size: 14px;
  color: var(--sr-slate-muted); font-style: italic;
}
.sr-coming-date {
  font-family: var(--sr-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--sr-blue-bright); text-align: right;
  white-space: nowrap; padding-top: 4px;
}

/* Recently rated rows */
.sr-rated-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 16px 0; border-top: 1px solid var(--sr-slate-line);
}
.sr-rated-body { flex: 1; min-width: 0; }
.sr-rated-title-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.sr-rated-title {
  font-family: var(--sr-font-display); font-size: 17px; font-weight: 600;
  letter-spacing: var(--sr-tracking-display); color: var(--sr-paper);
}
.sr-rated-year {
  font-family: var(--sr-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--sr-slate-muted);
}
.sr-rated-quip {
  font-family: var(--sr-font-body); font-size: 14px;
  font-style: italic; color: var(--sr-slate-muted); line-height: 1.4;
}
.sr-rated-stars {
  font-family: var(--sr-font-display); font-size: 15px; font-weight: 700;
  color: var(--sr-yellow); white-space: nowrap; flex-shrink: 0;
}

@media (max-width: 767px) {
  .sr-watchlist-header { grid-template-columns: 1fr; gap: 24px; }
  .sr-watchlist-body { grid-template-columns: 1fr; }
}

/* ============================================================
   GHOST PORTAL OVERRIDES
   ============================================================ */
.gh-portal-close { display: none !important; }

/* ── Ghost navigation helper output ── */
.sr-nav-links .nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.sr-nav-links .nav li a {
  font-family: var(--sr-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sr-slate-muted);
  padding: 6px 12px;
  border-radius: var(--sr-radius-chip);
  transition: color 150ms var(--sr-ease);
  white-space: nowrap;
  display: block;
}
.sr-nav-links .nav li a:hover { color: var(--sr-yellow); }

/* Highlight The Watchlist in yellow always */
.sr-nav-links .nav li.nav-the-watchlist a { color: var(--sr-yellow); }

/* Mobile */
@media (max-width: 767px) {
  .sr-nav.is-open .sr-nav-links .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .sr-nav.is-open .sr-nav-links .nav li a {
    font-size: 15px;
    padding: 12px 0;
  }
}

/* ── Active nav link: current page gets yellow ── */
.sr-nav-links .nav li.nav-current a,
.sr-nav-links .nav li.current a {
  color: var(--sr-yellow) !important;
}

/* ============================================================
   REVISION PASS — all fixes in one block
   ============================================================ */

/* 1. Remove letterbox crop from article images -- straight image, no bars */
.sr-article-still { aspect-ratio: unset !important; border-radius: var(--sr-radius-card); }
.sr-article-still img { position: static !important; height: auto !important; border-radius: var(--sr-radius-card); }
.sr-article-still-bars { display: none !important; }
.sr-article-still-placeholder { display: none !important; }

/* Also fix feature image on post cards -- no bars */
.sr-post-thumb-bars { display: none !important; }
.sr-feature-bars { display: none !important; }

/* 2. Hero title -- scale down */
.sr-hero-title {
  font-size: clamp(30px, 4vw, 48px) !important;
  line-height: 1.0 !important;
}

/* 3. Homepage animations */
@keyframes sr-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sr-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.sr-hero-kicker  { animation: sr-fade-up 0.5s var(--sr-ease) 0.1s both; }
.sr-hero-title   { animation: sr-fade-up 0.6s var(--sr-ease) 0.2s both; }
.sr-hero-dek     { animation: sr-fade-up 0.6s var(--sr-ease) 0.35s both; }
.sr-hero-actions { animation: sr-fade-up 0.6s var(--sr-ease) 0.45s both; }
.sr-hero-platforms { animation: sr-fade-up 0.5s var(--sr-ease) 0.55s both; }
.sr-hero-right   { animation: sr-fade-in 0.8s var(--sr-ease) 0.3s both; }

.sr-hook p       { animation: sr-fade-up 0.7s var(--sr-ease) both; }

/* Notebook section -- stagger on scroll would need JS; use a soft fade instead */
.sr-feature-card { animation: sr-fade-up 0.6s var(--sr-ease) 0.1s both; }
.sr-essay-item   { transition: transform 200ms var(--sr-ease), opacity 200ms; }

/* 5. Nav -- bigger text, more spacing */
.sr-nav-links .nav { gap: 4px; }
.sr-nav-links .nav li a {
  font-size: 12.5px !important;
  letter-spacing: .12em !important;
  padding: 8px 16px !important;
}
.sr-nav-inner { gap: 40px !important; }

/* 6. Subscribe button -- show regardless of members_enabled check via portal */
.sr-nav-subscribe {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ── Podcast Teaser ── */
.sr-podcast-teaser { padding: 0 0 72px; }
.sr-podcast-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border: 1px solid var(--sr-slate-line);
  border-radius: var(--sr-radius-card);
  padding: 36px 40px;
  background: rgba(255,255,255,.02);
}
.sr-podcast-card-left { display: flex; align-items: center; gap: 24px; flex: 1; min-width: 0; }
.sr-podcast-kicker {
  font-family: var(--sr-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--sr-yellow); margin-bottom: 6px;
}
.sr-podcast-title {
  font-family: var(--sr-font-display); font-size: 22px; font-weight: 700;
  letter-spacing: var(--sr-tracking-display); color: var(--sr-paper);
  margin-bottom: 8px;
}
.sr-podcast-dek {
  font-family: var(--sr-font-body); font-size: 15px;
  color: var(--sr-slate-muted); line-height: 1.55;
}
.sr-podcast-cta {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--sr-yellow); white-space: nowrap;
  border: 1px solid var(--sr-yellow);
  padding: 10px 20px; border-radius: var(--sr-radius-chip);
  transition: background 150ms, color 150ms;
  flex-shrink: 0;
}
.sr-podcast-cta:hover {
  background: var(--sr-yellow); color: var(--sr-ink);
}

/* Clean up feature image -- no bars, natural crop */
.sr-feature-image {
  border-radius: var(--sr-radius-card) !important;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.sr-feature-image img {
  position: static !important;
  width: 100%; height: 100% !important;
  object-fit: cover;
}

/* ── Podcast Teaser v2 -- floating, prominent ── */
.sr-podcast-teaser {
  padding: 0 0 0;
  margin-top: -32px; /* float up, overlap the hero bottom */
  position: relative;
  z-index: 10;
}
.sr-podcast-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border: 1px solid rgba(255,196,46,.25);
  border-radius: var(--sr-radius-card);
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(31,93,174,.18) 0%, rgba(12,27,46,.95) 60%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(255,196,46,.08), inset 0 1px 0 rgba(255,255,255,.06);
}
.sr-podcast-card-left { display: flex; align-items: center; gap: 20px; flex: 1; min-width: 0; }

.sr-podcast-icon {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; flex-shrink: 0;
}
.sr-podcast-rec {
  font-family: var(--sr-font-mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--sr-red); white-space: nowrap;
  animation: sr-blink 1.4s steps(1) infinite;
}
.sr-podcast-kicker {
  font-family: var(--sr-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--sr-yellow); margin-bottom: 6px;
}
.sr-podcast-title {
  font-family: var(--sr-font-display); font-size: 20px; font-weight: 700;
  letter-spacing: var(--sr-tracking-display); color: var(--sr-paper);
  margin-bottom: 6px; line-height: 1.1;
}
.sr-podcast-dek {
  font-family: var(--sr-font-body); font-size: 14px;
  color: var(--sr-slate-muted); line-height: 1.5;
}
.sr-podcast-cta {
  font-family: var(--sr-font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--sr-ink);
  background: var(--sr-yellow);
  padding: 11px 22px; border-radius: var(--sr-radius-chip);
  transition: opacity 150ms, transform 150ms var(--sr-ease);
  flex-shrink: 0; white-space: nowrap; font-weight: 700;
}
.sr-podcast-cta:hover { opacity: .88; transform: translateY(-2px); }

/* Fix hero still -- no bars, clean image */
.sr-hero-still { position: relative; }
.sr-still-bars { display: none !important; }
.sr-hero-still img {
  border-radius: 12px !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  box-shadow: var(--sr-shadow-hero);
}

/* Podcast teaser animation */
.sr-podcast-card {
  animation: sr-fade-up 0.7s var(--sr-ease) 0.5s both;
}

@media (max-width: 767px) {
  .sr-podcast-teaser { margin-top: 0; padding-top: 24px; }
  .sr-podcast-card { flex-direction: column; align-items: flex-start; }
}

/* ── Podcast platform strip ── */
.sr-podcast-info { flex: 1; min-width: 0; }
.sr-podcast-platforms { margin-top: 16px; }
.sr-platform-label {
  font-family: var(--sr-font-mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--sr-slate-muted); display: block; margin-bottom: 8px;
}
.sr-platform-list {
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px 6px;
}
.sr-platform {
  font-family: var(--sr-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--sr-paper);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 4px 10px; border-radius: var(--sr-radius-chip);
}
.sr-platform-dot {
  color: var(--sr-slate-muted); font-size: 10px;
  display: none; /* hidden -- using chips instead of dots */
}
.sr-platform:last-child {
  background: transparent; border-color: transparent;
  color: var(--sr-slate-muted); font-style: italic;
  padding-left: 2px;
}

/* ============================================================
   FIXES: hero image border, logo animation, platform logos
   ============================================================ */

/* Fix hero still empty border -- remove fixed aspect ratio,
   let image define the height naturally */
.sr-hero-still {
  position: relative !important;
  aspect-ratio: unset !important;
  background: transparent !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}
.sr-hero-still-placeholder { display: none !important; }
.sr-hero-still img {
  border-radius: 12px !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  box-shadow: var(--sr-shadow-hero) !important;
}

/* Nav logo -- periodic clapper snap every ~8s */
@keyframes sr-clap-loop {
  0%   { transform: rotate(-11deg); }
  2%   { transform: rotate(-34deg); }
  5%   { transform: rotate(-5deg); }
  8%   { transform: rotate(-11deg); }
  100% { transform: rotate(-11deg); }
}
.sr-nav .sr-mark .bar {
  animation: sr-clap-loop 8s ease-in-out infinite !important;
}

/* Platform logo chips -- icon + name */
.sr-platform-logos {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-top: 14px;
}
.sr-platform-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--sr-radius-chip);
  padding: 6px 12px;
  font-family: var(--sr-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--sr-paper);
  transition: background 150ms, border-color 150ms;
}
.sr-platform-chip svg { width: 14px; height: 14px; flex-shrink: 0; }
.sr-platform-chip:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}

/* ── Nav logo: 25% bigger ── */
.sr-nav .sr-lockup .sr-mark { --size: 42px !important; }
.sr-nav .sr-lockup .sr-wordmark { font-size: 21px !important; }

/* ── Nav logo periodic clapper animation (override previous) ── */
@keyframes sr-clap-periodic {
  0%    { transform: rotate(-11deg); }
  3%    { transform: rotate(-34deg); }
  7%    { transform: rotate(-4deg); }
  10%   { transform: rotate(-11deg); }
  100%  { transform: rotate(-11deg); }
}
.sr-nav .sr-mark .bar {
  animation: sr-clap-periodic 9s ease-in-out 2s infinite !important;
}

/* ── Fix gap below podcast teaser -- paper section background showing ── */
.sr-podcast-teaser {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.sr-notebook {
  margin-top: 0 !important;
  padding-top: 56px !important;
}

/* ── Subscribe block -- scale down significantly ── */
.sr-subscribe-panel {
  padding: clamp(28px, 3vw, 40px) clamp(24px, 4vw, 48px) !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
}
.sr-subscribe-heading {
  font-size: clamp(22px, 2.5vw, 32px) !important;
  margin-bottom: 10px !important;
}
.sr-subscribe-dek {
  font-size: 15px !important;
  line-height: 1.5 !important;
}
.sr-email-input {
  font-size: 14px !important;
  padding: 10px 14px !important;
}
.sr-email-submit {
  font-size: 13px !important;
  padding: 10px 16px !important;
}
.sr-email-row { margin-bottom: 0 !important; }

/* ── Smooth transition: dark → podcast teaser → paper notebook ── */
.sr-podcast-teaser {
  background: var(--sr-slate-deep) !important;
  padding-top: 0 !important;
  padding-bottom: 48px !important;
  margin-top: 0 !important;
}
/* Remove the negative margin overlap -- causes the gap */
.sr-podcast-teaser { margin-top: 0 !important; }
/* Give hero a clean bottom */
.sr-hero { padding-bottom: 48px !important; }

/* ── Feature card layout fix ── */
.sr-feature-card { display: block; }
.sr-feature-image {
  border-radius: var(--sr-radius-card);
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 4 / 3;
}
.sr-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: static;
}
.sr-feature-card-body { padding: 0; }
.sr-feature-card-body h3 {
  font-family: var(--sr-font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: var(--sr-tracking-display);
  color: var(--sr-ink);
  line-height: 1.1;
  margin-bottom: 10px;
  transition: color 150ms;
}
.sr-feature-card:hover .sr-feature-card-body h3 { color: var(--sr-blue); }
.sr-feature-card-body p {
  font-family: var(--sr-font-body);
  font-size: 16px;
  color: var(--sr-muted);
  line-height: 1.55;
}

/* ── Article page layout fixes ── */
.sr-article-title-block {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 56px clamp(20px, 4vw, 48px) 40px !important;
  text-align: left !important;
}

.sr-article-image {
  max-width: 820px !important;
  margin: 0 auto 48px !important;
  padding: 0 clamp(20px, 4vw, 48px) !important;
}

.sr-article-body {
  max-width: 720px !important;
  margin: 0 auto !important;
  padding: 0 clamp(20px, 4vw, 48px) 64px !important;
  font-size: 19px !important;
  line-height: 1.65 !important;
}

.sr-article-foot {
  max-width: 720px !important;
  margin: 0 auto !important;
  padding: 0 clamp(20px, 4vw, 48px) 64px !important;
}

/* Ghost Koenig card widths */
.sr-article-body .kg-width-wide {
  margin-left: -80px !important;
  margin-right: -80px !important;
}
.sr-article-body .kg-width-full {
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  max-width: 100vw !important;
}

/* ── Podcast teaser platform strip alignment ── */
.sr-podcast-platforms {
  margin-top: 16px;
}
.sr-platform-label {
  display: block;
  font-family: var(--sr-font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--sr-slate-muted);
  margin-bottom: 10px;
}
.sr-platform-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 0;
}


/* ── Footer tagline -- remove italic ── */
.sr-footer-sign {
  font-style: normal !important;
  font-family: var(--sr-font-mono) !important;
  font-size: 11px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

/* ── Footer tagline with mark ── */
.sr-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sr-footer-tagline {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sr-footer-rule {
  width: 1px;
  height: 40px;
  background: var(--sr-slate-line);
  flex-shrink: 0;
}

.sr-footer-tagline-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sr-font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sr-paper);
  font-style: normal !important;
}

.sr-footer-cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--sr-yellow);
  border-radius: 1px;
  animation: sr-blink 1.05s steps(1) infinite;
  flex-shrink: 0;
}

/* Paper footer variant */
.sr-footer-paper .sr-footer-tagline-text { color: var(--sr-muted); }
.sr-footer-paper .sr-footer-rule { background: var(--sr-line); }
.sr-footer-paper .sr-footer-cursor { background: var(--sr-blue); }


/* ============================================================
   NAV LOCKUP — Oswald wordmark, single canonical block
   ============================================================ */

/* Wordmark uses Oswald sitewide */
.sr-wordmark {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.92;
}
.sr-wordmark .a { color: var(--sr-paper); }
.sr-wordmark .b { color: var(--sr-yellow); }

/* Nav lockup: mark + stacked wordmark, vertically centered */
.sr-nav .sr-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sr-nav .sr-mark {
  --size: 34px;
  flex-shrink: 0;
}
.sr-nav .sr-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
  top: 1px; /* optical alignment against mark center */
}
.sr-nav .sr-wordmark .a,
.sr-nav .sr-wordmark .b {
  display: block;
  line-height: 1.05;
}

/* Remove old sign style */
.sr-footer-sign { display: none; }

/* ============================================================
   ALL WRITING PAGE — .aw-* namespace
   ============================================================ */
@keyframes aw-blink { 0%,49%{opacity:1} 50%,100%{opacity:0} }

.aw-page {
  background: #0A1422;
  min-height: 100vh;
  color: #F4F0E7;
}

/* Header */
.aw-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 56px 56px;
}
.aw-kicker {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #FFC42E;
  display: flex;
  align-items: center;
  gap: 14px;
}
.aw-kicker-rule {
  width: 26px;
  height: 1px;
  background: #FFC42E;
  display: inline-block;
  flex-shrink: 0;
}
.aw-title {
  margin: 22px 0 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #F4F0E7;
}
.aw-standfirst {
  margin: 24px 0 0;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 23px;
  line-height: 1.5;
  color: #9FB0C4;
}

/* Featured lead */
.aw-lead-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 56px;
}
.aw-lead {
  display: block;
  text-decoration: none;
  border-top: 2px solid #FFC42E;
  padding: 46px 0 52px;
}
.aw-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.aw-lead-meta {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5C9BE0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.aw-latest-badge {
  background: #FFC42E;
  color: #0A1422;
  padding: 3px 9px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
}
.aw-lead-title {
  margin: 20px 0 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #F4F0E7;
  transition: color 0.25s ease;
}
.aw-lead:hover .aw-lead-title { color: #FFC42E; }
.aw-lead-excerpt {
  margin: 22px 0 0;
  font-family: 'Newsreader', serif;
  font-size: 20px;
  line-height: 1.62;
  color: #A9B8CB;
  max-width: 440px;
}
.aw-lead-cta {
  margin-top: 28px;
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #F4F0E7;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #FFC42E;
  padding-bottom: 4px;
}
.aw-cursor {
  width: 7px;
  height: 14px;
  background: #E8472A;
  display: inline-block;
  animation: aw-blink 1.05s steps(1) infinite;
}

/* Letterbox plate */
.aw-lead-plate {
  position: relative;
  aspect-ratio: 1.85;
  border-radius: 6px;
  overflow: hidden;
  background: radial-gradient(130% 150% at 50% 30%, #122B45 0%, #0A1422 72%);
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.aw-lead-plate img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aw-plate-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 50% 24%, rgba(31,93,174,.45), transparent 60%);
}
.aw-plate-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 11%;
  background: #05080e;
}
.aw-plate-top { top: 0; }
.aw-plate-bottom { bottom: 0; }
.aw-plate-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.aw-plate-site {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: #6E8198;
  text-transform: uppercase;
}
.aw-plate-fade {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: 0.06em;
  color: #F2EAD8;
}

/* Reel frame thumbnail */
.aw-thumb {
  display: block;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: center;
  position: relative;
}
.aw-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aw-thumb--empty {
  background: #0c1828;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aw-thumb-fade {
  font-family: 'Courier Prime', monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
  color: #3C546F;
  text-transform: uppercase;
}

/* Reel */
.aw-reel-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 56px 60px;
}
.aw-reel-label {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6E8198;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.aw-reel-rule {
  width: 20px;
  height: 1px;
  background: #3C546F;
  display: inline-block;
  flex-shrink: 0;
}
.aw-reel {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.aw-rail {
  width: 34px;
  flex: none;
  background-color: #05080e;
  background-image: radial-gradient(ellipse 9px 12px at center, #1b2c42 0 58%, transparent 61%);
  background-size: 34px 34px;
  background-repeat: repeat-y;
  background-position: center 16px;
}
.aw-frames { flex: 1; background: linear-gradient(180deg, #0c1828, #0a1422); }
.aw-frame {
  display: grid;
  grid-template-columns: 62px 58px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 40px 38px;
  text-decoration: none;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.07);
  transition: background 0.3s ease;
}
.aw-frame:first-child { border-top: none; }
.aw-frame:hover { background: rgba(31,93,174,.10); }
.aw-edge {
  position: absolute;
  top: 11px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  font-family: 'Courier Prime', monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: #3C546F;
  text-transform: uppercase;
}
.aw-idx {
  font-family: 'Courier Prime', monospace;
  font-size: 15px;
  color: #5C7B9E;
  padding-top: 8px;
  transition: color 0.25s ease;
}
.aw-frame:hover .aw-idx { color: #FFC42E; }
.aw-cat {
  display: block;
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5C9BE0;
}
.aw-frame-title {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #F4F0E7;
  margin-top: 9px;
  transition: color 0.25s ease;
}
.aw-frame:hover .aw-frame-title { color: #FFC42E; }
.aw-frame-excerpt {
  display: block;
  font-family: 'Newsreader', serif;
  font-size: 18px;
  line-height: 1.55;
  color: #9FB0C4;
  margin-top: 12px;
  max-width: 600px;
}
.aw-meta {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #6E8198;
  white-space: nowrap;
  padding-top: 8px;
  text-align: right;
}
.aw-date { color: #4E627C; }

/* End of reel */
.aw-end {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 54px 56px;
  text-align: center;
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #4E627C;
}

/* Mobile */
@media (max-width: 720px) {
  .aw-header, .aw-lead-wrap, .aw-reel-wrap { padding-left: 24px; padding-right: 24px; }
  .aw-lead-grid { grid-template-columns: 1fr; gap: 32px; }
  .aw-lead-plate { display: none; }
  .aw-rail { width: 20px; background-size: 20px 20px; }
  .aw-frame { grid-template-columns: 1fr; gap: 6px; padding: 30px 22px; }
  .aw-thumb { display: none; }
  .aw-meta { text-align: left; padding-top: 4px; }
  .aw-edge { left: 22px; right: 22px; }
}

/* ── Filter bar ── */
.aw-filters {
  max-width: 1120px;
  margin: 0 auto 0;
  padding: 0 56px 32px;
}
.aw-filter-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.aw-search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.aw-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.aw-search {
  width: 100%;
  background: #0c1828;
  border: 1px solid #1b2c42;
  border-radius: 4px;
  padding: 10px 14px 10px 38px;
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #F4F0E7;
  outline: none;
  transition: border-color 0.2s ease;
}
.aw-search::placeholder { color: #3C546F; }
.aw-search:focus { border-color: #1F5DAE; }
.aw-select {
  background: #0c1828;
  border: 1px solid #1b2c42;
  border-radius: 4px;
  padding: 10px 32px 10px 14px;
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #9FB0C4;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C7B9E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.aw-select:focus { border-color: #1F5DAE; }
.aw-reset {
  background: none;
  border: 1px solid #1b2c42;
  border-radius: 4px;
  padding: 10px 16px;
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5C7B9E;
  cursor: pointer;
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.aw-reset:hover { border-color: #E8472A; color: #E8472A; }
.aw-filter-count {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFC42E;
  margin-top: 10px;
  min-height: 16px;
}
.aw-no-results {
  display: none;
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3C546F;
  text-align: center;
  padding: 48px 0;
}
@media (max-width: 720px) {
  .aw-filters { padding-left: 24px; padding-right: 24px; }
  .aw-search-wrap { min-width: 100%; }
}

/* ── Pagination ── */
.aw-pagination {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 32px 56px;
  max-width: 1120px;
  margin: 0 auto;
}
.aw-page-btn {
  background: none;
  border: 1px solid #1b2c42;
  border-radius: 4px;
  padding: 10px 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9FB0C4;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.aw-page-btn:hover:not(:disabled) { border-color: #FFC42E; color: #FFC42E; }
.aw-page-btn:disabled { opacity: 0.25; cursor: default; }
.aw-page-info {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5C7B9E;
}

/* ============================================================
   WATCHLIST — recently watched grid
   ============================================================ */
.wl-recent {
  margin: 48px 0 64px;
}
.wl-section-label {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sr-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wl-label-rule {
  width: 20px;
  height: 1px;
  background: var(--sr-line);
  display: inline-block;
  flex-shrink: 0;
}
.wl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 24px;
}
.wl-loading, .wl-empty {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--sr-muted);
  grid-column: 1 / -1;
}
.wl-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 10px;
  transition: transform 0.2s ease;
}
.wl-card:hover { transform: translateY(-3px); }
.wl-poster {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sr-slate);
}
.wl-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wl-poster--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wl-poster--empty span {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--sr-muted);
  text-transform: uppercase;
}
.wl-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wl-film-title {
  font-family: var(--sr-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--sr-paper);
  line-height: 1.3;
  margin: 0;
}
.wl-film-year {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: var(--sr-muted);
  margin: 0;
}
.wl-stars {
  font-size: 13px;
  color: var(--sr-yellow);
  letter-spacing: 0.05em;
}
.wl-stars-empty {
  opacity: 0.2;
}
.wl-no-rating {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: var(--sr-muted);
  letter-spacing: 0.06em;
}
.wl-film-date {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  color: var(--sr-muted);
  opacity: 0.6;
  margin: 0;
}

/* ============================================================
   WATCHLIST PAGE v2 — .wl-* namespace
   ============================================================ */

.wl-page {
  background: #0A1422;
  min-height: 100vh;
  color: #F4F0E7;
}

/* Hero */
/* Hero wrap — screenplay bg covers this entire section */
.wl-hero-wrap {
  position: relative;
  overflow: hidden;
}
/* Screenplay background — multi-column to fill full width */
.wl-screenplay-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.055;
  overflow: hidden;
  z-index: 0;
}
.wl-sp-pre {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  line-height: 1.7;
  color: #F4F0E7;
  white-space: pre;
  margin: 0;
  padding: 24px 40px;
  column-count: 3;
  column-gap: 40px;
  column-fill: auto;
  height: 100%;
}
.wl-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 56px 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.wl-hero-left {
  position: relative;
  z-index: 1;
}
.wl-sp-line { display: block; }
.wl-sp-action { margin: 4px 0; }
.wl-sp-char {
  margin-top: 12px;
  padding-left: 140px;
  letter-spacing: 0.08em;
}
.wl-sp-dial { padding-left: 90px; }
.wl-sp-paren { padding-left: 110px; }

.wl-title {
  margin: 0;
  position: relative;
  line-height: 0.88;
  text-transform: uppercase;
}
.wl-title-the {
  display: block;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  color: #9FB0C4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 4px;
}
.wl-title-main {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(58px, 9vw, 96px);
  color: #FFC42E;
  line-height: 0.88;
  letter-spacing: -0.01em;
}
.wl-dek {
  margin: 20px 0 0;
  font-family: 'Newsreader', serif;
  font-size: 20px;
  line-height: 1.55;
  color: #9FB0C4;
}

/* Featured card */
.wl-featured { min-height: 180px; position: relative; z-index: 1; }
.wl-featured-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
  background: #0C1B2E;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  padding: 0;
  text-decoration: none;
  transition: border-color 0.25s ease;
  overflow: hidden;
}
.wl-featured-card:hover { border-color: #FFC42E; }
.wl-feat-poster-wrap {
  width: 200px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  flex-shrink: 0;
}
.wl-feat-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wl-feat-poster--empty {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #1c3a5c, #0f2236);
}
.wl-feat-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 24px 24px 28px;
  flex: 1;
}
.wl-feat-kicker {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFC42E;
}
.wl-feat-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 26px;
  text-transform: uppercase;
  color: #F4F0E7;
  line-height: 1;
  transition: color 0.25s ease;
}
.wl-featured-card:hover .wl-feat-title { color: #FFC42E; }
.wl-feat-year {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: #5C7B9E;
}
.wl-feat-review {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: #F4F0E7;
  border-left: 2px solid #FFC42E;
  padding-left: 14px;
  margin: 4px 0;
}
.wl-feat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wl-feat-date {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: #6E8198;
}
.wl-featured-loading {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: #3C546F;
  letter-spacing: 0.1em;
}

/* Stats bar — floating pill */
.wl-stats-bar {
  display: flex;
  justify-content: center;
  padding: 20px 56px;
  position: relative;
  z-index: 1;
}
.wl-stats-inner {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 40px;
  padding: 14px 32px;
}
.wl-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px 0 0;
}
.wl-stat:last-child { padding-right: 0; }
.wl-stat-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #F4F0E7;
  line-height: 1;
}
.wl-stat-label {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5C7B9E;
}
.wl-stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.08);
  margin-right: 24px;
  flex-shrink: 0;
}

/* Letterboxd attribution */
.wl-lb-attr {
  max-width: 1180px;
  margin: 8px auto 0;
  padding: 0 56px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.wl-lb-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.07);
}
.wl-lb-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(255,128,0,.2);
  border-radius: 20px;
  white-space: nowrap;
}
.wl-lb-logo {
  height: 15px;
  width: auto;
  display: block;
  opacity: 0.85;
}
.wl-lb-sep {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: rgba(255,128,0,.35);
}
.wl-lb-text {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,128,0,.7);
}

/* Contact sheet */
.wl-sheet-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 56px 48px;
}
.wl-sheet-label {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6E8198;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wl-sheet-rule {
  width: 20px;
  height: 1px;
  background: #3C546F;
  display: inline-block;
  flex-shrink: 0;
}
.wl-sheet {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.wl-sheet-loading {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: #3C546F;
  letter-spacing: 0.1em;
  grid-column: 1 / -1;
}
.wl-tile {
  display: block;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.wl-tile:hover { transform: translateY(-6px); }
.wl-tile-poster {
  position: relative;
  aspect-ratio: 2/3;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(150deg, #1c3a5c, #0f2236);
}
.wl-tile-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wl-tile-empty { width: 100%; height: 100%; }
.wl-tile-fr {
  position: absolute;
  top: 7px;
  left: 8px;
  z-index: 2;
  font-family: 'Courier Prime', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
}
.wl-tile-stars {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 8px 8px;
  background: linear-gradient(to top, rgba(5,8,14,.94), transparent);
}
.wl-tile-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: #F4F0E7;
  margin-top: 10px;
  line-height: 1.1;
  transition: color 0.25s ease;
}
.wl-tile:hover .wl-tile-title { color: #FFC42E; }
.wl-tile-meta {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  color: #5C7B9E;
  margin-top: 4px;
}
.wl-tile-review {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 12px;
  line-height: 1.45;
  color: #9FB0C4;
  margin-top: 6px;
  border-left: 2px solid rgba(255,196,46,.4);
  padding-left: 8px;
}

/* Stars */
.wl-stars .s { font-family: Arial, sans-serif; }
.wl-stars .on { color: #FFC42E; }
.wl-stars .off { color: #3C546F; }

/* On the radar */
.wl-radar-wrap {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 10px;
}
.wl-radar-label {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 56px 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6E8198;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wl-radar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E8472A;
  display: inline-block;
  flex-shrink: 0;
}
.wl-radar-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 56px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.wl-radar-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 16px;
}
.wl-radar-poster {
  width: 52px;
  flex: none;
  aspect-ratio: 2/3;
  border-radius: 3px;
  object-fit: cover;
  display: block;
}
.wl-radar-poster--empty {
  background: linear-gradient(150deg, #1c3a5c, #0f2236);
}
.wl-radar-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  color: #F4F0E7;
  line-height: 1.1;
}
.wl-radar-date {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: #FFC42E;
  margin-top: 6px;
  letter-spacing: 0.08em;
}

/* Footer line */
.wl-footer-line {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 40px 56px;
  text-align: center;
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #4E627C;
}
.wl-empty {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: #3C546F;
  letter-spacing: 0.08em;
}

/* Mobile */
@media (max-width: 900px) {
  .wl-hero { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 32px; }
  .wl-stats-inner, .wl-sheet-wrap, .wl-clapper, .wl-radar-label, .wl-radar-grid { padding-left: 24px; padding-right: 24px; }
  .wl-sheet { grid-template-columns: repeat(3, 1fr); }
  .wl-radar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wl-sheet { grid-template-columns: repeat(2, 1fr); }
  .wl-radar-grid { grid-template-columns: 1fr; }
}
/* Nav dot — new rating indicator */
.sr-nav-has-dot {
  position: relative;
}
.sr-nav-has-dot::after {
  content: 'NEW';
  position: absolute;
  top: -7px;
  right: -2px;
  font-family: 'Courier Prime', monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: #E8472A;
  padding: 2px 4px;
  border-radius: 3px;
  line-height: 1;
}
/* ============================================================
   JUST WATCHED — editorial card
   ============================================================ */
@keyframes sr-jw-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.sr-lw-float {
  display: none;
  padding: 32px 40px 40px;
}
.sr-lw-float--loaded { display: block; }

.sr-jw {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 0;
  align-items: stretch;
  background: #0C1B2E;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 12px 30px rgba(0,0,0,.5);
  position: relative;
  z-index: 2;
}

/* Poster */
.sr-jw-poster-link {
  display: block;
  line-height: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}
.sr-jw-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body */
.sr-jw-body {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  border-left: 1px solid rgba(255,255,255,.06);
  border-right: 1px solid rgba(255,255,255,.06);
}
.sr-jw-eyebrow {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #FFC42E;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sr-jw-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFC42E;
  display: inline-block;
  flex-shrink: 0;
  animation: sr-jw-pulse 2s ease-in-out infinite;
}
.sr-jw-title-link { text-decoration: none; }
.sr-jw-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #F4F0E7;
  line-height: 1;
  transition: color 0.2s ease;
}
.sr-jw-title-link:hover .sr-jw-title { color: #FFC42E; }
.sr-jw-meta {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: #5C7B9E;
}
.sr-jw-text {
  font-family: 'Newsreader', serif;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.sr-jw-review {
  font-style: italic;
  color: #F4F0E7;
  border-left: 2px solid #FFC42E;
  padding-left: 14px;
}
.sr-jw-synopsis {
  color: #6E8198;
}

/* Rating block */
.sr-jw-rating-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px 28px;
  min-width: 140px;
}
.sr-jw-rating-label {
  font-family: 'Courier Prime', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFC42E;
}
.sr-jw-stars {
  font-size: 20px;
  white-space: nowrap;
}
.sr-lw-stars-on { color: #FFC42E; }
.sr-lw-stars-off { color: #2C3E52; }
.sr-jw-cta {
  font-family: 'Courier Prime', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3C546F;
  text-decoration: none;
  text-align: center;
  margin-top: 4px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.sr-jw-cta:hover { color: #FFC42E; }

@media (max-width: 768px) {
  .sr-jw { grid-template-columns: auto 1fr; }
  .sr-jw-rating-block { display: none; }
  .sr-jw-poster { width: 72px; }
  .sr-jw-title { font-size: 18px; }
  .sr-lw-float { padding: 20px 16px 0; }
}

/* ============================================================
   MOBILE — comprehensive responsive fixes
   ============================================================ */
@media (max-width: 767px) {

  /* --- NAV handled above --- */

  /* --- JUST WATCHED WIDGET (homepage) --- */
  .sr-lw-float { padding: 16px 16px 0; }
  .sr-jw {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .sr-jw-poster-link {
    aspect-ratio: 16 / 9;
    width: 100%;
  }
  .sr-jw-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sr-jw-body { padding: 16px 18px; }
  .sr-jw-title { font-size: 20px; }
  .sr-jw-rating-block {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 18px;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.06);
  }

  /* --- HOMEPAGE HERO --- */
  .sr-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sr-hero { padding: 40px 0 48px; }

  /* --- WATCHLIST PAGE --- */
  .wl-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px 24px;
  }
  .wl-title-the { font-size: 28px; }
  .wl-title-main { font-size: clamp(48px, 14vw, 72px); }

  /* Featured card — stack poster on top */
  .wl-featured-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .wl-feat-poster-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .wl-feat-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .wl-feat-body { padding: 20px; }
  .wl-feat-review { font-size: 15px; }
  .wl-feat-title { font-size: 20px; }

  /* Stats bar */
  .wl-stats-inner { padding: 12px 20px; gap: 0; }
  .wl-stat-num { font-size: 16px; }

  /* Contact sheet — 2 columns */
  .wl-sheet { grid-template-columns: repeat(2, 1fr); }

  /* Radar — 1 column */
  .wl-radar-grid { grid-template-columns: 1fr; }
  .wl-radar-item { flex-direction: row; align-items: center; gap: 16px; }

  /* Letterboxd tag */
  .wl-lb-attr { padding: 0 20px; }

  /* Screenplay bg — reduce opacity more on mobile */
  .wl-screenplay-bg { opacity: 0.04; }

  /* Footer line */
  .wl-footer-line { font-size: 11px; padding: 24px 20px; }
}

/* Extra small */
@media (max-width: 400px) {
  .wl-sheet { grid-template-columns: 1fr; }
  .sr-jw-title { font-size: 17px; }
}
