:root {
  --ink: #0b0908;
  --ink-2: #14110e;
  --paper: #e8dcc8;
  --mute: #9a8d7a;
  --heat: #e24a12;
  --amber: #f0a202;
  --neon: #3ad7b8;
  --kick: #53fc18;
  --line: rgba(232, 220, 200, 0.14);
  --display: "Anybody", "Arial Narrow", Impact, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --page-pad: clamp(1rem, 4vw, 1.6rem);
  --section-pad: clamp(2.5rem, 6vw, 4rem);
  --content: 1120px;
  --layout-viewport: 100vw;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.75rem;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

main section[id] { scroll-margin-top: 4.75rem; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: var(--amber);
  font: 600 0.75rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible { transform: translateY(0); }

.grain,
.heat {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
}

.grain {
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.heat {
  background:
    radial-gradient(70vw 40vh at 85% -5%, rgba(226, 74, 18, 0.2), transparent 60%),
    radial-gradient(50vw 35vh at 0% 100%, rgba(58, 215, 184, 0.06), transparent 55%);
  z-index: 0;
  animation: heat-drift 14s ease-in-out infinite alternate;
}

/* Header */
.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem var(--page-pad);
  background: rgba(11, 9, 8, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    padding 0.35s ease,
    box-shadow 0.35s ease;
}

.bar.is-scrolled {
  background: rgba(11, 9, 8, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.mark {
  font-family: var(--display);
  font-stretch: 125%;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--paper);
  text-decoration: none;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.mark:hover { transform: scale(1.04); color: var(--amber); }

.mark span { color: var(--heat); margin-left: 0.12em; }

.header-note {
  padding-left: 0.75rem;
  border-left: 1px solid var(--line);
  color: var(--mute);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-btn {
  display: none;
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

.nav {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.nav a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--heat), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nav a:hover,
.nav a.is-active { color: var(--paper); }

.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }

.pill {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--heat);
  padding: 0.45rem 0.75rem;
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.pill:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(226, 74, 18, 0.45);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 5vw, 3.5rem) var(--page-pad) clamp(2rem, 5vw, 3rem);
  max-width: var(--content);
  margin: 0 auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  left: 50%;
  width: var(--layout-viewport);
  transform: translateX(-50%);
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 9, 8, 0.55) 0%, rgba(11, 9, 8, 0.82) 55%, var(--ink) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 65% 40%;
  opacity: 0.35;
  filter: saturate(0.75) contrast(1.05) brightness(0.65);
  animation: hero-kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-glow {
  position: absolute;
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  right: 5%;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 74, 18, 0.28) 0%, transparent 68%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite;
}

.hero-inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

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

.kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 0.75rem;
}

.display {
  margin: 0;
  line-height: 0.9;
}

.cam {
  display: block;
  font-family: var(--display);
  font-stretch: 125%;
  font-weight: 900;
  font-size: clamp(3.4rem, 16vw, 8.5rem);
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
  line-height: 0.82;
  text-shadow:
    0 0 40px rgba(232, 220, 200, 0.08),
    0 0 80px rgba(226, 74, 18, 0.12);
}

.nitro {
  display: block;
  margin-top: 0.15em;
  font-family: var(--display);
  font-stretch: 75%;
  font-weight: 800;
  font-size: clamp(1.15rem, 4.8vw, 2.75rem);
  letter-spacing: 0.06em;
  color: var(--heat);
  line-height: 1.05;
  text-shadow: 0 0 30px rgba(226, 74, 18, 0.35);
}

.lede {
  max-width: 34rem;
  margin: 0.4rem 0 1.25rem;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  color: #d9cbb4;
}

.creator-line {
  margin: 1.1rem 0 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.2rem, 3.4vw, 1.65rem);
  font-stretch: 100%;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.cta {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: inherit;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.1rem;
  border: 1px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    background 0.28s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::before { transform: translateX(120%); }

.btn.primary {
  background: var(--heat);
  color: #1a0803;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(226, 74, 18, 0.45), 0 4px 0 rgba(0, 0, 0, 0.2);
}

.btn.ghost {
  border-color: var(--paper);
  color: var(--paper);
}

.btn.ghost:hover {
  transform: translateY(-3px);
  background: rgba(232, 220, 200, 0.08);
  border-color: var(--amber);
  color: var(--amber);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn.wide { display: inline-block; margin-top: 0.25rem; }

.meta {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--mute);
  letter-spacing: 0.08em;
  margin: 0;
}

.hero-footline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hero-jump {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.hero-jump:hover {
  color: var(--paper);
  transform: translateY(2px);
}

.hero-stream-story {
  position: relative;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: minmax(11.5rem, 1.2fr) minmax(8.5rem, 0.8fr);
  gap: 0.55rem;
  width: min(100%, 390px);
  height: clamp(25rem, 108vw, 28rem);
  padding-bottom: 4.7rem;
  justify-self: center;
  isolation: isolate;
}

.story-frame {
  --tilt: 0deg;
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(232, 220, 200, 0.55);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.38);
  transform: rotate(var(--tilt));
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.story-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--neon), var(--neon)) left 0.55rem top 0.55rem / 1.5rem 1px no-repeat,
    linear-gradient(var(--neon), var(--neon)) left 0.55rem top 0.55rem / 1px 1.5rem no-repeat,
    linear-gradient(var(--heat), var(--heat)) right 0.55rem bottom 0.55rem / 1.5rem 1px no-repeat,
    linear-gradient(var(--heat), var(--heat)) right 0.55rem bottom 0.55rem / 1px 1.5rem no-repeat,
    linear-gradient(180deg, transparent 54%, rgba(11, 9, 8, 0.28));
  opacity: 0.82;
}

.story-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.35s ease;
}

.story-wide {
  --tilt: -0.8deg;
  grid-column: 1 / -1;
  grid-row: 1;
}

.story-wide img { object-position: center 32%; }

.story-primary {
  --tilt: 0.8deg;
  grid-column: 1;
  grid-row: 2;
}

.story-primary img { object-position: center 22%; }

.story-reaction {
  --tilt: -1.2deg;
  grid-column: 2;
  grid-row: 2;
}

.story-reaction img { object-position: center 42%; }

.story-stamp {
  position: absolute;
  top: -0.45rem;
  right: -0.35rem;
  z-index: 6;
  padding: 0.45rem 0.6rem;
  color: var(--ink);
  background: var(--neon);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transform: rotate(3deg);
}

.story-caption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-height: 4.1rem;
  padding: 0.6rem 0 0;
  border-top: 1px solid var(--line);
  color: #d9cbb4;
  font-size: 0.82rem;
  line-height: 1.35;
}

.story-caption span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(20, 17, 14, 0.85);
  padding: 0.55rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  padding-right: 3rem;
  white-space: nowrap;
}

.ticker span::before {
  content: "◆";
  color: var(--heat);
  margin-right: 1rem;
}

/* Opt-in stream player */
.stream-access {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(226, 74, 18, 0.1), transparent 42%),
    rgba(20, 17, 14, 0.78);
}

.stream-access-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 2rem;
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 2rem) var(--page-pad);
}

.stream-access-label {
  margin: 0 0 0.35rem;
  color: var(--neon);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stream-access-copy h2 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-stretch: 125%;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.stream-access-copy > p:last-child {
  max-width: 42rem;
  margin: 0;
  color: var(--mute);
  font-size: 0.9rem;
}

.stream-access-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

button.btn { cursor: pointer; }

.stream-load { display: none; }

.stream-player-shell {
  grid-column: 1 / -1;
  width: min(100%, 900px);
  margin-top: 0.5rem;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.stream-player-shell.is-opening {
  animation: player-open 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.stream-player-shell[hidden] { display: none; }

.stream-player-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.8rem;
  color: var(--mute);
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stream-player-toolbar button {
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.35rem 0.55rem;
  font: inherit;
  cursor: pointer;
}

.stream-player-frame {
  min-height: 300px;
  aspect-ratio: 16 / 9;
}

.stream-player-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.stream-player-shell > p {
  margin: 0;
  padding: 0.6rem 0.8rem;
  color: var(--mute);
  font-family: var(--mono);
  font-size: 0.58rem;
}

/* IRL dispatch */
.dispatch {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) var(--page-pad);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(70% 80% at 18% 55%, rgba(226, 74, 18, 0.12), transparent 70%),
    var(--ink);
}

.dispatch-shell {
  position: relative;
  display: grid;
  max-width: var(--content);
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
  border: 1px solid rgba(232, 220, 200, 0.2);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.dispatch-shell::before {
  content: "";
  position: absolute;
  inset: 0.65rem;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(var(--neon), var(--neon)) left top / 2.25rem 1px no-repeat,
    linear-gradient(var(--neon), var(--neon)) left top / 1px 2.25rem no-repeat,
    linear-gradient(var(--heat), var(--heat)) right bottom / 2.25rem 1px no-repeat,
    linear-gradient(var(--heat), var(--heat)) right bottom / 1px 2.25rem no-repeat;
  opacity: 0.78;
}

.dispatch-media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: #050505;
}

.dispatch-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--dispatch-shift, 0px), 0) scale(1.045);
  filter: saturate(0.9) contrast(1.06);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}

.dispatch-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.28), transparent 32%, rgba(5, 5, 5, 0.16)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.16), transparent 28%, transparent 72%, rgba(5, 5, 5, 0.16));
}

.dispatch-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: screen;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 5px
  );
}

.dispatch-scan::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(58, 215, 184, 0.12), transparent);
  animation: dispatch-scanline 7s linear infinite;
}

.dispatch-topline {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  right: 0.9rem;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(232, 220, 200, 0.88);
  font-family: var(--mono);
  font-size: clamp(0.52rem, 1.5vw, 0.64rem);
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.dispatch-sequence {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 4;
  display: flex;
  gap: 0.35rem;
}

.dispatch-sequence span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 1.55rem;
  color: rgba(232, 220, 200, 0.72);
  background: rgba(5, 5, 5, 0.68);
  border: 1px solid rgba(232, 220, 200, 0.28);
  font-family: var(--mono);
  font-size: 0.55rem;
  line-height: 1;
}

.dispatch-sequence .is-current {
  color: var(--ink);
  background: var(--amber);
  border-color: var(--amber);
}

.dispatch-copy {
  position: relative;
  z-index: 3;
  padding: 1.25rem;
  background:
    linear-gradient(115deg, rgba(20, 17, 14, 0.98), rgba(20, 17, 14, 0.9)),
    var(--ink-2);
  border-top: 1px solid var(--line);
}

.dispatch-copy .section-index { margin-bottom: 0.45rem; }

.dispatch-copy h2 {
  max-width: 11ch;
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(2.35rem, 8.8vw, 5.25rem);
  font-stretch: 125%;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.86;
  text-transform: uppercase;
}

.dispatch-copy > p:not(.section-index, .dispatch-caption) {
  max-width: 36rem;
  margin: 0;
  color: #d9cbb4;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
}

.dispatch-caption {
  margin: 1rem 0 0;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Sections */
.block {
  position: relative;
  z-index: 1;
  max-width: var(--content);
  margin: 0 auto;
  padding: var(--section-pad) var(--page-pad);
  border-top: 1px solid var(--line);
}

.section-spotlight::before,
.links::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: var(--layout-viewport);
  transform: translateX(-50%);
  pointer-events: none;
}

.section-spotlight::before {
  background:
    radial-gradient(60% 55% at 75% 15%, rgba(226, 74, 18, 0.09), transparent 70%),
    linear-gradient(180deg, rgba(20, 17, 14, 0.36), transparent 85%);
}

.links::before {
  background: linear-gradient(180deg, transparent, rgba(58, 215, 184, 0.035), transparent);
}

.sec-head h2 {
  display: inline-block;
  font-family: var(--display);
  font-stretch: 125%;
  font-weight: 900;
  font-size: clamp(2rem, 7vw, 3.5rem);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  line-height: 0.95;
  background: linear-gradient(90deg, var(--paper), var(--amber), var(--paper));
  background-size: 100% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sec-head p {
  margin: 0 0 1.4rem;
  color: var(--mute);
  font-size: 0.95rem;
}

.sec-head .section-index,
.section-index {
  margin: 0 0 0.65rem;
  color: var(--neon);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.linkgrid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 0.65rem;
}

.linkgrid a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  min-height: 5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.linkgrid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(226, 74, 18, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.linkgrid a:hover {
  border-color: var(--heat);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(226, 74, 18, 0.2);
}

.linkgrid a:hover::before { opacity: 1; }

.linkgrid a:hover em,
.linkgrid a:hover .link-arrow { color: var(--amber); }

.platform-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  transform: rotate(-2deg);
  transition: transform 0.3s ease, background 0.3s ease;
}

.platform-kick .platform-mark {
  background: var(--kick);
  border-color: var(--kick);
}

.linkgrid a:hover .platform-mark { transform: rotate(3deg) scale(1.06); }

.link-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.1rem;
}

.linkgrid .link-copy em {
  font-family: var(--display);
  font-style: normal;
  font-stretch: 100%;
  font-weight: 800;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.linkgrid a:hover em { transform: translateX(2px); }

.linkgrid .link-copy > span {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--mute);
  word-break: break-word;
}

.link-arrow {
  position: relative;
  z-index: 1;
  color: var(--mute);
  font-family: var(--mono);
  font-size: 0.85rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.linkgrid a:hover .link-arrow { transform: translate(2px, -2px); }

.tight { max-width: 640px; }

/* Highlights */
.clipgrid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.clipgrid > li { min-width: 0; }

.clip-card {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  min-height: clamp(12rem, 28vw, 14rem);
  text-decoration: none;
  color: inherit;
  background: var(--ink-2);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s ease;
}

.clip-card:hover {
  border-color: var(--heat);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(226, 74, 18, 0.12);
}

.clip-media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.clip-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 9, 8, 0.03) 30%, rgba(11, 9, 8, 0.9) 100%),
    linear-gradient(90deg, rgba(226, 74, 18, 0.13), transparent 55%);
  pointer-events: none;
}

.clip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
}

.clip-card:hover .clip-media img {
  transform: scale(1.08);
  filter: brightness(1.08) saturate(1.1);
}

.clip-play {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0;
  border-radius: 50%;
  background: rgba(226, 74, 18, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transform: scale(0.86);
  opacity: 0.88;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.3s ease;
  z-index: 2;
}

.clip-play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -6px 0 0 -4px;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #1a0803;
}

.clip-card:hover .clip-play {
  opacity: 1;
  transform: scale(1);
}

.clip-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: clamp(1rem, 3.5vw, 1.4rem);
}

.clip-body em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(1.25rem, 4vw, 2rem);
  line-height: 1;
}

.clip-body .clip-eyebrow,
.clip-body .clip-action {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.clip-body .clip-eyebrow { color: var(--amber); }
.clip-body .clip-action { color: var(--paper); }

.clip-card.feature .clip-body em { font-size: clamp(1.55rem, 5vw, 2.7rem); }

/* Watch */
.channel-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.player-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
  color: var(--paper);
  text-decoration: none;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.player-wrap:hover {
  border-color: rgba(226, 74, 18, 0.45);
  box-shadow: 0 0 30px rgba(226, 74, 18, 0.15);
}

.watch-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
}

.twitch-card > img {
  object-position: center 13%;
}

.kick-card > img {
  object-position: 68% center;
}

.kick-card .watch-card-shade {
  background:
    linear-gradient(180deg, rgba(11, 9, 8, 0.12), rgba(11, 9, 8, 0.9)),
    linear-gradient(90deg, rgba(83, 252, 24, 0.2), transparent 60%);
}

.kick-card .watch-card-copy small { color: var(--kick); }

.watch-card:hover > img {
  transform: scale(1.045);
  filter: saturate(0.9) contrast(1.08);
}

.watch-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 9, 8, 0.12), rgba(11, 9, 8, 0.9)),
    linear-gradient(90deg, rgba(226, 74, 18, 0.3), transparent 60%);
}

.watch-card-copy {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: clamp(1rem, 4vw, 1.5rem);
}

.watch-card-copy small,
.watch-card-copy span {
  font-family: var(--mono);
  font-size: clamp(0.58rem, 1.6vw, 0.7rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.watch-card-copy small { color: var(--amber); }

.watch-card-copy strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 3.25rem);
  font-stretch: 125%;
  line-height: 0.95;
  text-transform: uppercase;
}

.watch-card-copy span { color: var(--paper); }

.yt-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.yt-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 7.5rem;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: var(--paper);
  background: var(--ink-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.yt-card:hover {
  transform: translateY(-4px);
  border-color: var(--heat);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.yt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: -1;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.yt-card:hover::before {
  transform: scale(1.08);
  opacity: 0.42;
}

.yt-card.alt::before { opacity: 0.34; }

.yt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 9, 8, 0.15) 0%, rgba(11, 9, 8, 0.88) 100%);
  z-index: -1;
}

.yt-card strong {
  font-family: var(--display);
  font-stretch: 100%;
  font-size: 1.25rem;
}

.yt-card span {
  font-family: var(--mono);
  font-size: 0.65rem;
  margin-top: 0.25rem;
  color: var(--mute);
}

.yt-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  margin-bottom: 0.45rem;
  object-fit: cover;
}

/* Community */
.community {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid var(--line);
}

.community-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.community-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  filter: saturate(0.7) contrast(1.08);
}

.community-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 9, 8, 0.97) 0%, rgba(11, 9, 8, 0.82) 55%, rgba(11, 9, 8, 0.48) 100%),
    linear-gradient(180deg, var(--ink) 0%, transparent 22%, transparent 78%, var(--ink) 100%);
}

.community-inner {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) var(--page-pad);
  max-width: var(--content);
  margin: 0 auto;
}

.community-inner h2 {
  max-width: 11ch;
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 5.25rem);
  font-stretch: 125%;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.community-inner > p:not(.section-index) {
  max-width: 34rem;
  margin: 0 0 1.25rem;
  color: #d9cbb4;
}

/* Footer */
.foot {
  position: relative;
  z-index: 1;
  padding: 2rem var(--page-pad) 2.5rem;
  border-top: 1px solid var(--line);
  max-width: var(--content);
  margin: 0 auto;
  color: #c9b89f;
  font-size: 0.92rem;
}

.foot p { margin: 0 0 0.65rem; }
.foot .small { color: var(--mute); font-size: 0.85rem; }
.foot a { color: var(--amber); }
.foot-email {
  appearance: none;
  padding: 0;
  border: 0;
  color: var(--amber);
  background: none;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: from-font;
  text-underline-offset: 0.14em;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: up 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.kicker { animation-delay: 0.04s; }
.cam { animation-delay: 0.1s; }
.nitro { animation-delay: 0.18s; }
.lede { animation-delay: 0.26s; }
.cta { animation-delay: 0.32s; }
.meta { animation-delay: 0.38s; }

.kicker.reveal {
  animation: up 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.cam.reveal {
  animation: up 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.nitro.reveal {
  animation: up 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
  }

  .js.reveal-ready [data-reveal].in-view {
    opacity: 1;
    transform: none;
  }

  .js.reveal-ready .story-frame[data-reveal] {
    opacity: 0;
    transform: translateY(18px) rotate(var(--tilt)) scale(0.97);
  }

  .js.reveal-ready .story-frame[data-reveal].in-view {
    opacity: 1;
    transform: rotate(var(--tilt)) scale(1);
  }
}

@keyframes up {
  to { opacity: 1; transform: none; }
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes heat-drift {
  from { opacity: 1; filter: hue-rotate(0deg); }
  to { opacity: 0.85; filter: hue-rotate(8deg); }
}

@keyframes hero-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

@keyframes player-open {
  from { opacity: 0; transform: translateY(-10px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

@keyframes dispatch-scanline {
  from { transform: translateY(-120%); }
  to { transform: translateY(620%); }
}

a:focus-visible,
.btn:focus-visible,
.pill:focus-visible,
.menu-btn:focus-visible,
.foot-email:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.clip-card:focus-visible .clip-media img,
.watch-card:focus-visible > img,
.yt-card:focus-visible::before {
  transform: scale(1.06);
}

.linkgrid a:focus-visible,
.clip-card:focus-visible,
.player-wrap:focus-visible,
.yt-card:focus-visible {
  border-color: var(--amber);
}

.stream-player-toolbar button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .dispatch-shell:hover .dispatch-media img {
    transform: translate3d(0, var(--dispatch-shift, 0px), 0) scale(1.065);
    filter: saturate(1) contrast(1.08);
  }

  .story-frame:hover {
    border-color: var(--amber);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.46), 0 0 26px rgba(226, 74, 18, 0.1);
  }

  .story-frame:hover img {
    transform: scale(1.025);
    filter: saturate(1) contrast(1.06);
  }
}

@media (min-width: 480px) {
  .stream-load { display: inline-flex; }
}

/* Tablet */
@media (min-width: 640px) {
  .clipgrid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .yt-stack {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 720px) {
  .dispatch-shell {
    display: block;
    min-height: clamp(34rem, 58vw, 43rem);
  }

  .dispatch-media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }

  .dispatch-media::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.2) 48%, rgba(5, 5, 5, 0.08) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.26), transparent 36%, rgba(5, 5, 5, 0.54));
  }

  .dispatch-copy {
    position: absolute;
    left: clamp(1.5rem, 4vw, 3rem);
    bottom: clamp(1.5rem, 4vw, 3rem);
    width: min(46rem, calc(100% - 8rem));
    padding: clamp(1.2rem, 2.4vw, 1.65rem);
    background: rgba(11, 9, 8, 0.76);
    border: 1px solid rgba(232, 220, 200, 0.16);
    border-left: 3px solid var(--heat);
    backdrop-filter: blur(10px);
  }

  .dispatch-caption { margin-top: 1.1rem; }
}

@media (min-width: 720px) and (max-width: 899px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(230px, 0.65fr);
    gap: 2rem;
  }

  .hero-stream-story {
    justify-self: end;
    width: min(100%, 310px);
    height: 390px;
  }

  .cam { font-size: clamp(4.8rem, 11vw, 6.25rem); }
  .nitro { font-size: clamp(1.35rem, 3.6vw, 2rem); }
}

/* Desktop */
@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.75fr;
    gap: 2rem 3rem;
  }

  .hero-stream-story {
    display: block;
    justify-self: end;
    width: min(100%, 430px);
    height: 500px;
    padding-bottom: 0;
  }

  .hero-stream-story .story-frame { position: absolute; }

  .hero-stream-story .story-wide {
    top: 1rem;
    left: 0;
    z-index: 1;
    width: 88%;
    height: 55%;
  }

  .hero-stream-story .story-primary {
    right: 0;
    bottom: 4.9rem;
    z-index: 3;
    width: 57%;
    height: 70%;
  }

  .hero-stream-story .story-reaction {
    left: 0.4rem;
    bottom: 5.1rem;
    z-index: 4;
    width: 43%;
    height: 42%;
  }

  .hero-bg img {
    object-position: 72% 42%;
    opacity: 0.3;
  }

  .clipgrid {
    grid-template-columns: repeat(24, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(11.5rem, 1fr));
  }

  .clipgrid > li { min-width: 0; }
  .clipgrid .clip-card { height: 100%; aspect-ratio: auto; }
  .clip-feature { grid-column: span 14; grid-row: span 2; }
  .clip-secondary { grid-column: span 10; }
  .clip-twitch { grid-column: span 5; }

  .channel-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .yt-stack {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cam {
    font-size: clamp(5rem, 10vw, 8.5rem);
  }
}

@media (min-width: 1100px) {
  .nav a { font-size: 0.72rem; }
}

/* Mobile nav */
@media (max-width: 768px) {
  .bar { flex-wrap: wrap; }

  .menu-btn { display: none; }

  .nav {
    display: flex;
    position: static;
    flex: 1 0 100%;
    order: 3;
    flex-direction: column;
    gap: 0;
    background: rgba(11, 9, 8, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0 0.85rem;
    max-height: none;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transition:
      max-height 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
      opacity 0.3s ease,
      padding 0.4s ease;
  }

  .js .bar { flex-wrap: nowrap; }

  .js .menu-btn { display: inline-block; }

  .js .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex: 1;
    order: initial;
    padding: 0 var(--page-pad);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .js .nav.is-open {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    padding: 0.5rem var(--page-pad) 0.85rem;
  }

  .nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(232, 220, 200, 0.06);
    font-size: 0.72rem;
  }

  .nav a:last-child { border-bottom: 0; }

  .pill { display: none; }

  .header-note { display: none; }

  .cta .btn {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 9rem;
  }

  .grain { opacity: 0.08; }

  .heat,
  .hero-glow { animation: none; }

  .stream-access-inner {
    grid-template-columns: 1fr;
  }

  .stream-access-actions {
    justify-content: flex-start;
  }

  .stream-access-actions .btn {
    flex: 1 1 10rem;
  }

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

  .social-grid a {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    min-height: 6.25rem;
  }

  .social-grid .link-arrow { display: none; }

  .social-grid .link-copy > span {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .social-grid { grid-template-columns: 1fr; }
  .social-grid a { min-height: 4.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal,
  [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .heat,
  .hero-bg img,
  .hero-glow,
  .dispatch-media img,
  .dispatch-scan::after,
  .dispatch-sequence span,
  .ticker-track,
  .stream-player-shell.is-opening,
  .kicker,
  .kicker.reveal,
  .cam,
  .cam.reveal,
  .nitro,
  .nitro.reveal,
  .pill {
    animation: none;
  }

  .dispatch-media img {
    transform: none;
    transition: none;
  }

  .dispatch-sequence span {
    color: rgba(232, 220, 200, 0.72);
    background: rgba(5, 5, 5, 0.68);
    border-color: rgba(232, 220, 200, 0.28);
  }

  .dispatch-sequence .is-current {
    color: var(--ink);
    background: var(--amber);
    border-color: var(--amber);
  }

  .clip-card:hover,
  .linkgrid a:hover,
  .yt-card:hover,
  .btn:hover,
  .story-frame:hover,
  .story-frame:hover img {
    transform: none;
  }

  .story-frame[data-reveal] {
    transform: rotate(var(--tilt));
  }
}
