/* ─────────────────────────────────────────────────────────────────────────
   Reload — Reels feed. Ported verbatim from the prototype
   (Newsletter v2/Reload Reels.html). The prototype is the visual source of
   truth: do not deviate from the type, colour, or spacing here.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --ink: #0a0a0a;
  --ink-2: #141414;
  --ink-3: #1c1c1c;
  --paper: #f3eedf;
  --paper-2: #e8e2d0;
  --rule: #2a2a2a;
  --hi: #ffd400;          /* live accent */
  --hi-deep: #f5c800;
  --hi-ink: #1a1500;
  --muted: #8a8a8a;
  --muted-paper: #6b6757;

  --display: "Anton", "Archivo Black", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --ts: 1;                /* type scale multiplier */
  --screen-w: 420px;
  --screen-h: 900px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  background: #050505;
  color: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
}
button { font-family: inherit; }

/* ── Stage: dark backdrop that centers the phone on desktop ───────── */
.stage {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 90% at 50% -10%, #1a1916 0%, #0a0a0a 46%, #050505 100%);
}
.stage::before {
  /* faint hazard chevrons in the void behind the phone */
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg,
    rgba(255,212,0,0.035) 0 22px, transparent 22px 64px);
  pointer-events: none;
}

/* ── Phone shell ──────────────────────────────────────────────────── */
.phone {
  position: relative;
  width: var(--screen-w);
  height: min(var(--screen-h), calc(100vh - 36px));
  background: #000;
  border-radius: 46px;
  box-shadow:
    0 0 0 2px #1d1d1d,
    0 0 0 12px #0c0c0c,
    0 0 0 13px #2a2a2a,
    0 40px 90px -20px rgba(0,0,0,0.9);
  overflow: hidden;
}
/* notch / pill */
.phone::after {
  content: "";
  position: absolute;
  top: 11px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 30px;
  background: #000;
  border-radius: 16px;
  z-index: 60;
  pointer-events: none;
}
.screen {
  position: absolute;
  inset: 0;
  border-radius: 46px;
  overflow: hidden;
  background: var(--ink);
}

/* On a real phone (or short/narrow viewport), go full-bleed. */
@media (max-width: 540px), (max-height: 600px) {
  .phone {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    box-shadow: none;
  }
  .phone::after { display: none; }
  .screen { border-radius: 0; }
}

/* ── Feed: vertical scroll-snap of full-screen reels ──────────────── */
.feed {
  position: absolute;
  inset: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.feed::-webkit-scrollbar { display: none; }

.reel {
  position: relative;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Top progress segments (stories style) ────────────────────────── */
.hud-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 14px 0;
  pointer-events: none;
}
.seg-bar {
  display: flex;
  gap: 4px;
}
.seg {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.22);
  overflow: hidden;
}
.seg > i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--hi);
  transition: width .3s ease;
}
.seg.done > i { width: 100%; }
.seg.active > i { width: 100%; }
.hud-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 9px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.hud-meta .brandmark {
  font-family: var(--display);
  letter-spacing: 0.02em;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
}
.hud-meta .brandmark em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--hi);
  font-size: 12px;
}
.hud-meta .counter strong { color: var(--hi); }

/* ── Right action rail ────────────────────────────────────────────── */
.rail {
  position: absolute;
  right: 12px;
  bottom: 132px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.rail[hidden] { display: none; }
.rail button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.rail .ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,20,20,0.55);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}
.rail button:active .ico { transform: scale(0.9); }
.rail .ico svg { width: 22px; height: 22px; display: block; }
.rail .lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.rail button[data-on="1"] .ico { background: var(--hi); border-color: var(--hi); color: var(--ink); }
.rail button[data-on="1"] .lbl { color: var(--hi); }
/* dark/paper reels need a darker rail tint */
.rail.on-paper .ico { background: rgba(10,10,10,0.6); }

/* ── Bottom scrim + caption block (shared by media reels) ─────────── */
.scrim {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 62%;
  background: linear-gradient(to top,
    rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 32%, rgba(0,0,0,0) 100%);
  z-index: 20;
  pointer-events: none;
}
.reel--paper .scrim { display: none; }

.caption {
  position: absolute;
  left: 0; right: 70px; bottom: 0;
  z-index: 30;
  padding: 0 18px 30px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--hi);
  padding: 5px 9px 4px;
  margin-bottom: 14px;
}
.kicker.ghost {
  background: transparent;
  color: var(--hi);
  padding: 0;
}
.kicker.ghost::before {
  content: "";
  width: 22px; height: 1px; background: var(--hi);
}
.headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: calc(54px * var(--ts));
  line-height: 0.9;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--hi);
  font-size: 0.92em;
}
.deck {
  font-family: var(--serif);
  font-style: italic;
  font-size: calc(20px * var(--ts));
  line-height: 1.32;
  color: #ece6d6;
  margin: 0 0 16px;
  max-width: 30ch;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 5px 11px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pill b { color: var(--hi); font-weight: 700; }

/* density control: hide secondary copy when minimal/standard */
body[data-density="minimal"] .deck,
body[data-density="minimal"] .tags,
body[data-density="minimal"] .more { display: none; }
body[data-density="standard"] .more { display: none; }

/* ── Entrance animation, gated on active card + transition style ──── */
/* Entrance reveal is driven entirely from JS (see revealReel) and gated
   inside requestAnimationFrame, so a frozen / backgrounded / throttled tab
   NEVER hides content — the resting state is always fully visible. */
.reel .anim { opacity: 1; }

/* ── Media backdrops ──────────────────────────────────────────────── */
.media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0c0c0c;
}
.media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Neutral backdrop shown when a reel card has no clip yet (production slot). */
.media--empty {
  background:
    radial-gradient(120% 90% at 50% 30%, #1c1b16 0%, #100f0c 55%, #070604 100%);
}
.media--empty::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,212,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,212,0,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.media .grain {
  position: absolute; inset: -50%;
  z-index: 5;
  opacity: 0.06;
  pointer-events: none;
  background-image:
    repeating-conic-gradient(#fff 0 0.0006%, transparent 0 0.0012%);
  background-size: 3px 3px;
  animation: grain 1.1s steps(3) infinite;
}
.media .vignette {
  position: absolute; inset: 0; z-index: 6; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 36%, transparent 50%, rgba(0,0,0,0.55) 100%);
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(-4px, 3px); }
  66% { transform: translate(3px, -3px); }
}
/* grain pauses off-screen for perf */
.media .grain { animation-play-state: paused; }
.reel.is-active .media .grain { animation-play-state: running; }

/* REC chrome on media reels */
.rec {
  position: absolute;
  top: 58px; left: 16px;
  z-index: 30;
  display: flex; align-items: center; gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.rec .dot { width: 8px; height: 8px; border-radius: 50%; background: #ff3b30; box-shadow: 0 0 8px #ff3b30; animation: recblink 1.4s steps(2) infinite; }
.reel:not(.is-active) .rec .dot { animation: none; }
@keyframes recblink { 50% { opacity: 0.25; } }
.rec .tc { color: rgba(255,255,255,0.78); }
/* PLAY chrome on real clips: steady green dot, time counts down */
.rec--play .dot { background: #29d646; box-shadow: 0 0 8px #29d646; animation: none; }

/* Video reels fade the caption + scrim out (after a few seconds, or on tap) so
   the clip isn't covered; the PLAY badge stays. Tap again to bring copy back. */
.media-reel .caption, .media-reel .scrim { transition: opacity .4s ease; }
.reel.chrome-clear .caption,
.reel.chrome-clear .scrim { opacity: 0; pointer-events: none; }

.slot-tag {
  position: absolute;
  top: 58px; right: 16px;
  z-index: 30;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 4px 7px;
  background: rgba(0,0,0,0.3);
}

/* tap-to-play affordance, shown when autoplay is blocked */
.tap-play {
  position: absolute;
  left: 50%; top: 46%; transform: translate(-50%,-50%);
  z-index: 31;
  width: 72px; height: 72px;
  border: 0;
  border-radius: 50%;
  background: rgba(10,10,10,0.5);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
}
.tap-play svg { width: 30px; height: 30px; margin-left: 3px; }
.reel.needs-tap .tap-play { display: flex; }

/* "Tap for sound" cue — shown while the active clip plays muted but sound is on */
.sound-hint {
  position: absolute;
  left: 50%; bottom: 150px; transform: translateX(-50%);
  z-index: 36;
  display: none; align-items: center; gap: 8px;
  background: rgba(10,10,10,0.6);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  animation: soundpulse 1.8s ease-in-out infinite;
}
.sound-hint svg { width: 15px; height: 15px; display: block; }
.reel.show-sound-hint .sound-hint { display: inline-flex; }
@keyframes soundpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,212,0,0); }
  50% { box-shadow: 0 0 0 4px rgba(255,212,0,0.22); }
}

/* ── Cover reel ───────────────────────────────────────────────────── */
/* Lay the cover out as a flow column — top hazard, body (fills + centres),
   bottom hazard — so the content lives strictly between the bands and can't
   overlap them on a short (iOS) viewport. */
.cover {
  background:
    radial-gradient(130% 80% at 50% 0%, #15140f 0%, #0a0a0a 55%) ;
  align-items: stretch;
  justify-content: flex-start;
}
.cover .hazard {
  position: static; flex-shrink: 0;
  left: 0; right: 0; height: 16px;
  background-image: repeating-linear-gradient(-45deg, var(--hi) 0 16px, var(--ink) 16px 32px);
}
.cover .hazard.top { order: 0; margin-top: 84px; }
.cover .hazard.bot { order: 2; margin-bottom: 84px; }
.cover .cover-body {
  order: 1;
  position: relative; z-index: 10;
  flex: 1 1 auto; min-height: 0;
  margin: 0;
  padding: 18px 26px;
  text-align: left;
  width: 100%;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
/* Shorter screens (most phones in the WhatsApp browser): shrink so all six
   index tiles + wordmark fit between the hazard bands. */
@media (max-height: 760px) {
  .cover h1 { font-size: calc(74px * var(--ts)); }
  .cover .lede { font-size: calc(18px * var(--ts)); margin-top: 12px; max-width: 24ch; }
  .cover .cover-index { margin-top: 16px; }
  .cover .ci-grid { gap: 6px; }
  .cover .ci-tile { padding: 9px 11px; }
  .cover .ci-n { font-size: calc(24px * var(--ts)); }
  .cover .hazard.top { margin-top: 62px; }
  .cover .hazard.bot { margin-bottom: 62px; }
}
.cover .ey {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--hi);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.cover .ey::before { content:""; width:26px; height:1px; background: var(--hi); }
.cover h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: calc(96px * var(--ts));
  line-height: 0.82;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  color: var(--paper);
}
.cover h1 em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  text-transform: lowercase;
  color: var(--hi);
  font-size: 0.42em;
  line-height: 1;
  margin-top: 8px;
}
.cover .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: calc(21px * var(--ts));
  line-height: 1.3;
  color: #d8d2bf;
  margin: 18px 0 0;
  max-width: 26ch;
}
.cover .cover-index { margin-top: 24px; }
.cover .ci-head {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hi);
  margin-bottom: 11px;
}
.cover .ci-head .ci-meta { color: var(--muted); letter-spacing: 0.14em; }
.cover .ci-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cover .ci-tile {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 13px;
  background: var(--ink-2);
  border: 1px solid var(--rule);
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
}
.cover .ci-tile:hover { transform: translateY(-2px); border-color: var(--hi); background: var(--ink-3); }
.cover .ci-tile:active { transform: translateY(0); }
.cover .ci-n {
  font-family: var(--display);
  font-size: calc(30px * var(--ts));
  line-height: 0.8;
  color: var(--hi);
  flex-shrink: 0;
}
.cover .ci-t {
  font-family: var(--body);
  font-weight: 800;
  font-size: calc(13px * var(--ts));
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.cover .ci-tile--hi {
  background: var(--hi);
  border-color: var(--hi-deep);
}
.cover .ci-tile--hi .ci-n { color: var(--ink); }
.cover .ci-tile--hi .ci-t { color: var(--ink); }
.cover .ci-tile--hi:hover { border-color: var(--ink); background: var(--hi); }
.cover .issue-row {
  display: flex; gap: 22px; margin-top: 26px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.cover .issue-row strong { display:block; color: var(--paper); font-size: 12px; margin-top:3px; }

/* ── Text / paper reel ────────────────────────────────────────────── */
.reel--paper { background: var(--paper); color: var(--ink); }
.reel--ink   { background: var(--ink); color: var(--paper); }
.panel {
  position: relative; z-index: 10;
  margin-top: auto;       /* anchor content to the bottom, like the reel caption */
  width: 100%;
  padding: 28px 26px 40px;
}
.panel .kicker { margin-bottom: 18px; }
.reel--paper .panel .kicker { background: var(--ink); color: var(--hi); }
.panel .ph {
  font-family: var(--display);
  font-weight: 400;
  font-size: calc(50px * var(--ts));
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 16px;
  text-wrap: balance;
}
.reel--paper .panel .ph { color: var(--ink); }
.reel--ink .panel .ph { color: var(--paper); }
.panel .ph em { font-family: var(--serif); font-style: italic; text-transform: lowercase; color: var(--hi); }
.reel--paper .panel .ph em { color: #b89400; }
.panel .pdeck {
  font-family: var(--serif);
  font-style: italic;
  font-size: calc(20px * var(--ts));
  line-height: 1.34;
  margin: 0 0 24px;
  max-width: 32ch;
}
.reel--paper .panel .pdeck { color: #4a463a; }
.reel--ink .panel .pdeck { color: #e7e1d0; }
/* over a background image, give the dark-card text a shadow so it stays legible */
.reel--ink:has(.card-bg) .panel .ph,
.reel--ink:has(.card-bg) .panel .pdeck,
.reel--ink:has(.card-bg) .panel .list .t b,
.reel--ink:has(.card-bg) .panel .list .t span {
  text-shadow: 0 1px 10px rgba(0,0,0,0.65);
}

/* numbered list of punchy items */
.list { display: flex; flex-direction: column; gap: 0; }
.list .item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid;
  align-items: center;
}
/* list items can link out to their own URL */
.list a.item {
  grid-template-columns: 42px 1fr auto;
  text-decoration: none; color: inherit;
  transition: border-color .15s ease;
}
.list a.item:hover { border-color: var(--hi); }
.list .item-go { font-family: var(--mono); font-size: 15px; color: var(--hi); }
.reel--paper .list .item-go { color: #b89400; }
.reel--paper .list .item { border-color: rgba(0,0,0,0.14); }
.reel--ink .list .item { border-color: var(--rule); }
.list .item:last-child { border-bottom: 1px solid; }
.reel--paper .list .item:last-child { border-color: rgba(0,0,0,0.14); }
.reel--ink .list .item:last-child { border-color: var(--rule); }
.list .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: calc(34px * var(--ts));
  line-height: 0.8;
  color: var(--hi);
}
.reel--paper .list .n { color: #b89400; }
.list .t { min-width: 0; }
.list .t b {
  display: block;
  font-family: var(--body);
  font-weight: 800;
  font-size: calc(18px * var(--ts));
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.list .t span {
  font-size: calc(14px * var(--ts));
  line-height: 1.4;
  opacity: 0.78;
}

/* ── Events listing (multiple dated, clickable events) ────────────── */
.ev-list { display: flex; flex-direction: column; gap: 10px; }
.ev-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 10px;
  background: var(--ink-2);
  border: 1px solid var(--rule);
  color: var(--paper);
  text-decoration: none;
  transition: border-color .15s ease, transform .14s ease, background .15s ease;
}
.reel--paper .ev-item { background: #fff; border-color: rgba(0,0,0,0.14); color: var(--ink); }
.ev-item:hover { border-color: var(--hi); transform: translateX(2px); }
.ev-item:active { transform: translateX(0); }
.ev-date {
  flex-shrink: 0;
  background: var(--hi);
  color: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 54px;
  padding: 7px 10px 6px;
  font-family: var(--display);
  line-height: 0.82;
  text-align: center;
}
.ev-date .ev-day { font-size: calc(28px * var(--ts)); display: block; }
.ev-date .ev-mon {
  font-family: var(--mono);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  margin-top: 4px;
}
.ev-body { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.ev-title {
  min-width: 0;
  font-family: var(--body);
  font-weight: 800;
  font-size: calc(15px * var(--ts));
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.ev-meta {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}
.reel--paper .ev-meta { color: var(--muted-paper); }
.ev-meta b { color: var(--hi); font-weight: 700; }
.reel--paper .ev-meta b { color: #b89400; }
.ev-go { font-family: var(--mono); font-size: 16px; color: var(--hi); flex-shrink: 0; }
.reel--paper .ev-go { color: #b89400; }

/* ── Optional full-page background image (any non-video card) ──────── */
.card-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.card-bg--blur { filter: blur(7px); transform: scale(1.08); }
/* Solid scrim whose opacity is set inline (the card's "darken" control):
   near-black on dark cards, paper on light cards so text stays readable. */
.card-bg-scrim { position: absolute; inset: 0; z-index: 1; background: #080808; opacity: 0.5; }
.reel--paper .card-bg-scrim { background: var(--paper); }

/* ── Event reel (Friday night) ────────────────────────────────────── */
.event-card {
  position: relative; z-index: 10;
  margin: auto;
  width: 100%;
  padding: 92px 26px 120px;
}
.event-card .datebox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}
.event-card .bigday {
  background: var(--hi);
  color: var(--ink);
  font-family: var(--display);
  line-height: 0.82;
  text-align: center;
  padding: 14px 16px 12px;
}
.event-card .bigday .dow { display:block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; margin-bottom: 8px; font-weight: 700; }
.event-card .bigday .big { font-size: calc(46px * var(--ts)); display:block; }
.event-card .whenwhere .l1 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hi); margin-bottom: 6px;
}
.event-card .whenwhere .l2 { font-family: var(--display); font-size: calc(26px * var(--ts)); line-height: 0.95; text-transform: uppercase; color: var(--paper); }
.event-card .specs { display: flex; flex-direction: column; gap: 0; margin: 6px 0 24px; }
.event-card .specs .s {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; border-top: 1px solid var(--rule);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.event-card .specs .s:last-child { border-bottom: 1px solid var(--rule); }
.event-card .specs .s b { color: var(--paper); font-family: var(--body); font-weight: 700; letter-spacing: 0; text-transform: none; font-size: calc(15px * var(--ts)); }

/* ── CTA button ───────────────────────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hi);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 22px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform .14s ease, box-shadow .14s ease;
}
.cta:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 rgba(0,0,0,0.4); }
.reel--ink .cta:hover, .cover .cta:hover { box-shadow: 4px 4px 0 var(--ink-3); }
.cta.block { display: flex; justify-content: center; width: 100%; }
.cta--ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.3);
}
.reel--paper .cta--ghost { color: var(--ink); border-color: rgba(0,0,0,0.3); }

/* ── Poll reel ────────────────────────────────────────────────────── */
.poll .opt {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 10px;
  background: var(--ink-2);
  border: 1px solid var(--rule);
  color: var(--paper);
  font-family: var(--body);
  font-weight: 700;
  font-size: calc(15px * var(--ts));
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .15s ease;
}
.poll .opt:hover { border-color: var(--hi); }
.poll .opt .label, .poll .opt .pct { position: relative; z-index: 2; }
.poll .opt .pct { font-family: var(--mono); font-size: 12px; color: var(--muted); opacity: 0; transition: opacity .3s ease; }
.poll .opt .bar {
  position: absolute; inset: 0 auto 0 0; width: 0%;
  background: rgba(255,212,0,0.16); border-right: 2px solid var(--hi); z-index: 1;
  transition: width .6s cubic-bezier(.2,.7,.2,1);
}
.poll.voted .opt { cursor: default; }
.poll.voted .opt .pct { opacity: 1; }
.poll.voted .opt.picked { border-color: var(--hi); }
.poll.voted .opt.picked .label { color: var(--hi); }
.poll .voted-msg {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px; opacity: 0; height: 0; transition: opacity .3s ease;
}
.poll.voted .voted-msg { opacity: 1; height: auto; }

/* ── Outro reel ───────────────────────────────────────────────────── */
.outro { background: var(--ink); align-items: stretch; }
.outro .hazard {
  position: absolute; left:0; right:0; height: 14px;
  background-image: repeating-linear-gradient(-45deg, var(--hi) 0 16px, var(--ink) 16px 32px);
}
.outro .hazard.top { top: 90px; }
.outro .hazard.bot { bottom: 0; }
.outro .outro-body { margin: auto; padding: 0 26px; width: 100%; z-index: 10; position: relative; }
.outro h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: calc(66px * var(--ts));
  line-height: 0.84;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--paper);
}
.outro h2 em { font-family: var(--serif); font-style: italic; text-transform: lowercase; color: var(--hi); }
.outro p { font-family: var(--serif); font-style: italic; font-size: calc(19px * var(--ts)); color: #cfc8b5; margin: 0 0 26px; max-width: 28ch; }
.outro .actions { display: flex; flex-direction: column; gap: 12px; }
.outro .signoff {
  margin-top: 28px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

/* ── Swipe hint ───────────────────────────────────────────────────── */
.swipe-hint {
  position: absolute;
  left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 35;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  pointer-events: none;
  transition: opacity .4s ease;
}
.reel--paper .swipe-hint { color: rgba(0,0,0,0.5); }
/* "Swipe up" cue: a single white up-chevron bobbing upward, just above the
   text. Heavy dark outline so it reads on the yellow/black hazard tape. */
.swipe-hint .swipe-arrows {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: -5px;
  animation: bobUp 1.3s ease-in-out infinite;
}
.swipe-hint .swipe-arrows i {
  width: 22px; height: 22px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(-45deg);
}
@keyframes bobUp { 0%, 100% { transform: translateY(0); opacity: 0.7; } 50% { transform: translateY(-5px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .swipe-hint .swipe-arrows { animation: none; opacity: 0.85; }
}

/* toast for share */
.toast {
  position: absolute;
  left: 50%; bottom: 80px; transform: translate(-50%, 16px);
  z-index: 80;
  background: var(--hi);
  color: var(--ink);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
  padding: 11px 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* saved-tray peek */
