:root {
  --mx: 50vw;
  --my: 42vh;
  --black: #000;
  --void: #050505;
  --near: #0b0b0b;
  --graphite: #151515;
  --panel: rgba(12, 12, 12, 0.46);
  --panel-solid: rgba(12, 12, 12, 0.54);
  --glass-fill: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.045) 44%, rgba(236,4,0,.055)), rgba(8,8,8,.42);
  --glass-border: rgba(255,255,255,.22);
  --glass-shadow: 0 24px 70px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(236,4,0,.16);
  --glass-blur: 4px;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --red: #ec0400;
  --red-soft: rgba(236, 4, 0, 0.62);
  --red-dim: rgba(236, 4, 0, 0.16);
  --white: #fff;
  --text: #f4f4f4;
  --muted: #b7b7b7;
  --heading-gradient: linear-gradient(180deg, #8A8A8A 0%, #FFFFFF 50%, #8A8A8A 100%);
  --heading-stroke: .35px rgba(0, 0, 0, .9);
  --max: 1180px;
  --ease: cubic-bezier(.2, .9, .18, 1);
  --signal-label-size: .78rem;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Evogria";
  src: url("../fonts/evogria-italic.otf") format("opentype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(236, 4, 0, 0.24), transparent 30vw),
    linear-gradient(180deg, rgba(0,0,0,.46), rgba(0,0,0,.84)),
    url("../img/stream-triangle-bg.png"),
    linear-gradient(180deg, #111 0, #030303 42%, #000 100%);
  background-size: auto, auto, auto, auto;
  background-repeat: no-repeat, no-repeat, repeat, no-repeat;
  background-attachment: scroll, scroll, fixed, scroll;
  background-blend-mode: screen, normal, normal, normal;
  background-position: center, center, center, center;
  color: var(--text);
  font-family: "IBM Plex Mono", "Segoe UI Variable", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  animation: body-bg-drift 6s ease-in-out infinite;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  animation: grid-drift 5.2s linear infinite;
}

body::after {
  z-index: -1;
  display: none;
}

img {
  display: block;
  max-width: 100%;
}

a,
a:hover,
a:focus,
a:visited {
  color: inherit;
}

.motion-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.motion-field span {
  display: none;
}

.motion-field span:nth-child(1) { left: -8%; top: 19%; animation-delay: -1s; }
.motion-field span:nth-child(2) { left: 36%; top: 71%; animation-delay: -3.7s; animation-duration: 8s; }
.motion-field span:nth-child(3) { display: none; }
.motion-field span:nth-child(4),
.motion-field span:nth-child(5) { display: none; }

.triangle-field {
  display: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  perspective: 900px;
}

.triangle-field span {
  position: absolute;
  width: clamp(120px, 19vw, 380px);
  aspect-ratio: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .015)),
    rgba(255, 255, 255, .018);
  border: 1px solid rgba(255, 255, 255, .12);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 34px rgba(236, 4, 0, .36));
  opacity: .72;
  transform-style: preserve-3d;
  animation: triangle-drift 4.8s linear infinite;
}

.commands-page .triangle-field span,
.bit-page .triangle-field span {
  opacity: .32;
}

.triangle-field span:nth-child(1) { left: 4%; top: 14%; scale: .7; animation-delay: -1s; }
.triangle-field span:nth-child(2) { left: 18%; top: 72%; scale: 1.3; animation-delay: -3s; animation-duration: 5.4s; }
.triangle-field span:nth-child(3) { left: 34%; top: 22%; scale: .55; animation-delay: -5s; animation-duration: 4.1s; }
.triangle-field span:nth-child(4) { left: 49%; top: 82%; scale: .9; animation-delay: -2s; animation-duration: 4.8s; }
.triangle-field span:nth-child(5) { left: 63%; top: 12%; scale: 1.5; animation-delay: -4s; animation-duration: 6.1s; }
.triangle-field span:nth-child(6) { left: 78%; top: 48%; scale: .8; animation-delay: -2.8s; animation-duration: 4.3s; }
.triangle-field span:nth-child(7) { left: 88%; top: 76%; scale: 1.1; animation-delay: -5.7s; animation-duration: 5.8s; }
.triangle-field span:nth-child(8) { left: 8%; top: 42%; scale: .45; animation-delay: -4.5s; animation-duration: 3.7s; }
.triangle-field span:nth-child(9) { left: 28%; top: 50%; scale: .75; animation-delay: -1.4s; animation-duration: 4s; }
.triangle-field span:nth-child(10) { left: 58%; top: 62%; scale: .6; animation-delay: -3.2s; animation-duration: 4.5s; }
.triangle-field span:nth-child(11) { left: 70%; top: 30%; scale: .4; animation-delay: -4.7s; animation-duration: 3.4s; }
.triangle-field span:nth-child(12) { left: 92%; top: 18%; scale: .65; animation-delay: -2.2s; animation-duration: 3.9s; }

.flight-field {
  position: fixed;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.flight-field span {
  position: absolute;
  left: -14%;
  width: clamp(110px, 18vw, 360px);
  height: clamp(28px, 5vw, 82px);
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.28), rgba(255,255,255,.1), transparent);
  clip-path: polygon(0 42%, 72% 42%, 100% 0, 78% 100%, 0 58%);
  filter: drop-shadow(0 0 18px rgba(255,255,255,.18));
  opacity: .34;
  mix-blend-mode: screen;
}

.flight-field span:nth-child(1) { top: 13%; animation-delay: -.2s; }
.flight-field span:nth-child(2) { top: 29%; animation-delay: -1.1s; animation-duration: 2.8s; }
.flight-field span:nth-child(3) { top: 51%; animation-delay: -.7s; animation-duration: 2.4s; }
.flight-field span:nth-child(4) { top: 76%; animation-delay: -1.8s; animation-duration: 3s; }
.flight-field span:nth-child(5),
.flight-field span:nth-child(6),
.flight-field span:nth-child(7),
.flight-field span:nth-child(8) {
  right: -14%;
  left: auto;
}
.flight-field span:nth-child(5) { top: 19%; animation-delay: -1.4s; animation-duration: 2.5s; }
.flight-field span:nth-child(6) { top: 39%; animation-delay: -.5s; animation-duration: 3.1s; }
.flight-field span:nth-child(7) { top: 62%; animation-delay: -2s; animation-duration: 2.3s; }
.flight-field span:nth-child(8) { top: 86%; animation-delay: -.9s; animation-duration: 2.7s; }

.cursor-glow {
  position: fixed;
  left: var(--mx);
  top: var(--my);
  z-index: 35;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(236,4,0,.6) 0, rgba(236,4,0,.38) 20%, rgba(236,4,0,.18) 46%, transparent 72%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  transition: left 90ms linear, top 90ms linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8,8,8,.22);
  border-bottom: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.commands-page::before,
.commands-page::after,
.bit-page::before,
.bit-page::after {
  content: "";
  display: none;
  position: fixed;
  z-index: -1;
  pointer-events: none;
  width: 28vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(180deg, rgba(255,255,255,.1), transparent);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  animation: triangle-drift 6.5s linear infinite;
}

.commands-page::before,
.bit-page::before {
  left: 8%;
  top: 22%;
}

.commands-page::after,
.bit-page::after {
  right: 8%;
  bottom: 8%;
  animation-delay: -10s;
  animation-duration: 28s;
}

.site-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform-origin: center;
  animation: none;
}

.live-chat-layer {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  overflow: hidden;
}

.live-chat-flyer {
  --chat-y: 18vh;
  --chat-speed: 9s;
  position: absolute;
  top: var(--chat-y);
  right: 0;
  max-width: min(82vw, 920px);
  padding: 9px 18px;
  border-top: 3px solid rgba(236,4,0,.9);
  border-bottom: 3px solid rgba(236,4,0,.9);
  background:
    linear-gradient(90deg, rgba(236,4,0,.34), rgba(0,0,0,.84) 18%, rgba(0,0,0,.76) 82%, rgba(236,4,0,.24)),
    rgba(0,0,0,.86);
  color: var(--white);
  font-family: "Evogria", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(.86rem, 1.9vw, 1.2rem);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 0 34px rgba(236,4,0,.26), 0 14px 42px rgba(0,0,0,.42);
  text-shadow: 0 0 18px rgba(236,4,0,.42);
  transform: translateX(112vw);
  animation: live-chat-swoosh var(--chat-speed) linear forwards;
}

.live-chat-flyer::before,
.live-chat-flyer::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 54px;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(236,4,0,.75);
  transform: translateY(-50%);
}

.live-chat-flyer::before {
  left: -62px;
}

.live-chat-flyer::after {
  right: -62px;
  background: var(--red);
}

.live-chat-flyer strong {
  color: #ec0700;
  font: inherit;
  text-shadow: 0 0 18px rgba(236,7,0,.8);
}

.nav-wrap,
.section-inner,
.footer-grid,
.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(170px, 22vw, 300px);
  max-height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(236, 4, 0, .35));
}

.main-nav {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: stretch;
  gap: 6px;
  max-width: min(50vw, 520px);
  margin-left: auto;
}

.main-nav a,
.button,
.filter-button,
h1,
h2,
h3,
.stat-panel strong,
.stat-panel span,
.data-group summary,
.panel-action {
  font-family: "Evogria", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  padding-inline-end: .08em;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding: 0 clamp(8px, 1vw, 13px);
  border: 1px solid transparent;
  color: var(--white);
  font-size: .86rem;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(236, 4, 0, .16);
  box-shadow: 0 0 36px rgba(236, 4, 0, .14);
  outline: 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - 84px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  perspective: 1500px;
  background:
    radial-gradient(circle at 72% 28%, rgba(236,4,0,.28), transparent 28vw),
    linear-gradient(90deg, rgba(0, 0, 0, .86) 0 34%, rgba(0, 0, 0, .56) 60%, rgba(0, 0, 0, .24));
  background-size: auto, auto;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode: screen, normal;
  background-position: center, center;
  animation: hero-bg-shove 8s ease-in-out infinite;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.16) brightness(.54);
  transform: scale(1.08);
  animation: hero-video-drive 3.2s ease-in-out infinite;
}

.clip-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,.14));
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}

.clip-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(236,4,0,.24), transparent 30vw),
    linear-gradient(110deg, rgba(236,4,0,.16), rgba(0,0,0,.04) 34%, rgba(236,4,0,.1) 72%, rgba(0,0,0,.22)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.32));
  mix-blend-mode: normal;
  opacity: .82;
}

.clip-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(236,4,0,.18), transparent 28%, rgba(236,4,0,.16)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.045) 0 1px, transparent 1px 5px);
  opacity: .42;
  mix-blend-mode: screen;
}

.clip-backdrop iframe,
.clip-backdrop video {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  opacity: 0;
  object-fit: cover;
  pointer-events: none;
  transform: none;
  transition: opacity 1400ms var(--ease), filter 1400ms var(--ease);
}

.clip-backdrop.is-loaded iframe,
.clip-backdrop.is-loaded video {
  opacity: .9;
}

.clip-backdrop-hero iframe,
.clip-backdrop-hero video {
  filter: grayscale(1) saturate(0) contrast(1.2) brightness(.72);
}

.clip-backdrop-hero.is-poster {
  filter: grayscale(1) saturate(0) contrast(1.2) brightness(.72);
}

.clip-backdrop-hero.is-loaded iframe,
.clip-backdrop-hero.is-loaded video {
  opacity: .74;
}

.clip-backdrop-stage.is-loaded iframe,
.clip-backdrop-stage.is-loaded video {
  opacity: 1;
}

.clip-backdrop-page iframe,
.clip-backdrop-page video {
  filter: grayscale(1) saturate(0) contrast(1.34) brightness(.56);
}

.clip-backdrop-page {
  width: 100%;
}

.clip-backdrop-page.is-poster {
  filter: grayscale(1) saturate(0) contrast(1.34) brightness(.56);
}

.clip-backdrop-page.is-loaded iframe,
.clip-backdrop-page.is-loaded video {
  opacity: .62;
}

.clip-backdrop-stage iframe,
.clip-backdrop-stage video {
  min-width: 0;
  min-height: 0;
  filter: saturate(1.08) contrast(1.04) brightness(1.08);
}

.clip-backdrop-stage::before,
.clip-backdrop-stage::after {
  display: none;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(236, 4, 0, .28), transparent 28vw);
  animation: hero-breathe 1.8s ease-in-out infinite;
}

.hero::after {
  z-index: 1;
  background:
    linear-gradient(to top, #000, transparent 28%),
    linear-gradient(180deg, rgba(236,4,0,.18), transparent 16%, transparent 84%, rgba(236,4,0,.18));
}

.scan-stack {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.scan-stack span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(236, 4, 0, .45);
  animation: none;
}

.scan-stack span:nth-child(1) { display: none; }
.scan-stack span:nth-child(2) { display: none; }
.scan-stack span:nth-child(3) { bottom: 0; top: auto; animation-delay: -1.2s; animation-duration: 3.6s; }

.holo-stage {
  display: none;
}

.holo-core {
  position: absolute;
  right: clamp(20px, 8vw, 140px);
  top: 15%;
  width: clamp(240px, 32vw, 520px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transform: rotateX(64deg) rotateZ(-18deg);
  opacity: .72;
  animation: holo-float 2.4s ease-in-out infinite, holo-slam 5.5s ease-in-out infinite;
}

.orbit,
.core-light {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.orbit {
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 34px rgba(236, 4, 0, .24), inset 0 0 34px rgba(236, 4, 0, .16);
}

.orbit-a { animation: orbit-spin 2.6s linear infinite; }
.orbit-b { inset: 11%; border-color: rgba(255,255,255,.26); animation: orbit-spin 3.2s linear infinite reverse; }
.orbit-c { inset: 23%; border-color: rgba(255,255,255,.18); animation: orbit-spin 1.7s linear infinite; }

.core-light {
  inset: 37%;
  background: radial-gradient(circle, rgba(255,255,255,.8), rgba(236,4,0,.55) 32%, transparent 72%);
  animation: core-pulse .8s ease-in-out infinite;
}

.holo-slab {
  position: absolute;
  width: clamp(130px, 17vw, 270px);
  height: clamp(74px, 9vw, 140px);
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(236,4,0,.18), rgba(255,255,255,.04));
  box-shadow: 0 26px 70px rgba(0,0,0,.5), inset 0 0 30px rgba(236,4,0,.12);
  transform-style: preserve-3d;
  animation: slab-drift 2.6s ease-in-out infinite, slab-pop 4s ease-in-out infinite;
}

.slab-a { right: 8%; top: 58%; transform: rotateY(-34deg) rotateX(12deg) translateZ(80px); }
.slab-b { right: 30%; top: 24%; animation-delay: -2.4s; transform: rotateY(42deg) rotateX(-8deg) translateZ(120px); }
.slab-c { right: 4%; top: 35%; width: clamp(92px, 12vw, 180px); animation-delay: -4.8s; transform: rotateY(-52deg) rotateX(18deg) translateZ(160px); }

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 370px);
  gap: 38px;
  align-items: end;
  padding: 90px 0 76px;
}

.hero-content {
  min-width: 0;
  animation: content-surge 1.7s ease-in-out infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--white);
  font-family: "Evogria", Arial, Helvetica, sans-serif;
  font-size: var(--signal-label-size);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(236,4,0,.8);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
}

h1,
h2,
h3,
.data-summary strong,
.data-group summary span:first-child {
  background: var(--heading-gradient);
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(236,4,0,.42)) drop-shadow(0 0 28px rgba(236,4,0,.18));
  paint-order: stroke fill;
  -webkit-background-clip: text;
  -webkit-text-stroke: var(--heading-stroke);
  -webkit-text-fill-color: transparent;
}

h1 {
  max-width: 950px;
  margin: 0;
}

.hero-logo {
  width: min(100%, 940px);
  height: auto;
  filter: drop-shadow(0 0 34px rgba(236,4,0,.28)) drop-shadow(0 32px 42px rgba(0,0,0,.65));
  animation: logo-rise 850ms var(--ease) both, logo-glow 1.2s ease-in-out infinite, logo-float 2.8s ease-in-out infinite;
}

.premium-rail {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  max-width: 760px;
  animation: rail-kick 1.15s ease-in-out infinite;
}

.premium-rail span {
  position: relative;
  overflow: hidden;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(90deg, rgba(236,4,0,.24), rgba(255,255,255,.045)),
    rgba(0,0,0,.5);
  color: var(--white);
  font-family: "Evogria", Arial, Helvetica, sans-serif;
  font-size: var(--signal-label-size);
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 0 22px rgba(236,4,0,.06);
}

.premium-rail span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  transform: translateX(-120%);
  animation: rail-shimmer 1.35s ease-in-out infinite;
}

.hero-copy {
  max-width: 710px;
  margin: 28px 0 0;
  color: #eeeeee;
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  animation: fade-up 850ms var(--ease) 120ms both;
}

.hero-console {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  min-height: 560px;
  padding: 24px;
  background: linear-gradient(160deg, rgba(236,4,0,.18), rgba(255,255,255,.055) 32%, rgba(255,255,255,.025)), rgba(10,10,10,.8);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 36px 110px rgba(0,0,0,.65), inset 0 0 36px rgba(236,4,0,.08);
  transform-style: preserve-3d;
  animation: console-enter 850ms var(--ease) 200ms both, console-rock 1.35s ease-in-out infinite;
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-top: 3px solid rgba(236,4,0,.72);
  border-bottom: 3px solid rgba(236,4,0,.72);
  pointer-events: none;
}

.hero-console:hover {
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 42px 130px rgba(0,0,0,.72), 0 0 60px rgba(236,4,0,.18);
}

.console-pulse {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
  animation: red-blink 1.1s ease-in-out infinite;
}

.hero-twitch-player {
  position: relative;
  z-index: 1;
  flex: 1 1 230px;
  overflow: hidden;
  width: 100%;
  min-height: 220px;
  margin-bottom: 0;
  border: 1px solid rgba(236,4,0,.55);
  background: rgba(0,0,0,.6);
  box-shadow: 0 18px 44px rgba(0,0,0,.38), 0 0 28px rgba(236,4,0,.16);
}

.hero-twitch-player iframe {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.console-row {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  font-size: .92rem;
}

.console-row span {
  color: var(--white);
}

.console-row strong {
  color: var(--white);
  font-family: "Evogria", Arial, Helvetica, sans-serif;
  font-size: clamp(1.08rem, 2.4vw, 1.5rem);
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 32px;
  animation: button-row-shift 1.35s ease-in-out infinite;
}

.button,
.filter-button {
  min-height: 48px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid rgba(255,255,255,.38);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  animation: button-bounce 2.4s ease-in-out infinite;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button::before,
.filter-button::before,
.main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 34%, rgba(255,255,255,.18) 50%, transparent 66% 100%);
  transform: translateX(-130%);
  transition: transform 420ms var(--ease);
  pointer-events: none;
}

.button:hover::before,
.filter-button:hover::before,
.main-nav a:hover::before {
  transform: translateX(130%);
}

.main-nav a {
  position: relative;
  overflow: hidden;
}

.button.primary {
  border-top-color: rgba(236,4,0,.95);
  border-bottom-color: rgba(236,4,0,.95);
  border-left-color: rgba(255,255,255,.18);
  border-right-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, #ff1a15, var(--red) 45%, #850403);
  box-shadow: 0 0 34px rgba(236,4,0,.28);
}

.button.dark,
.filter-button {
  border-top-color: rgba(236,4,0,.5);
  border-bottom-color: rgba(236,4,0,.5);
  border-left-color: rgba(255,255,255,.14);
  border-right-color: rgba(255,255,255,.14);
  background: rgba(0,0,0,.78);
}

.button:hover,
.button:focus-visible,
.filter-button:hover,
.filter-button:focus-visible {
  border-top-color: var(--red);
  border-bottom-color: var(--red);
  border-left-color: rgba(255,255,255,.18);
  border-right-color: rgba(255,255,255,.18);
  box-shadow: 0 0 0 3px rgba(236,4,0,.2), 0 22px 50px rgba(0,0,0,.5), 0 0 42px rgba(236,4,0,.22);
  outline: 0;
}

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

.section {
  position: relative;
  padding: 92px 0;
  background: transparent;
  overflow: hidden;
}

.section.dark,
.section-cut {
  background: transparent;
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 22px rgba(236,4,0,.48);
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 2;
}

.section-orbit {
  position: absolute;
  right: 0;
  top: -24px;
  width: min(40vw, 460px);
  aspect-ratio: 1;
  opacity: .26;
  pointer-events: none;
  transform: rotateX(64deg);
  transform-style: preserve-3d;
}

.section-orbit span {
  position: absolute;
  inset: calc(var(--i, 0) * 12%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  animation: orbit-spin 12s linear infinite;
}

.section-orbit span:nth-child(1) { --i: 0; }
.section-orbit span:nth-child(2) { --i: 1; border-color: rgba(255,255,255,.2); animation-direction: reverse; }
.section-orbit span:nth-child(3) { --i: 2; animation-duration: 7s; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(290px, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
  animation: heading-surge 1.55s ease-in-out infinite;
}

h2 {
  margin: 0;
  font-size: clamp(2.45rem, 5.8vw, 5.7rem);
  line-height: .96;
  padding-bottom: .08em;
}

.section-heading p:not(.eyebrow),
.wide-copy {
  margin: 0;
  max-width: 740px;
  color: #d8d8d8;
}

.section-heading > .eyebrow {
  align-self: start;
  margin: 10px 0 0;
  color: var(--white);
}

.link-grid,
.feature-grid,
.shot-grid,
.stat-grid,
.top-chatters-grid {
  display: grid;
  gap: 18px;
  animation: grid-sway 1.45s ease-in-out infinite;
}

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

.feature-grid,
.shot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.top-chatters-section {
  background: transparent;
}

.top-chatters-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  animation: none;
}

.top-chatter-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  padding: 30px;
  color: var(--text);
  text-align: left;
  text-decoration: none;
  animation: none;
  transform-style: preserve-3d;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.top-chatter-rank,
.top-chatter-card strong {
  font-family: "Evogria", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.top-chatter-rank {
  min-width: 46px;
  padding: 5px 8px 4px;
  border: 1px solid rgba(236,4,0,.62);
  background: rgba(236,4,0,.14);
  color: var(--white);
  font-size: .9rem;
  line-height: 1;
  box-shadow: 0 0 18px rgba(236,4,0,.18);
}

.top-chatter-avatar {
  position: relative;
  width: 70px;
  height: 70px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: rgba(0,0,0,.58);
  box-shadow: 0 0 24px rgba(236,4,0,.2), 0 12px 28px rgba(0,0,0,.36);
}

.top-chatter-avatar::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(236,4,0,.7);
  pointer-events: none;
}

.top-chatter-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(236,4,0,.72);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.top-chatter-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-chatter-card strong {
  max-width: 100%;
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.top-chatter-messages {
  color: #d9d9d9;
  font-size: .96rem;
}

.link-panel,
.feature-panel,
.shot-panel,
.stat-panel,
.top-chatter-card,
.data-row {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), transparent 46%),
    var(--panel);
  border: 1px solid rgba(255,255,255,.11);
  color: var(--text);
  box-shadow: 0 18px 46px rgba(0,0,0,.36);
  transform-style: preserve-3d;
}

.link-panel::after,
.feature-panel::after,
.shot-panel::after,
.stat-panel::after,
.top-chatter-card::after,
.data-row::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(236,4,0,.18), transparent 28%);
  opacity: .28;
  transition: opacity 220ms var(--ease);
  pointer-events: none;
}

.link-panel:hover::after,
.feature-panel:hover::after,
.shot-panel:hover::after,
.stat-panel:hover::after,
.top-chatter-card:hover::after,
.data-row:hover::after {
  opacity: .82;
}

.link-panel::before,
.feature-panel::before,
.stat-panel::before,
.shot-panel::before,
.top-chatter-card::before,
.data-row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 20px rgba(236,4,0,.65);
  pointer-events: none;
  transform-origin: left;
  animation: none;
}

.link-panel,
.feature-panel {
  min-height: 230px;
  padding: 30px;
  animation: panel-drift 1.55s ease-in-out infinite;
}

.link-panel:nth-child(2n),
.feature-panel:nth-child(2n),
.stat-panel:nth-child(2n),
.top-chatter-card:nth-child(2n),
.data-row:nth-child(2n) {
  animation-delay: -2.8s;
}

.link-panel:nth-child(3n),
.feature-panel:nth-child(3n),
.stat-panel:nth-child(3n),
.top-chatter-card:nth-child(3n),
.data-row:nth-child(3n) {
  animation-delay: -5.4s;
}

a.link-panel {
  display: block;
  text-decoration: none;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

a.link-panel:hover,
a.link-panel:focus-visible,
.feature-panel:hover,
.stat-panel:hover,
.top-chatter-card:hover,
.shot-panel:hover {
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 34px 86px rgba(0,0,0,.56), 0 0 46px rgba(236,4,0,.16);
  outline: 0;
}

.link-panel-main {
  background:
    linear-gradient(180deg, rgba(236,4,0,.34), rgba(255,255,255,.045) 42%, transparent),
    var(--panel);
}

.link-panel h3,
.feature-panel h3,
.shot-panel h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.link-panel p,
.feature-panel p,
.shot-panel p,
.data-row p {
  margin: 0;
  color: #d5d5d5;
}

.panel-action {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
}

.panel-action::after {
  content: "";
  width: 30px;
  height: 3px;
  margin-left: 10px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(236,4,0,.8);
  animation: none;
}

.cinematic {
  background: transparent;
}

.cinematic-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: center;
}

.cinematic-copy h2 {
  max-width: 720px;
  animation: text-glide 2.2s ease-in-out infinite;
}

.cinematic-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: #d9d9d9;
  font-size: 1.08rem;
}

.cinematic-image {
  position: relative;
  min-height: 410px;
  box-shadow: 0 36px 100px rgba(0,0,0,.62), 0 0 58px rgba(236,4,0,.18);
  transform-style: preserve-3d;
  animation: image-hover-float 2s ease-in-out infinite, glitch-nudge 3.2s steps(2, end) infinite;
}

.cinematic-image::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  border-top: 3px solid rgba(236,4,0,.86);
  border-bottom: 3px solid rgba(236,4,0,.86);
  pointer-events: none;
}

.cinematic-image img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08);
}

.image-hud {
  position: absolute;
  z-index: 2;
  inset: 18px 18px auto auto;
  display: grid;
  gap: 8px;
  color: var(--white);
  font-family: "Evogria", Arial, Helvetica, sans-serif;
  font-size: var(--signal-label-size);
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.image-hud span {
  padding: 6px 9px;
  background: rgba(0,0,0,.68);
  border-top: 3px solid rgba(236,4,0,.7);
  border-bottom: 3px solid rgba(236,4,0,.7);
  box-shadow: 0 0 24px rgba(236,4,0,.16);
}

.shop-signal {
  background: transparent;
}

.shop-signal-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(300px, .72fr);
  gap: 38px;
  align-items: center;
}

.shop-signal-grid-visual-small {
  grid-template-columns: minmax(300px, .72fr) minmax(340px, 1.05fr);
}

.shop-video-stage,
.shop-slideshow {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  box-shadow: 0 44px 120px rgba(0,0,0,.68), 0 0 64px rgba(236,4,0,.18);
  transform-style: preserve-3d;
  animation: video-stage-drift 1.7s ease-in-out infinite, glitch-nudge 2.4s steps(2, end) infinite;
}

.shop-video-stage .clip-backdrop {
  background: transparent;
}

.cinematic-video-stage {
  width: min(100%, 430px);
  aspect-ratio: 9 / 16;
  justify-self: center;
}

.cinematic-video-stage .clip-backdrop video,
.cinematic-video-stage .clip-backdrop iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.shop-video-stage::before,
.shop-video-stage::after,
.shop-slideshow::before,
.shop-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.shop-video-stage::before,
.shop-slideshow::before {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.12), transparent 30%);
  mix-blend-mode: screen;
  opacity: .22;
}

.shop-video-stage::after,
.shop-slideshow::after {
  inset: 14px;
  border-top: 3px solid rgba(236,4,0,.78);
  border-bottom: 3px solid rgba(236,4,0,.78);
  border-left: 0;
  border-right: 0;
  box-shadow: inset 0 0 20px rgba(236,4,0,.08);
}

.shop-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform-box: border-box;
  transform-origin: center center;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1.06);
  transition: opacity 360ms var(--ease), transform 1800ms linear;
  will-change: opacity, transform;
}

.shop-slideshow img.is-active {
  opacity: 1;
  transform: translate3d(var(--shop-x, 0), var(--shop-y, 0), 0) rotate(var(--shop-rotate, 0deg)) scale(var(--shop-scale, 1.3));
}

.shop-slideshow {
  aspect-ratio: 1 / 1;
}

.shop-video {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08);
  animation: video-pulse 1.25s ease-in-out infinite;
}

.video-hud {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--white);
  font-family: "Evogria", Arial, Helvetica, sans-serif;
  font-size: var(--signal-label-size);
  line-height: 1;
  text-transform: uppercase;
}

.video-hud span {
  padding: 7px 10px;
  background: rgba(0,0,0,.7);
  border-top: 3px solid rgba(236,4,0,.72);
  border-bottom: 3px solid rgba(236,4,0,.72);
  box-shadow: 0 0 28px rgba(236,4,0,.18);
}

.shop-copy {
  position: relative;
  animation: content-surge 2.4s ease-in-out infinite reverse;
}

.shop-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #e0e0e0;
}

.stream-relic {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin: 0 0 28px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent),
    rgba(18,18,18,.72);
  box-shadow: 0 28px 70px rgba(0,0,0,.44), inset 0 0 44px rgba(236,4,0,.06);
  animation: relic-slide 2s ease-in-out infinite;
}

.stream-relic::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 24px rgba(236,4,0,.75);
  animation: none;
}

.cola-stage {
  width: min(100%, 260px);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
  transform-box: border-box;
  transform-origin: center center;
  animation: cola-bob 1.75s ease-in-out infinite;
  will-change: transform;
}

.stream-relic img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 26px 32px rgba(0,0,0,.58)) drop-shadow(0 0 26px rgba(236,4,0,.28));
  transform-origin: center center;
  transform-box: border-box;
  animation: cola-center-pivot 1.75s ease-in-out infinite;
  will-change: transform;
}

.stream-relic h3 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.stream-relic p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #dcdcdc;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.mini-list span {
  position: relative;
  display: block;
  padding: 12px 14px 12px 42px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
}

.mini-list span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 16px;
  height: 3px;
  background: var(--red);
  transform: translateY(-50%);
}

.kinetic-rig {
  position: absolute;
  right: max(16px, calc((100% - var(--max)) / 2));
  top: 46px;
  width: 220px;
  height: 220px;
  pointer-events: none;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(58deg) rotateZ(18deg);
  opacity: .28;
}

.kinetic-rig span {
  position: absolute;
  inset: calc(var(--ring) * 18px);
  border: 1px solid rgba(255,255,255,.18);
  animation: rig-spin 8s linear infinite;
}

.kinetic-rig span:nth-child(1) { --ring: 0; }
.kinetic-rig span:nth-child(2) { --ring: 1; animation-direction: reverse; border-color: rgba(255,255,255,.24); }
.kinetic-rig span:nth-child(3) { --ring: 2; animation-duration: 5s; }
.kinetic-rig span:nth-child(4) { --ring: 3; animation-duration: 11s; animation-direction: reverse; border-color: rgba(255,255,255,.18); }

.stat-panel {
  min-height: 158px;
  padding: 24px;
  text-decoration: none;
  animation: panel-drift 1.7s ease-in-out infinite;
}

.stat-panel strong {
  display: block;
  color: var(--red);
  font-size: clamp(2.5rem, 5.5vw, 4.7rem);
  line-height: .96;
  text-shadow: 0 0 26px rgba(236,4,0,.38);
  animation: number-glow 2.4s ease-in-out infinite;
}

.stat-panel span {
  display: block;
  margin-top: 10px;
}

.shot-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
}

.shot-panel div {
  padding: 23px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 86px 0 62px;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 24px rgba(236,4,0,.52);
  pointer-events: none;
}

.page-hero::before {
  display: none;
}

.page-hero::after {
  bottom: 0;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: .96;
  padding-bottom: .08em;
}

.page-hero .section-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.tool-shell {
  background: transparent;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 220px 190px;
  gap: 10px;
  margin-bottom: 18px;
}

.toolbar input,
.toolbar select {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: var(--graphite);
  color: var(--text);
  font: inherit;
  padding: 0 14px;
}

.toolbar input:focus,
.toolbar select:focus {
  border-top-color: var(--red);
  border-bottom-color: var(--red);
  border-left-color: rgba(255,255,255,.16);
  border-right-color: rgba(255,255,255,.16);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(236,4,0,.18);
}

.toolbar select option {
  background: var(--graphite);
  color: var(--text);
}

.data-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.data-summary strong {
  font-weight: 600;
}

.data-grid {
  display: grid;
  gap: 10px;
}

.data-group {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: var(--panel-solid);
  box-shadow: 0 18px 42px rgba(0,0,0,.32);
  animation: group-rise 720ms var(--ease) both;
}

.data-group + .data-group {
  margin-top: 16px;
}

.data-group summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  background: linear-gradient(90deg, rgba(236,4,0,.32), transparent 34%), var(--black);
  color: var(--white);
  cursor: pointer;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.data-group summary:hover,
.data-group summary:focus-visible {
  background: linear-gradient(90deg, rgba(236,4,0,.5), rgba(236,4,0,.08) 58%, transparent), var(--black);
  box-shadow: inset 0 0 36px rgba(236,4,0,.14);
  outline: 0;
}

.data-group summary span:last-child {
  color: #e8e8e8;
  font-size: .86rem;
}

.data-group summary span:first-child,
.data-group summary span:last-child {
  display: inline-block;
}

.data-group .data-grid {
  padding: 12px;
}

.data-row {
  display: grid;
  grid-template-columns: minmax(170px, .7fr) minmax(140px, .4fr) minmax(240px, 1fr);
  gap: 16px;
  min-height: 92px;
  padding: 18px 58px 18px 18px;
  animation: row-drift 1.8s ease-in-out infinite;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), translate 200ms var(--ease);
}

.data-row:hover {
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 24px 58px rgba(0,0,0,.46), 0 0 32px rgba(236,4,0,.13);
  translate: 8px 0;
}

.data-row.bit-row {
  grid-template-columns: 125px minmax(190px, .55fr) minmax(220px, 1fr);
}

.hero-console,
.premium-rail span,
.link-panel,
.feature-panel,
.shot-panel,
.stat-panel,
.top-chatter-card,
.mini-list span,
.stream-relic,
.data-group,
.data-row,
.toolbar input,
.toolbar select,
.live-chat-flyer {
  background: var(--glass-fill);
  border-color: var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.data-group summary {
  background: linear-gradient(90deg, rgba(236,4,0,.28), rgba(255,255,255,.065) 42%, rgba(255,255,255,.02)), rgba(0,0,0,.42);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.link-panel:hover,
.feature-panel:hover,
.stat-panel:hover,
.top-chatter-card:hover,
.shot-panel:hover,
.data-row:hover,
.hero-console:hover {
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 34px 92px rgba(0,0,0,.58), 0 0 46px rgba(236,4,0,.18), inset 0 1px 0 rgba(255,255,255,.24);
}

.hero-console {
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 34px 92px rgba(0,0,0,.58), 0 0 46px rgba(236,4,0,.18), inset 0 1px 0 rgba(255,255,255,.24);
}

.data-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
}

.data-value {
  margin: 0;
  color: var(--white);
  font-weight: 500;
}

.bits-cell .data-value {
  font-family: "Evogria", Arial, Helvetica, sans-serif;
  font-size: clamp(1.28rem, 2.35vw, 1.9rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.bits-cell .bit-range-value {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  white-space: normal;
}

.bits-cell .bit-range-value span {
  display: block;
}

.command-cell .data-value,
.alias-list span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(236,4,0,.72);
  background: rgba(12,12,12,.62);
  color: var(--white);
  line-height: 1.15;
}

.command-cell .data-value {
  padding: 3px 7px;
  font-family: "IBM Plex Mono", "Segoe UI Variable", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: .82rem;
  font-weight: 400;
}

.alias-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.command-variant-list {
  margin-top: 0;
}

.alias-list span {
  padding: 3px 7px;
  font-size: .82rem;
  font-family: "IBM Plex Mono", "Segoe UI Variable", "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.alias-list .command-emote-chip {
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.alias-line-break {
  flex-basis: 100%;
  width: 0;
  height: 0;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.command-emote {
  width: 32px;
  height: 32px;
  object-fit: contain;
  image-rendering: auto;
}

.description-cell .data-value {
  white-space: pre-line;
}

.empty-state {
  padding: 28px;
  border: 2px dashed rgba(255,255,255,.22);
  background: var(--panel-solid);
  text-align: center;
  font-weight: 600;
}

.final-moment {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  background: transparent;
  overflow: hidden;
}

.final-moment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: 34px;
  align-items: start;
}

.final-moment-copy {
  min-width: 0;
}

.press-button-pair {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  min-height: 410px;
  padding-top: 54px;
}

.press-sprite-button {
  flex: 0 0 auto;
  width: 210px;
  height: 200px;
  padding: 0;
  border: 0;
  background-image: url("../img/transparent_button_sprite.png");
  background-color: transparent;
  background-size: 200% 100%;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: .72;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.46));
  cursor: pointer;
  pointer-events: auto;
}

.press-sprite-button:hover,
.press-sprite-button:focus-visible {
  background-position: right center;
  opacity: .92;
  outline: 0;
}

.press-sprite-button:nth-child(2) {
  margin-left: 54px;
}

.toasty-popout {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(.2, .9, .18, 1);
  pointer-events: none;
}

.toasty-popout.is-active {
  transform: translateX(0);
}

.toasty-popout img {
  width: auto;
  max-width: 100vw;
  height: auto;
  object-fit: contain;
}

.final-moment h2 {
  max-width: 860px;
}

.final-moment p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: #e2e2e2;
  font-size: 1.13rem;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid rgba(236,4,0,.72);
  background: var(--black);
}

body,
body::before,
.triangle-field span,
.commands-page::before,
.commands-page::after,
.bit-page::before,
.bit-page::after,
.flight-field span,
.site-header::after,
.hero,
.hero-video,
.hero::before,
.scan-stack span,
.hero-content,
.hero-logo,
.premium-rail,
.premium-rail span::after,
.hero-copy,
.hero-console,
.console-pulse,
.button-row,
.button,
.filter-button,
.section-orbit span,
.section-heading,
.link-grid,
.feature-grid,
.shot-grid,
.stat-grid,
.top-chatters-grid,
.link-panel,
.feature-panel,
.shot-panel,
.stat-panel,
.top-chatter-card,
.data-row,
.link-panel::before,
.feature-panel::before,
.stat-panel::before,
.top-chatter-card::before,
.shot-panel::before,
.data-row::before,
.panel-action::after,
.cinematic-copy h2,
.cinematic-image,
.shop-video-stage,
.shop-slideshow,
.shop-video,
.shop-copy,
.stream-relic,
.kinetic-rig span,
.stat-panel strong,
.data-group {
  animation: none !important;
}

.scroll-motion {
  --fly-x: -118vw;
  --fly-delay: 0ms;
  transform: translate3d(var(--fly-x), 0, 0);
  transition: none;
  will-change: transform;
}

.scroll-motion.is-motion-ready {
  transition: transform 3200ms cubic-bezier(.08, .82, .08, 1) var(--fly-delay);
}

.scroll-motion.is-flown-in {
  transform: translate3d(0, 0, 0);
}

.hero-content.scroll-motion,
.hero-logo.scroll-motion,
.hero-console.scroll-motion,
.section-heading.scroll-motion,
.link-panel.scroll-motion,
.feature-panel.scroll-motion,
.stat-panel.scroll-motion,
.top-chatter-card.scroll-motion,
.cinematic-copy.scroll-motion,
.cinematic-image.scroll-motion,
.shop-video-stage.scroll-motion,
.shop-slideshow.scroll-motion,
.shop-copy.scroll-motion,
.stream-relic.scroll-motion,
.data-group.scroll-motion,
.data-row.scroll-motion {
  transition-duration: 3200ms;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-grid a {
  font-weight: 400;
  text-underline-offset: 4px;
}

body {
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.68)),
    url("../img/stream-triangle-bg.png");
  background-size: auto, 100% auto;
  background-repeat: no-repeat, repeat-y;
  background-attachment: fixed, fixed;
  background-blend-mode: normal, normal;
  background-position: center, top center;
  animation: none;
}

body::before,
.flight-field,
.holo-stage,
.section-orbit,
.kinetic-rig,
.console-pulse,
.shop-video-stage::before,
.shop-slideshow::before {
  display: none !important;
}

.cursor-glow {
  display: block !important;
}

.hero,
.section,
.section.dark,
.section-cut,
.cinematic,
.shop-signal,
.page-hero,
.tool-shell {
  background-color: transparent;
  background-image: none;
  background-size: auto;
  background-repeat: no-repeat;
  background-blend-mode: normal;
  background-position: center;
}

.hero::before,
.link-panel::after,
.feature-panel::after,
.shot-panel::after,
.stat-panel::after,
.top-chatter-card::after,
.data-row::after {
  display: none;
}

.clip-backdrop::before {
  background:
    linear-gradient(110deg, rgba(236,4,0,.14), rgba(0,0,0,.04) 34%, rgba(236,4,0,.1) 72%, rgba(0,0,0,.22)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.3));
}

@keyframes live-chat-swoosh {
  0% { transform: translateX(112vw); }
  8% { transform: translateX(88vw); }
  100% { transform: translateX(calc(-100vw - 100%)); }
}

@media (max-width: 980px) {
  body {
    background-attachment: fixed;
  }

  .site-header {
    position: relative;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 13px 0;
  }

  .main-nav {
    width: 100%;
    max-width: none;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }

  .main-nav a {
    justify-content: center;
    text-align: center;
  }

  .hero-inner,
  .section-heading,
  .toolbar,
  .cinematic-grid,
  .shop-signal-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
    padding: 70px 0 60px;
  }

  .hero-console {
    min-height: auto;
    transform: none;
  }

  .hero-twitch-player {
    min-height: clamp(210px, 52vw, 420px);
  }

  .holo-stage {
    opacity: .45;
  }

  .cinematic-image,
  .cinematic-image img {
    min-height: 310px;
  }

  .shop-video {
    min-height: 360px;
  }

  .shop-video-stage {
    min-height: 0;
  }

  .link-grid,
  .feature-grid,
  .shot-grid,
  .stat-grid,
  .top-chatters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stream-relic {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-moment-grid {
    grid-template-columns: 1fr;
  }

  .press-button-pair {
    justify-content: flex-start;
    padding-top: 0;
  }

  .stream-relic p:not(.eyebrow) {
    margin-inline: auto;
  }

  .data-row,
  .data-row.bit-row {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .data-row:hover {
    translate: 0;
  }

  .toolbar {
    gap: 12px;
  }

  .toolbar .filter-button,
  .toolbar input,
  .toolbar select {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .section-inner,
  .footer-grid,
  .hero-inner {
    width: min(100% - 22px, var(--max));
  }

  .hero {
    min-height: auto;
    background-position: center right;
  }

  .hero-inner {
    gap: 24px;
    padding: 54px 0 48px;
  }

  .hero-logo {
    width: min(100%, 560px);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .brand-logo {
    width: min(78vw, 260px);
  }

  .main-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .main-nav a {
    min-height: 38px;
    padding: 0 4px;
    font-size: clamp(.58rem, 2.8vw, .72rem);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .press-button-pair {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }

  .press-sprite-button:nth-child(2) {
    margin-left: 0;
  }

  .press-sprite-button {
    width: min(42vw, 210px);
    height: auto;
    aspect-ratio: 210 / 200;
  }

  .link-grid,
  .feature-grid,
  .shot-grid,
  .stat-grid,
  .top-chatters-grid {
    grid-template-columns: 1fr;
  }

  .top-chatter-card {
    min-height: 162px;
  }

  h2 {
    font-size: clamp(2.05rem, 13vw, 3.6rem);
    line-height: 1;
  }

  .page-hero {
    padding: 58px 0 44px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.8rem);
    line-height: 1;
  }

  .wide-copy,
  .section-heading p:not(.eyebrow),
  .hero-copy,
  .cinematic-copy p:not(.eyebrow),
  .shop-copy p:not(.eyebrow),
  .final-moment p:not(.eyebrow) {
    max-width: none;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 26px;
  }

  .link-panel,
  .feature-panel {
    min-height: 0;
    padding: 22px;
  }

  .stat-panel {
    min-height: 132px;
    padding: 20px;
  }

  .shop-video {
    min-height: 280px;
  }

  .shop-video-stage {
    min-height: 0;
  }

  .video-hud,
  .image-hud {
    font-size: var(--signal-label-size);
  }

  .stream-relic {
    gap: 16px;
    padding: 20px;
  }

  .cola-stage {
    width: min(74vw, 220px);
  }

  .cursor-glow {
    width: 390px;
    height: 390px;
  }

  .toolbar input,
  .toolbar select,
  .filter-button {
    min-height: 46px;
  }

  .data-group summary {
    min-height: 58px;
    padding: 0 14px;
  }

  .data-group summary {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .data-group .data-grid {
    padding: 8px;
  }

  .data-row {
    gap: 12px;
    min-height: 0;
    padding: 16px;
  }

  .live-chat-flyer {
    max-width: 88vw;
    padding: 8px 13px;
    font-size: .78rem;
  }
}

@media (max-width: 420px) {
  .nav-wrap,
  .section-inner,
  .footer-grid,
  .hero-inner {
    width: min(100% - 18px, var(--max));
  }

  .premium-rail span,
  .video-hud span,
  .image-hud span {
    font-size: var(--signal-label-size);
  }

  .hero-console {
    padding: 18px;
  }

  .hero-twitch-player {
    min-height: 178px;
  }

  .console-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .console-row strong {
    text-align: left;
  }

  .main-nav a {
    padding: 0 3px;
    font-size: clamp(.52rem, 2.7vw, .68rem);
  }
}

body {
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.68)),
    url("../img/stream-triangle-bg.png");
  background-size: auto, 100% auto;
  background-repeat: no-repeat, repeat-y;
  background-attachment: fixed, fixed;
  background-blend-mode: normal, normal;
  background-position: center, top center;
}

.hero-console,
.premium-rail span,
.link-panel,
.feature-panel,
.shot-panel,
.stat-panel,
.top-chatter-card,
.mini-list span,
.stream-relic,
.data-group,
.data-row,
.toolbar input,
.toolbar select,
.live-chat-flyer {
  background:
    linear-gradient(169deg, rgba(0,0,0,0) 0 75%, rgba(236,4,0,.2) 88%, rgba(236,4,0,.46) 100%),
    rgba(8,8,8,.22);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.hero-console,
.hero-console:hover {
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 34px 92px rgba(0,0,0,.58), 0 0 46px rgba(236,4,0,.18), inset 0 1px 0 rgba(255,255,255,.24);
}

.hero-console::after,
.link-panel::after,
.feature-panel::after,
.shot-panel::after,
.stat-panel::after,
.top-chatter-card::after,
.stream-relic::after,
.data-group::after,
.data-row::after {
  display: none;
}

.link-panel > *,
.feature-panel > *,
.shot-panel > *,
.stat-panel > *,
.top-chatter-card > *,
.stream-relic > *,
.data-group > *,
.data-row > *,
.hero-console > * {
  position: relative;
  z-index: 1;
}

.data-group {
  position: relative;
}

.data-group summary {
  background:
    linear-gradient(169deg, rgba(0,0,0,0) 0 75%, rgba(236,4,0,.2) 88%, rgba(236,4,0,.46) 100%),
    rgba(0,0,0,.24);
  border-bottom-color: rgba(255,255,255,.12);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.button,
.button.primary,
.button.dark,
.filter-button,
.main-nav a {
  background:
    linear-gradient(169deg, rgba(0,0,0,0) 0 75%, rgba(236,4,0,.2) 88%, rgba(236,4,0,.46) 100%),
    rgba(8,8,8,.22);
  border-color: rgba(236,4,0,.72);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  outline: 0;
}

.button:hover,
.button:focus-visible,
.button.primary:hover,
.button.primary:focus-visible,
.button.dark:hover,
.button.dark:focus-visible,
.filter-button:hover,
.filter-button:focus-visible,
.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 18px 44px rgba(0,0,0,.34), 0 0 34px rgba(236,4,0,.42);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  outline: 0;
}

.button::before,
.filter-button::before,
.main-nav a::before {
  display: none;
}

a,
a:hover,
a:focus,
a:focus-visible,
.button,
.button:hover,
.button:focus-visible,
.filter-button,
.filter-button:hover,
.filter-button:focus-visible,
.main-nav a,
.main-nav a:hover,
.main-nav a:focus-visible,
.panel-action,
.panel-action:hover,
.panel-action:focus-visible {
  text-decoration: none;
}

.stream-relic {
  overflow: hidden;
  padding-block: 24px;
}

.cola-stage {
  width: min(100%, 260px);
  padding: 0;
  transform-origin: center center;
}

.stream-relic img {
  width: 100%;
  height: 100%;
  transform-origin: center center;
}

.hero,
.section,
.section.dark,
.section-cut,
.cinematic,
.shop-signal,
.page-hero,
.tool-shell {
  background-color: transparent;
  background-image: none;
  background-size: auto;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-blend-mode: normal;
  background-position: center;
}

main > section.section {
  background-color: transparent !important;
  background-image: none !important;
  background-attachment: scroll !important;
}

main > section.section:nth-of-type(odd):not(.hero) {
  background-image:
    linear-gradient(180deg, rgba(236,4,0,.18), rgba(236,4,0,.07)) !important;
}
