:root {
  --bone: #E9E4D8;
  --ink: #131110;
  --accent: #D8402A;
  --muted: #57514A;
  --muted-2: #7A7266;
  --muted-3: #9A9186;
  --dark-text: #B5AC9E;
  --pad: 40px;
  --serif: 'Bodoni Moda', Didot, serif;
  --mono: 'Space Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bone); }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { display: block; }

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--mono);
}

/* ---------- ambient layers ---------- */
.layer { position: absolute; pointer-events: none; }
.layer--grain {
  inset: -40px;
  opacity: .55;
  background-image: radial-gradient(rgba(19,17,16,.2) 1px, transparent 1.2px);
  background-size: 16px 16px;
  animation: grain 7s steps(4) infinite;
}
.layer--vignette {
  inset: 0;
  background: radial-gradient(120% 90% at 50% 8%, rgba(233,228,216,0) 40%, rgba(19,17,16,.16) 100%);
}
.layer--scanlines {
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(233,228,216,.055) 0 1px, transparent 1px 4px);
}
.layer--sweep {
  left: 0; right: 0; height: 38%;
  background: linear-gradient(180deg, rgba(216,64,42,0), rgba(216,64,42,.16));
  animation: scan 5.5s linear infinite;
}

/* ---------- HUD header ---------- */
.hud {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px var(--pad);
  background: var(--ink); color: var(--bone);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
}
.hud__group { display: flex; align-items: center; gap: 22px; }
.hud__group--right { gap: 26px; color: var(--dark-text); }
.hud__muted { color: var(--dark-text); }
.hud__clock { color: var(--bone); }
.badge--live {
  display: flex; align-items: center; gap: 9px;
  padding: 5px 11px; border: 1px solid var(--accent); color: var(--accent);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.4s ease-in-out infinite; }
.chip { padding: 4px 9px; border: 1px solid #4A443D; color: var(--bone); }
.caret { animation: blink 1s steps(1) infinite; }
.caret--accent { color: var(--accent); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 52px var(--pad) 0; overflow: hidden; }
.hero__ghost {
  position: absolute; top: -2vw; left: -3vw; right: -3vw;
  font-family: var(--serif); font-weight: 900; font-size: 22vw; line-height: .8; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(19,17,16,.14);
  white-space: nowrap; pointer-events: none;
  animation: orbit 16s ease-in-out infinite;
}
.hero__top {
  position: relative;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 32px;
  margin-bottom: 22px;
}
.hero__lede {
  margin: 0; max-width: 30ch;
  font-size: 12px; line-height: 1.75; letter-spacing: .04em; text-transform: uppercase; color: var(--muted);
}
.hero__schedule { margin: 0; text-align: right; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

.hero__stage { position: relative; will-change: transform; }
.hero__row { display: flex; align-items: flex-end; gap: min(4vw, 54px); animation: rise .9s cubic-bezier(.2,.8,.2,1) both; }

.bracket { position: absolute; width: 34px; height: 34px; }
.bracket--tl { top: -14px; left: -14px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.bracket--tr { top: -14px; right: -14px; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.bracket--bl { bottom: -14px; left: -14px; border-bottom: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.bracket--br { bottom: -14px; right: -14px; border-bottom: 2px solid var(--accent); border-right: 2px solid var(--accent); }

.logo { position: relative; flex: none; width: min(46vw, 470px); }
.logo__mark { position: relative; width: 100%; height: auto; }
.logo__shadow { position: absolute; top: 14px; left: 14px; width: 100%; height: auto; filter: brightness(0); opacity: .16; }

.nowbox {
  flex: 1; min-width: 0;
  padding: 14px 16px; margin-bottom: clamp(6px, 1.8vw, 26px);
  border: 1px solid var(--ink); background: rgba(233,228,216,.72);
  box-shadow: 6px 6px 0 rgba(19,17,16,.9);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); line-height: 1.9;
}
.nowbox__label, .nowbox__value { display: inline-block; margin-right: -.2em; }
.nowbox__label { display: block; }
.nowbox__value { color: var(--ink); font-size: 15px; }

/* ---------- stats ---------- */
.stats {
  position: relative;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px;
  margin-top: 34px; background: var(--ink); border: 1px solid var(--ink);
}
.stat { background: var(--bone); padding: 14px 18px 16px; }
.stat__label { font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted-2); }
.stat__value { font-family: var(--serif); font-size: 34px; font-weight: 900; line-height: 1.05; margin: 2px 0 9px; }
.stat__meter { height: 4px; background: rgba(19,17,16,.16); }
.stat__fill { height: 100%; background: var(--accent); transform-origin: left; animation: fill 1.2s .3s cubic-bezier(.2,.8,.2,1) both; }

/* ---------- tickers ---------- */
.ticker { overflow: hidden; white-space: nowrap; }
.ticker--accent {
  margin-top: 26px; background: var(--accent); color: var(--bone);
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  box-shadow: 0 6px 0 rgba(19,17,16,.9);
}
.ticker--quiet { margin-top: 14px; color: #8C8377; }
.ticker__track {
  display: inline-flex; padding: 11px 0; will-change: transform;
  font-size: 12px; letter-spacing: .34em; text-transform: uppercase;
  animation: marquee 26s linear infinite;
}
.ticker__track > span { padding-right: 44px; }
.ticker__track--rev {
  padding: 0; font-size: 10px; letter-spacing: .4em;
  animation: marquee-rev 34s linear infinite;
}
.ticker__track--rev > span { padding-right: 40px; }

/* ---------- panels ---------- */
.band {
  position: relative;
  display: flex; align-items: stretch; flex-wrap: wrap; gap: 26px;
  padding: 34px var(--pad) 40px;
}
.panel {
  flex: 1 1 280px; min-width: 0;
  padding: 24px 26px 28px;
  border: 1px solid var(--ink); background: rgba(233,228,216,.6);
  box-shadow: 8px 8px 0 rgba(19,17,16,.9);
}
.panel--videos { flex: 1.55 1 340px; }
.panel--dark {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--bone);
  box-shadow: 8px 8px 0 var(--accent);
  display: flex; flex-direction: column; justify-content: space-between;
}
.panel__title { margin: 0 0 18px; font-size: 11px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
.panel__title--dark { position: relative; margin: 0; color: var(--muted-3); }
.panel__note { margin: 14px 0 0; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-3); }
.panel__meta { margin: 22px 0 0; font-size: 11px; line-height: 1.8; color: var(--muted); }
.link { border-bottom: 1px solid var(--accent); }

.video {
  display: grid; grid-template-columns: 104px 1fr auto; align-items: center; gap: 18px;
  padding: 14px 6px; border-top: 1px solid rgba(19,17,16,.22);
}
.video:hover { background: rgba(19,17,16,.06); }
.video__thumb {
  aspect-ratio: 16 / 10;
  background-image: repeating-linear-gradient(135deg, rgba(19,17,16,.13) 0 4px, transparent 4px 9px);
  border: 1px solid rgba(19,17,16,.35);
}
.video__title { font-family: var(--serif); font-size: 22px; font-weight: 700; line-height: 1.15; text-wrap: pretty; }
.video__meta { margin-top: 6px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); }
.video__go { font-size: 11px; letter-spacing: .2em; color: var(--accent); }

.sponsors { display: flex; flex-direction: column; gap: 10px; }
.sponsor {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding-bottom: 9px; border-bottom: 1px dotted rgba(19,17,16,.4);
}
.sponsor__name { font-family: var(--serif); font-size: 20px; font-weight: 700; font-style: italic; }
.sponsor__kind { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); }

.cta { position: relative; animation: drift 6s ease-in-out infinite; }
.cta__head { font-family: var(--serif); font-size: clamp(34px, 4.2vw, 58px); font-weight: 900; line-height: .92; margin: 24px 0 14px; }
.cta__sub { margin: 0 0 22px; font-size: 11px; line-height: 1.85; color: var(--dark-text); }
.button {
  display: inline-block; padding: 13px 26px;
  background: var(--accent); color: var(--bone);
  font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; white-space: nowrap;
  transition: box-shadow .25s, transform .12s, background .25s, color .25s;
}
.button:hover { background: var(--bone); color: var(--ink); box-shadow: 0 0 26px rgba(216,64,42,.75); }
.button:active { transform: translate3d(2px, 2px, 0); }

/* ---------- footer ---------- */
.footer {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px 32px;
  padding: 0 var(--pad) 34px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
}
.social { display: flex; flex-wrap: wrap; gap: 12px; }
.social__link {
  padding: 9px 15px; border: 1px solid var(--ink); background: var(--bone);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .1s, box-shadow .1s, background .1s, color .1s;
}
.social__link:hover { background: var(--ink); color: var(--bone); }
.social__link:active { transform: translate3d(3px, 3px, 0); box-shadow: 0 0 0 var(--ink); }
.footer__copy { color: var(--muted-2); }

/* ---------- motion ---------- */
@keyframes marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes marquee-rev { from { transform: translate3d(-50%,0,0); } to { transform: translate3d(0,0,0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(.7); } }
@keyframes rise { from { opacity: 0; transform: translate3d(0,.34em,0); } to { opacity: 1; transform: none; } }
@keyframes drift { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-10px,0); } }
@keyframes orbit { 0%, 100% { transform: rotate(-7deg) translate3d(0,0,0); } 50% { transform: rotate(-7deg) translate3d(-26px,14px,0); } }
@keyframes grain { 0% { transform: translate3d(0,0,0); } 25% { transform: translate3d(-6px,4px,0); } 50% { transform: translate3d(4px,-6px,0); } 75% { transform: translate3d(-4px,-2px,0); } 100% { transform: translate3d(0,0,0); } }
@keyframes scan { from { transform: translate3d(0,-100%,0); } to { transform: translate3d(0,100%,0); } }
@keyframes fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }
  .hero__row { flex-direction: column; align-items: flex-start; }
  .logo { width: 78vw; }
  .nowbox { width: 100%; }
  .hud { flex-wrap: wrap; gap: 12px; }
}
