@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("assets/fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("assets/fonts/archivo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #050505;
  --ink-2: #0b0b0b;
  --ink-3: #141414;
  --gold: #c8932e;
  --gold-hi: #e8c479;
  --gold-grad: linear-gradient(180deg, #f0dba6 0%, #dcb463 18%, #c8932e 46%, #a9761d 74%, #d9b264 100%);
  --gold-grad-hi: linear-gradient(180deg, #f7e6bd 0%, #e6c47a 18%, #d5a03a 46%, #b8842a 74%, #e6c179 100%);
  --ivory: #f5f1e8;
  --ivory-2: #cfccc3;
  --mute: #94948d;
  --live: #d0342c;
  --line: rgba(245, 241, 232, 0.12);
  --line-2: rgba(245, 241, 232, 0.06);
  --rule: rgba(200, 147, 46, 0.42);
  --f: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --lift: 0 24px 64px -28px rgba(0, 0, 0, 0.92);
  --wipe: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: min(1280px, 100% - clamp(32px, 7vw, 112px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: var(--gold) var(--ink-2);
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--f);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
  caret-color: var(--gold);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: #080604;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: var(--ink-2);
}

::-webkit-scrollbar-thumb {
  background: #4a3714;
  border: 3px solid var(--ink-2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

[hidden] {
  display: none !important;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 13px 20px;
  background: var(--gold-grad);
  color: #080604;
  font-size: 11px;
  font-weight: 700;
  font-stretch: 78%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateY(-200%);
  transition: transform 0.3s var(--wipe);
}

.skip:focus {
  transform: none;
}

.gl {
  position: fixed;
  inset: 0;
  transform: translateZ(0);
  will-change: transform;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}

body.gl-ready .gl {
  opacity: 1;
}

main,
.signoff {
  position: relative;
  z-index: 1;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.ico {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: none;
}

.lab,
.bar__status,
.bar__nav a,
.ident__label,
.hud__name,
.hud__size,
.cam,
.brk__k,
.seg__b,
.act,
.pw__k,
.chan__meta,
.chan__spec dt,
.qr figcaption,
.signoff__meta,
.signoff__id span,
.skip {
  font-stretch: 78%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
  font-stretch: 112%;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
}

.lede {
  margin: 18px 0 0;
  max-width: 68ch;
  color: var(--ivory-2);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.65;
}

.tally {
  width: 7px;
  height: 7px;
  flex: none;
  background: var(--live);
  box-shadow: 0 0 0 3px rgba(208, 52, 44, 0.18);
  animation: tally 2.6s steps(1, end) infinite;
}

@keyframes tally {
  0%, 62% {
    opacity: 1;
  }
  63%, 100% {
    opacity: 0.28;
  }
}

.act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s linear, color 0.18s linear, border-color 0.18s linear;
}

.act:hover {
  border-color: var(--gold);
  color: var(--gold-hi);
}

.act--gold {
  background: var(--gold-grad);
  border-color: #a9761d;
  color: #080604;
}

.act--gold:hover {
  background: var(--gold-grad-hi);
  border-color: #b8842a;
  color: #080604;
}

.act--sm {
  min-height: 38px;
  padding: 0 15px;
  font-size: 11px;
}

.act:disabled {
  opacity: 0.34;
  cursor: default;
  border-color: var(--line);
  background: var(--ink-2);
  color: var(--ivory);
}

.bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 68px;
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid var(--line-2);
  transition: background 0.35s linear, border-color 0.35s linear;
}

.bar__in {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  width: var(--wrap);
  height: 100%;
  margin-inline: auto;
}

.bar.is-scrolled {
  background: var(--ink);
  border-bottom-color: var(--rule);
}

.bar__id {
  display: flex;
  align-items: center;
  gap: 11px;
}

.bar__bug {
  width: 36px;
  height: 36px;
  display: block;
}

.bar__word {
  font-size: 15px;
  font-weight: 800;
  font-stretch: 100%;
  letter-spacing: -0.01em;
}

.bar__status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding-left: clamp(14px, 2.4vw, 30px);
  border-left: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
}

.bar__nav {
  display: flex;
  justify-self: end;
  gap: clamp(18px, 2.6vw, 38px);
}

.bar__nav a {
  position: relative;
  padding: 6px 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
  transition: color 0.18s linear;
}

.bar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s var(--wipe);
}

.bar__nav a:hover,
.bar__nav a[aria-current="true"] {
  color: var(--ivory);
}

.bar__nav a:hover::after,
.bar__nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.bar__act {
  min-height: 40px;
  padding: 0 18px;
  font-size: 11px;
}

.burger {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--ink-2);
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--ivory);
  transition: transform 0.3s var(--wipe), top 0.3s var(--wipe);
}

.burger span:first-child {
  top: 16px;
}

.burger span:last-child {
  top: 24px;
}

.burger[aria-expanded="true"] span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.menu {
  position: fixed;
  inset: 68px 0 0;
  z-index: 35;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 44px;
  padding: 6vh clamp(20px, 7vw, 48px) 8vh;
  background: var(--ink);
  opacity: 0;
  transition: opacity 0.26s linear;
}

.menu.is-open {
  opacity: 1;
}

.menu__nav {
  display: grid;
}

.menu__nav a {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: clamp(1.9rem, 8vw, 2.7rem);
  font-weight: 800;
  font-stretch: 112%;
  letter-spacing: -0.025em;
}

.menu__nav a:first-child {
  border-top: 1px solid var(--line-2);
}

.menu__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.menu__foot .act {
  flex: 1 1 auto;
}

.socials {
  display: inline-flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--mute);
  transition: color 0.18s linear, border-color 0.18s linear, background 0.18s linear;
}

.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #080604;
}

.feed {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 96px 0 clamp(26px, 4vh, 54px);
}

.feed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 34vh;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.72) 34%, rgba(5, 5, 5, 0.97) 56%, var(--ink) 68%, var(--ink) 100%);
}

.feed__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(96deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.86) 26%, rgba(5, 5, 5, 0.36) 54%, rgba(5, 5, 5, 0) 78%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0) 22%, rgba(5, 5, 5, 0) 52%, rgba(5, 5, 5, 0.9) 88%, var(--ink) 100%);
}

.boot {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 13px 18px;
  transform: translate(-50%, -50%);
  background: var(--ink-2);
  border-left: 3px solid var(--gold);
  font-stretch: 78%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-2);
  white-space: nowrap;
  transition: opacity 0.5s linear;
}

.boot i {
  display: block;
  position: relative;
  width: 64px;
  height: 2px;
  background: rgba(245, 241, 232, 0.16);
  overflow: hidden;
}

.boot i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: boot 1.5s var(--wipe) infinite;
}

@keyframes boot {
  0% {
    transform: translateX(-100%);
  }
  60%,
  100% {
    transform: translateX(100%);
  }
}

body.gl-ready .boot,
body.no-webgl .boot {
  opacity: 0;
  pointer-events: none;
}

.feed__grid {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}

.l3 {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: clamp(20px, 3vw, 46px);
  max-width: 60rem;
  padding: 26px clamp(20px, 2.4vw, 34px) 26px clamp(22px, 2.6vw, 36px);
  /* background: linear-gradient(101deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.9) 44%, rgba(5, 5, 5, 0.62) 72%, rgba(5, 5, 5, 0.14) 100%); */
  border-left: 4px solid var(--gold);
}

.l3__say {
  min-width: 0;
}

.l3__word {
  font-size: clamp(2.4rem, 6.2vw, 5rem);
  font-stretch: 118%;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--gold);
}

.l3__line {
  margin: 12px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 500;
  font-stretch: 100%;
  line-height: 1.3;
  color: var(--ivory-2);
}

.l3__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: none;
}

.ident {
  display: grid;
  gap: 5px;
  padding: 16px 20px;
  background: rgba(11, 11, 11, 0.94);
  border-top: 2px solid var(--gold);
  text-align: right;
  transition: background 0.2s linear;
}

.ident:hover {
  background: rgba(20, 20, 20, 0.92);
}

.ident__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
}

.ident__name {
  font-size: 1.02rem;
  font-weight: 700;
  font-stretch: 100%;
  letter-spacing: -0.01em;
  text-transform: none;
}

.ident__spec {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
}

.ident__spec i,
.signoff__meta i {
  width: 1px;
  height: 9px;
  background: var(--rule);
}

.sec {
  position: relative;
  padding: clamp(76px, 10vw, 132px) 0;
}

.sec--tables {
  border-top: 1px solid var(--line-2);
}

.sec--tables {
  position: relative;
}

.ground {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 0;
  background: var(--ink);
  pointer-events: none;
  z-index: 0;
}

.sec--tables > .wrap {
  position: relative;
  z-index: 1;
}

.sec__head {
  max-width: 46rem;
  margin-bottom: clamp(34px, 4vw, 56px);
}

.cap {
  max-width: 60ch;
  margin: 24px 0 0;
  padding: 16px 20px 16px 18px;
  background: var(--ink-2);
  border-left: 3px solid var(--gold);
  color: var(--ivory);
  font-size: clamp(0.98rem, 1.05vw, 1.05rem);
  line-height: 1.6;
}

.rig {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(320px, 0.9fr);
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
}

.viewer {
  position: relative;
  flex: none;
  aspect-ratio: 16 / 10;
  min-height: 430px;
  background: transparent;
  border: 1px solid var(--line);
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
  box-shadow: var(--lift);
}

.viewer:active {
  cursor: grabbing;
}

.viewer.is-play {
  cursor: crosshair;
  touch-action: none;
}

.viewer__boot {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: var(--ink-2);
  font-size: 11px;
  font-weight: 600;
  font-stretch: 78%;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.5s linear;
}

.viewer.is-ready .viewer__boot {
  opacity: 0;
  pointer-events: none;
}

.viewer__fb {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--ink-2);
}

.viewer__fb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.viewer__fb p {
  margin: 0;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-stretch: 86%;
  font-weight: 500;
  color: var(--ivory-2);
}

.hud {
  position: absolute;
  z-index: 2;
}

.hud--tl {
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: calc(100% - 210px);
  padding: 11px 18px;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 2px solid var(--gold);
}

.hud__name {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 11px;
  font-weight: 700;
  color: var(--ivory);
}

.hud__size {
  flex: none;
  padding-left: 11px;
  border-left: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
}

.cam {
  position: absolute;
  top: 46px;
  left: 0;
  z-index: 2;
  margin: 0;
  padding: 7px 16px;
  background: var(--gold-grad);
  color: #080604;
  font-size: 11px;
  font-weight: 700;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.34s var(--wipe);
}

.cam.on {
  clip-path: inset(0 0 0 0);
}

.brk {
  position: absolute;
  top: 46px;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 11px;
  padding: 9px 16px;
  background: rgba(5, 5, 5, 0.94);
  border-left: 3px solid var(--live);
  pointer-events: none;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.4s var(--wipe);
}

.brk.on {
  clip-path: inset(0 0 0 0);
}

.brk__k {
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
}

.brk__v {
  display: block;
  min-width: 1.6ch;
  font-size: 1.35rem;
  font-weight: 800;
  font-stretch: 112%;
  line-height: 1;
  color: var(--ivory);
}

.brk.tick .brk__v {
  animation: roll 0.4s var(--wipe);
}

@keyframes roll {
  0% {
    transform: translateY(0.62em);
    opacity: 0;
    color: var(--gold-hi);
  }
  55% {
    color: var(--gold-hi);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    color: var(--ivory);
  }
}

.seg {
  display: inline-flex;
  background: rgba(5, 5, 5, 0.92);
  border: 1px solid var(--line);
}

.hud--tr {
  top: 12px;
  right: 12px;
}

.hud--bl {
  left: 12px;
  bottom: 12px;
}

.hud--br {
  right: 12px;
  bottom: 12px;
}

.seg__b {
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  border-left: 1px solid var(--line);
  background: none;
  color: var(--mute);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s linear, color 0.16s linear;
}

.seg__b:first-child {
  border-left: 0;
}

.seg__b:hover {
  color: var(--ivory);
}

.seg__b[aria-pressed="true"] {
  background: var(--gold-grad);
  color: #080604;
}

.tools {
  display: none;
  align-items: center;
  gap: 10px;
}

.viewer[data-mode="play"] .tools {
  display: flex;
}

.pw {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  height: 38px;
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid var(--line);
}

.pw__k {
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
}

.pw__track {
  display: block;
  position: relative;
  width: 76px;
  height: 5px;
  background: rgba(245, 241, 232, 0.16);
  overflow: hidden;
}

.pw__fill {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.06s linear, background 0.12s linear;
}

.pw.is-charging .pw__fill {
  background: var(--live);
}

.hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 1;
  max-width: calc(100% - 24px);
  margin: 0;
  padding: 6px 13px;
  background: rgba(5, 5, 5, 0.88);
  transform: translateX(-50%);
  font-size: 12px;
  font-stretch: 86%;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ivory-2);
  white-space: nowrap;
  pointer-events: none;
}

.viewer[data-mode="play"] .hint {
  bottom: 62px;
}

.chans {
  display: grid;
  border-top: 1px solid var(--line-2);
}

.chan {
  position: relative;
  border-bottom: 1px solid var(--line-2);
  transition: background 0.2s linear;
}

.chan__hd {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 5px 13px;
  width: 100%;
  padding: 16px 15px 16px 17px;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.16s linear;
}

.chan__hd:hover {
  background: rgba(245, 241, 232, 0.03);
}

.chan__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--wipe);
}

.chan.is-open .chan__panel {
  grid-template-rows: 1fr;
}

.chan__panel > div {
  overflow: hidden;
  min-height: 0;
}

.chan__body {
  padding: 0 17px 22px 37px;
}

.chan__desc {
  margin: 0;
  max-width: 54ch;
  color: var(--ivory-2);
  font-size: 0.93rem;
  line-height: 1.6;
}

.chan::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--wipe);
  z-index: 1;
}

.chan.is-open {
  background: var(--ink-3);
}

.chan.is-open::before {
  transform: scaleX(1);
}

.chan__name {
  grid-column: 2;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--mute);
  transition: color 0.16s linear;
}

.chan__hd:hover .chan__name,
.chan.is-open .chan__name {
  color: var(--ivory);
}

.chan__swatch {
  grid-row: 1 / span 2;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  width: 7px;
  height: 34px;
  overflow: hidden;
}

.chan__swatch i {
  flex: 1;
}

.chan__caret {
  grid-row: 1 / span 2;
  grid-column: 5;
  width: 13px;
  height: 13px;
  color: var(--mute);
  transition: transform 0.4s var(--wipe), color 0.2s linear;
}

.chan.is-open .chan__caret {
  transform: rotate(180deg);
  color: var(--gold);
}

.chan__meta {
  grid-column: 2;
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
}

.chan__size {
  grid-row: 1 / span 2;
  grid-column: 3;
  align-self: center;
  font-size: 1.15rem;
  font-weight: 800;
  font-stretch: 112%;
  letter-spacing: -0.02em;
  color: #8d7236;
  transition: color 0.16s linear;
}

.chan.is-open .chan__size {
  color: var(--gold);
}

.chan__live {
  display: none;
  grid-row: 1 / span 2;
  grid-column: 4;
  align-self: center;
}

.chan.is-open .chan__live {
  display: block;
}

.chan__spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line-2);
}

.chan__spec div {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
}

.chan__spec div:nth-child(odd) {
  padding-right: 16px;
}

.chan__spec dt {
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
}

.chan__spec dd {
  margin: 4px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ivory);
}

.sec--interval {
  border-top: 1px solid var(--line-2);
}

.rundown {
  display: grid;
  margin: clamp(36px, 4.5vw, 58px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-2);
}

.rundown li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(122px, 14%) minmax(0, 1fr);
  gap: 10px clamp(20px, 3vw, 48px);
  align-items: baseline;
  padding: 22px 0 22px 20px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
}

.rundown li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--wipe);
  transition-delay: var(--d, 0s);
}

body.wipe-ready .rundown li.on::before {
  transform: scaleY(1);
}

.rundown__k {
  font-stretch: 78%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

.rundown__v {
  max-width: 62ch;
  color: var(--ivory);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.55;
}

.sec--end {
  border-top: 1px solid var(--line-2);
  background: var(--ink);
}

.end {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  max-width: 1060px;
  margin-inline: auto;
}

.end__say {
  max-width: 42rem;
}

.end__crest {
  display: block;
  width: clamp(112px, 12vw, 168px);
  height: auto;
  margin: 0 0 30px;
}

.end__sub {
  margin: 16px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 500;
  color: var(--gold);
}

.end__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.qr {
  margin: 0;
  padding: 20px 20px 0;
  background: var(--ivory);
  border-top: 4px solid var(--gold);
  box-shadow: var(--lift);
}

.qr img {
  display: block;
  width: min(268px, 52vw);
  height: auto;
}

.qr figcaption {
  padding: 14px 0 16px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #3d3a33;
}

.signoff {
  padding: 26px 0 32px;
  border-top: 1px solid var(--line-2);
}

.signoff__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.signoff__id {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signoff__id span {
  font-size: 11px;
  font-weight: 700;
}

.signoff__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
}

.signoff .socials a {
  width: 38px;
  height: 38px;
}

body.wipe-ready [data-wipe] {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.85s var(--wipe);
  transition-delay: var(--d, 0s);
}

body.wipe-ready [data-wipe].on {
  clip-path: inset(0 0 0 0);
}

@media (max-width: 1120px) {
  .rig {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(20px, 3vw, 34px);
    align-items: start;
  }

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

@media (max-width: 900px) {
  .bar__in {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .bar__status,
  .bar__nav,
  .bar__act {
    display: none;
  }

  .burger {
    display: block;
    justify-self: end;
  }

  .feed {
    align-items: flex-end;
    padding-top: 44svh;
  }

  .feed__veil {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.9) 0, rgba(5, 5, 5, 0.3) 8vh, rgba(5, 5, 5, 0) 15vh, rgba(5, 5, 5, 0) 45vh, rgba(5, 5, 5, 0.8) 56vh, var(--ink) 68vh);
  }

  .feed::after {
    height: 22vh;
  }

  .feed__grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .l3 {
    padding: 20px 0 20px 20px;
  }

  .ident {
    display: none;
  }

  .rundown li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0 18px 18px;
  }

  .l3 {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding: 22px 18px 22px 20px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.95) 18%, rgba(5, 5, 5, 0.96) 100%);
  }

  .l3__acts {
    flex-direction: column;
  }

  .l3__acts .act {
    width: 100%;
  }

  .end {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 34px;
  }

  .end__say {
    max-width: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .end__crest {
    width: clamp(96px, 30vw, 132px);
    margin: 0 0 22px;
  }

  .end .lede {
    max-width: 40ch;
  }

  .end__acts {
    width: 100%;
    justify-content: center;
  }

  .qr {
    justify-self: center;
  }

  .viewer {
    aspect-ratio: auto;
    height: 62svh;
    min-height: 370px;
    max-height: 620px;
  }

  .hud--tl {
    max-width: calc(100% - 120px);
    padding: 9px 13px;
  }

  .hud--tr {
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: space-between;
  }

  .seg__b {
    flex: 1;
    padding: 0 6px;
  }

  .hud--bl {
    top: 11px;
    right: 12px;
    left: auto;
    bottom: auto;
  }

  .hud--br {
    left: 12px;
    right: 12px;
    bottom: 60px;
    justify-content: space-between;
  }

  .cam {
    top: 42px;
  }

  .brk {
    top: 42px;
  }

  .hint {
    top: 44px;
    bottom: auto;
    text-align: center;
    white-space: normal;
  }

  .viewer[data-mode="play"] .hint {
    display: none;
  }

  .pw__track {
    width: 54px;
  }
}

@media (max-width: 560px) {
  .l3__acts .act,
  .end__acts .act {
    flex: 1 1 100%;
  }

  .pw {
    padding: 0 9px;
    gap: 7px;
  }

  .pw__k {
    letter-spacing: 0.08em;
  }

  .pw__track {
    width: 34px;
  }

  .act--sm {
    padding: 0 10px;
  }

  .hud--br {
    gap: 6px;
  }

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

  .chan__spec div:nth-child(odd) {
    padding-right: 0;
  }

  .signoff__in {
    justify-content: center;
    text-align: center;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .viewer {
    aspect-ratio: auto;
    height: calc(100svh - 92px);
    min-height: 0;
    max-height: none;
  }

  .feed {
    padding-top: 90px;
  }
}

.viewer.is-fallback .hud,
.viewer.is-fallback .cam,
.viewer.is-fallback .brk,
.viewer.is-fallback .hint {
  display: none;
}

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

  body.wipe-ready [data-wipe] {
    clip-path: none;
  }

  .boot i::after {
    animation: none;
    transform: none;
  }

  .rundown li::before {
    transform: scaleY(1);
  }

  .cam:not(.on),
  .brk:not(.on) {
    display: none;
  }
}
