/* ============================================================
   INFINITY IRL — Broadcast HUD Brutalist
   ============================================================ */

:root {
  --white: #FFFFFF;
  --charcoal: #0F0F12;
  --jet: #050507;
  --red: #FF2D2D;
  --red-dim: #b51e1e;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --muted: rgba(255,255,255,.55);
  --muted-2: rgba(255,255,255,.35);

  --display: 'Unbounded', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --body: 'Manrope', system-ui, sans-serif;

  --easing: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--jet);
  color: var(--white);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255,45,45,.18), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(255,45,45,.08), transparent 60%),
    var(--jet);
  min-height: 100vh;
  position: relative;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-in { opacity: 1; }
.section-head.reveal { transform: translateY(20px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.section-head.reveal.is-in { transform: translateY(0); }
.svc.reveal, .pillar.reveal { transform: translateY(18px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.svc.reveal.is-in, .pillar.reveal.is-in { transform: translateY(0); }
.pillar.reveal.is-in:hover { transform: translateY(-6px); }

/* ============================================================
   ATMOSPHERIC FX
   ============================================================ */

.fx-grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.fx-scan {
  position: fixed; inset: 0; pointer-events: none; z-index: 99;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0px,
    rgba(255,255,255,0) 2px,
    rgba(255,255,255,.018) 3px,
    rgba(255,255,255,0) 4px
  );
}

.fx-vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 98;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.55) 100%);
}

/* ============================================================
   VERTICAL TICKER
   ============================================================ */

.ticker-left {
  position: fixed; left: 18px; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  display: flex; gap: 32px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .25em;
  color: var(--muted-2);
  white-space: nowrap;
  z-index: 50;
  pointer-events: none;
}
.ticker-left span:first-child { color: var(--red); }

@media (max-width: 900px) { .ticker-left { display: none; } }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .95;
  font-size: clamp(2.4rem, 5.6vw, 5.4rem);
}
.display em {
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(95deg, #ffd5d5 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.display.giant { font-size: clamp(3rem, 9vw, 8.4rem); line-height: .92; }

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker .square {
  display: inline-block; width: 8px; height: 8px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}
.mono { font-family: var(--mono); }
.small { font-size: 11px; }

.lede {
  font-size: clamp(.95rem, 1.05vw, 1.1rem);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.6;
}
.lede strong { color: var(--white); font-weight: 600; }

.redline {
  position: relative;
  display: inline-block;
  color: var(--white);
}
.redline::after {
  content: ''; position: absolute;
  left: -4px; right: -4px; bottom: 6%;
  height: 38%;
  background: var(--red);
  z-index: -1;
  transform: skewX(-8deg);
  opacity: .9;
}
.redline-thin {
  display: inline-block; width: 18px; height: 2px;
  background: var(--red); vertical-align: middle;
  margin-right: 8px;
}
.redgrad {
  background: linear-gradient(120deg, #ff8080 0%, var(--red) 60%, #7a0000 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}

.blink { animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .3; } }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  transition: all .25s var(--easing);
  white-space: nowrap;
}
.btn.lg { padding: 16px 26px; font-size: 13px; }
.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(255,45,45,.6);
}
.btn-primary:hover {
  background: #ff4848;
  box-shadow: 0 8px 30px -8px rgba(255,45,45,.7), 0 0 0 4px rgba(255,45,45,.15);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--jet);
  border-color: var(--white);
}
.btn .arrow { transition: transform .25s var(--easing); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky; top: 0; z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 16px 44px;
  background: rgba(5,5,7,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  font-style: italic;
  letter-spacing: -.02em;
}
.brand-mark { width: 34px; height: 34px; flex: 0 0 34px; }
.brand-logo { height: 56px; width: auto; display: block; }
.brand-word { display: inline-flex; align-items: center; gap: 6px; }
.irl-tag {
  font-style: italic;
  font-size: 13px;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 1px 7px 2px;
  border-radius: 3px;
  letter-spacing: .04em;
}

.nav-links {
  display: flex; justify-content: center; gap: 28px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase;
}
.nav-links a { color: var(--muted); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--white); }
.nav-links a::before {
  content: '/ '; color: var(--red); opacity: 0;
  transition: opacity .2s;
}
.nav-links a:hover::before { opacity: 1; }

.nav-right {
  display: flex; align-items: center; gap: 16px;
}
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--red);
  border-radius: 999px;
  font-size: 10px; letter-spacing: .25em;
  color: var(--red);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 var(--red);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,45,45,.6); }
  70% { box-shadow: 0 0 0 10px rgba(255,45,45,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,45,0); }
}

.nav-cta-short { display: none; }
.nav-cta-full { display: inline; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
}
.lang-btn {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  padding: 7px 10px;
  cursor: pointer;
  transition: all .2s var(--easing);
  position: relative;
}
.lang-btn + .lang-btn { border-left: 1px solid var(--line-2); }
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,.04); }
.lang-btn.active {
  background: var(--red);
  color: var(--white);
}
.foot-lang { margin-top: 18px; }

@media (max-width: 980px) {
  .nav { grid-template-columns: auto auto; gap: 12px; padding: 14px 20px; }
  .nav-links { display: none; }
  .live-pill { display: none; }
}

/* ============================================================
   HUD BAR
   ============================================================ */

.hud-bar {
  display: flex; gap: 20px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 10px; letter-spacing: .25em;
  color: var(--muted-2);
  margin-bottom: 64px;
  align-items: center;
  flex-wrap: wrap;
}
.hud-bar .blink { color: var(--red); }
.hud-bar.tight { margin-bottom: 32px; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 30px 64px 80px;
  overflow: hidden;
}
@media (max-width: 760px) { .hero { padding: 20px 22px 60px; } }

.motion-lines {
  position: absolute; left: 0; top: 30%;
  display: flex; flex-direction: column; gap: 12px;
  pointer-events: none;
  opacity: .35;
}
.motion-lines span {
  display: block;
  height: 2px;
  width: 240px;
  background: linear-gradient(to right, transparent, var(--white));
  animation: dash 4s var(--easing) infinite;
}
.motion-lines span:nth-child(2) { width: 180px; animation-delay: .3s; background: linear-gradient(to right, transparent, var(--red)); }
.motion-lines span:nth-child(3) { width: 300px; animation-delay: .6s; }
.motion-lines span:nth-child(4) { width: 140px; animation-delay: .9s; background: linear-gradient(to right, transparent, var(--red)); }
.motion-lines span:nth-child(5) { width: 220px; animation-delay: 1.2s; }
.motion-lines span:nth-child(6) { width: 160px; animation-delay: 1.5s; }
@keyframes dash {
  0% { transform: translateX(-260px); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateX(120px); opacity: 0; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-copy .kicker { margin-bottom: 28px; }
.hero-copy h1 { margin-bottom: 28px; }
.hero-copy .lede { margin-bottom: 36px; }

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 22px;
  font-size: 11px; letter-spacing: .15em;
  color: var(--muted);
  text-transform: uppercase;
}

/* HERO CARD */
.hero-card {
  background: linear-gradient(180deg, #0c0c10 0%, #07070a 100%);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 40px 80px -40px rgba(0,0,0,.8),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.hero-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 30%, transparent 30%);
}
.card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 10px; letter-spacing: .2em;
  color: var(--muted-2);
}
.card-head .dots { display: inline-flex; gap: 4px; }
.card-head .dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); }
.card-head .dots i:first-child { background: var(--red); }
.card-body { padding: 22px 18px; }
.card-body .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.card-body .row:last-of-type { border-bottom: 0; }
.card-body .k {
  font-size: 11px; letter-spacing: .18em;
  color: var(--muted-2); text-transform: uppercase;
}
.card-body .v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  font-style: italic;
}
.card-body .v.big {
  font-size: 28px;
  color: var(--red);
}
.card-body .v .unit {
  font-family: var(--mono);
  font-size: 10px; font-style: normal; font-weight: 400;
  color: var(--muted-2);
  margin-left: 6px; letter-spacing: .15em;
}

.bars {
  display: flex; gap: 6px;
  margin: 18px 0;
  height: 48px; align-items: flex-end;
}
.bar {
  flex: 1; height: 100%;
  background: rgba(255,255,255,.04);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.bar i {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: var(--w);
  background: linear-gradient(to top, var(--red), #ff8080);
  animation: barPulse 2.4s ease-in-out infinite alternate;
}
.bar:nth-child(2) i { animation-delay: .3s; }
.bar:nth-child(3) i { animation-delay: .6s; }
.bar:nth-child(4) i { animation-delay: .9s; }
.bar:nth-child(5) i { animation-delay: 1.2s; }
@keyframes barPulse { from { transform: scaleY(.6); transform-origin: bottom; } to { transform: scaleY(1); } }

.quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.qsub {
  display: block;
  font-family: var(--mono); font-style: normal;
  font-size: 10px; letter-spacing: .18em;
  margin-top: 8px; color: var(--muted-2);
  text-transform: uppercase;
}

/* MARQUEE */
.marquee {
  margin-top: 72px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 36px;
  align-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  letter-spacing: -.02em;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  color: var(--white);
}
.marquee-track i {
  display: inline-block;
  color: var(--red);
  font-size: .5em;
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEAD
   ============================================================ */

.section-head {
  max-width: 880px;
  margin-bottom: 64px;
}
.section-head.center {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.section-head.center .kicker { justify-content: center; }
.section-head .kicker { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 22px; }

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  padding: 120px 64px;
  border-top: 1px solid var(--line);
}
@media (max-width: 760px) { .services { padding: 80px 22px; } }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
@media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }

.svc {
  padding: 44px 38px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .3s var(--easing);
  overflow: hidden;
}
.svc:nth-child(2n) { border-right: 0; }
.svc:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 760px) {
  .svc { border-right: 0; }
  .svc:last-child { border-bottom: 0; }
}

.svc::before {
  content: ''; position: absolute;
  left: 0; top: 0; width: 0; height: 2px;
  background: var(--red);
  transition: width .5s var(--easing);
}
.svc:hover::before { width: 100%; }
.svc:hover { background: linear-gradient(180deg, rgba(255,45,45,.04) 0%, transparent 100%); }

.svc-num {
  font-size: 11px; letter-spacing: .25em;
  color: var(--red);
  margin-bottom: 28px;
}
.svc h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: .98;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.svc.red h3 { font-style: italic; color: var(--red); }
.svc p {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 38ch;
  line-height: 1.6;
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none;
}
.svc-tags li {
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--muted);
}

a.svc { color: inherit; display: block; }
.svc-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  transition: letter-spacing .25s var(--easing);
}
.svc:hover .svc-link { letter-spacing: .32em; }

/* ============================================================
   PILLARS
   ============================================================ */

.pillars {
  padding: 120px 64px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255,45,45,.08), transparent 70%);
}
@media (max-width: 760px) { .pillars { padding: 80px 22px; } }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  background: linear-gradient(180deg, #0b0b0e 0%, #07070a 100%);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 28px 24px;
  position: relative;
  transition: transform .3s var(--easing), border-color .3s var(--easing);
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}
.p-num {
  font-size: 10px; letter-spacing: .25em;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.p-icon {
  width: 44px; height: 44px;
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 8px;
}
.p-icon svg { width: 26px; height: 26px; }
.pillar h4 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.pillar p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   STATS
   ============================================================ */

.stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  padding: 60px 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
}
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; padding: 40px 22px; gap: 30px; }
  .stats .divider { display: none; }
}
.stat {
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
  text-align: center;
}
.stat .num {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -.03em;
}
.stat .num em {
  font-style: italic;
  color: var(--red);
}
.divider {
  width: 1px; height: 60px;
  background: var(--line-2);
}

/* ============================================================
   CLIENTS
   ============================================================ */

.clients {
  padding: 120px 64px;
  border-top: 1px solid var(--line);
}
@media (max-width: 760px) { .clients { padding: 80px 22px; } }

.streamers {
  display: flex; flex-wrap: wrap; gap: 24px 28px;
  align-items: flex-end;
}
.streamer {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform .25s var(--easing);
}
.streamer:hover { transform: translateY(-6px); }
.streamer:nth-child(2n) { transform: translateY(-14px); }
.streamer:nth-child(3n) { transform: translateY(10px); }
.streamer:nth-child(2n):hover { transform: translateY(-22px); }
.streamer:nth-child(3n):hover { transform: translateY(2px); }

.avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1f, #0a0a0d);
  border: 2px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  color: var(--white);
  position: relative;
}
.avatar::after {
  content: ''; position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color .3s;
}
.streamer:hover .avatar::after { border-color: var(--red); }
.avatar::before { content: attr(data-init); }

.streamer span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================================
   CTA
   ============================================================ */

.cta {
  padding: 140px 64px;
  border-top: 1px solid var(--line);
  position: relative;
  background:
    radial-gradient(900px 500px at 50% 50%, rgba(255,45,45,.16), transparent 70%);
  overflow: hidden;
}
@media (max-width: 760px) { .cta { padding: 80px 22px; } }

.cta::before {
  content: ''; position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0,0,0,.4) 100%),
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,.015) 30px 31px);
  pointer-events: none;
}

.cta-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.cta-inner .hud-bar { justify-content: center; }
.cta-inner .display { margin-bottom: 28px; }
.cta-inner .lede { margin: 0 auto 40px; text-align: center; }

.cta-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 50px;
}
.cta-channels {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */

.foot {
  padding: 80px 64px 24px;
  border-top: 1px solid var(--line);
  background: var(--jet);
}
@media (max-width: 760px) { .foot { padding: 60px 22px 20px; } }

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}

.foot-brand p { margin-top: 16px; color: var(--muted-2); letter-spacing: .2em; }

.foot-col h5 {
  font-size: 10px; letter-spacing: .25em;
  color: var(--red);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.foot-col a {
  display: block;
  color: var(--muted);
  padding: 6px 0;
  font-size: 14px;
  transition: color .2s, transform .2s;
}
.foot-col a:hover { color: var(--white); transform: translateX(4px); }

.foot-bottom {
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: .25em;
  color: var(--muted-2);
  padding-top: 14px;
}
.foot-bottom .blink { color: var(--red); }

/* ============================================================
   MOBILE — consolidated pass
   ============================================================ */

@media (max-width: 640px) {
  /* Nav compact */
  .nav { padding: 11px 14px; gap: 8px; }
  .brand-mark { width: 26px; height: 26px; flex: 0 0 26px; }
  .brand-logo { height: 28px; }
  .brand { font-size: 14px; gap: 7px; }
  .brand-word { gap: 5px; }
  .irl-tag { font-size: 10px; padding: 1px 5px 2px; }
  .nav-right { gap: 8px; }
  .nav-cta-full { display: none; }
  .nav-cta-short { display: inline; }
  .nav-cta { padding: 8px 12px !important; font-size: 10px !important; letter-spacing: .1em !important; }

  /* HUD bar more compact */
  .hud-bar {
    gap: 10px 14px;
    font-size: 9px;
    letter-spacing: .18em;
    margin-bottom: 40px;
    padding: 8px 0;
  }
  .hud-bar.tight { margin-bottom: 24px; }

  /* Hero */
  .hero { padding: 20px 18px 50px; }
  .hero-copy .kicker { margin-bottom: 20px; font-size: 10px; }
  .hero-copy h1 { margin-bottom: 22px; font-size: clamp(2.1rem, 11vw, 3.4rem); }
  .hero-copy .lede { margin-bottom: 28px; font-size: .95rem; }
  .hero-cta { gap: 10px; margin-bottom: 28px; flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .hero-meta { gap: 10px 18px; font-size: 10px; }
  .hero-meta div { display: flex; align-items: center; }
  .motion-lines { display: none; }

  /* Hero card */
  .hero-card { margin-top: 8px; }
  .card-body { padding: 18px 16px; }
  .card-body .v { font-size: 16px; }
  .card-body .v.big { font-size: 24px; }
  .quote { font-size: 13px; }

  /* Marquee */
  .marquee { margin-top: 50px; padding: 14px 0; }
  .marquee-track { gap: 24px; font-size: clamp(1.4rem, 7vw, 2rem); }

  /* Section heads + body sections */
  .services, .pillars, .clients, .cta { padding-left: 18px; padding-right: 18px; }
  .services, .pillars, .clients { padding-top: 70px; padding-bottom: 70px; }
  .cta { padding-top: 80px; padding-bottom: 80px; }
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: clamp(2rem, 9vw, 3rem); }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; }
  .svc { padding: 32px 24px 30px; border-right: 0; }
  .svc:last-child { border-bottom: 0; }
  .svc h3 { font-size: 1.6rem; }
  .svc-num { margin-bottom: 20px; }
  .svc p { margin-bottom: 22px; }

  /* Pillars */
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pillar { padding: 22px 18px; }
  .pillar h4 { font-size: 14px; }
  .pillar p { font-size: 12px; }
  .p-icon { width: 38px; height: 38px; margin-bottom: 16px; }
  .p-icon svg { width: 22px; height: 22px; }

  /* Stats */
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 22px 12px;
    padding: 40px 18px;
  }
  .stats .divider { display: none; }
  .stat .num { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .stat .kicker { font-size: 9px; }

  /* Streamers */
  .streamers { gap: 18px 16px; justify-content: center; }
  .streamer { transform: none !important; }
  .streamer:hover { transform: translateY(-4px) !important; }
  .avatar { width: 64px; height: 64px; font-size: 17px; }
  .streamer span { font-size: 10px; }

  /* CTA */
  .cta-inner .display.giant { font-size: clamp(2.6rem, 13vw, 4.4rem); }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 36px; }
  .cta-actions .btn { justify-content: center; width: 100%; }
  .cta-channels { gap: 12px 22px; font-size: 10px; flex-direction: column; align-items: center; }

  /* Display giant override */
  .display.giant { line-height: .94; }
  .display em { display: inline; }

  /* Footer */
  .foot { padding: 50px 18px 18px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 36px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; align-items: center; }

  /* Reduce buttons */
  .btn { padding: 11px 16px; font-size: 11px; }
  .btn.lg { padding: 14px 20px; font-size: 12px; }
}

@media (max-width: 380px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(1.9rem, 10vw, 2.6rem); }
  .display em { font-size: inherit; }
}

/* Prevent horizontal overflow caused by long display lines + redline pseudo */
html, body { overflow-x: hidden; max-width: 100vw; }

/* ============================================================
   INNER PAGES — shared template
   ============================================================ */

.page-hero {
  position: relative;
  padding: 60px 64px 100px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(255,45,45,.12), transparent 70%),
    radial-gradient(600px 300px at 0% 100%, rgba(255,45,45,.06), transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px;
}
.page-hero .kicker { margin-bottom: 28px; }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.03em;
  margin-bottom: 28px;
}
.page-hero h1 em {
  font-style: italic;
  background: linear-gradient(95deg, #ffd5d5 0%, var(--red) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero .lede { max-width: 64ch; font-size: 1.05rem; margin-bottom: 36px; }
.page-hero .breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 24px;
}
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb i { color: var(--red); font-style: normal; }
@media (max-width: 640px) { .page-hero { padding: 40px 18px 70px; } }

.page-section {
  padding: 100px 64px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 640px) { .page-section { padding: 70px 18px; } }

.page-section h2.display {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  margin-bottom: 22px;
}
.page-section .lede { margin-bottom: 50px; }

/* Feature blocks */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 760px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  background: var(--jet);
  padding: 36px 32px;
  position: relative;
  transition: background .3s var(--easing);
}
.feat:hover { background: linear-gradient(180deg, rgba(255,45,45,.04), transparent); }
.feat .icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feat .icon svg { width: 22px; height: 22px; }
.feat h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.feat p { color: var(--muted); font-size: .95rem; line-height: 1.6; }

/* Process timeline */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 28px 22px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: linear-gradient(180deg, #0b0b0e 0%, #07070a 100%);
}
.step .step-n {
  font-family: var(--display); font-style: italic;
  font-size: 2.4rem; color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
}
.step h4 {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.step p { font-size: .85rem; color: var(--muted); line-height: 1.5; }

/* Two-column content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0;
}
.split-list li {
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
  display: flex; gap: 14px;
  align-items: baseline;
  font-size: 1rem;
}
.split-list li::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--red);
}
.split-list { counter-reset: item; }

/* Page CTA */
.page-cta {
  padding: 100px 64px;
  text-align: center;
  background: radial-gradient(800px 400px at 50% 50%, rgba(255,45,45,.12), transparent 70%);
}
@media (max-width: 640px) { .page-cta { padding: 70px 18px; } }
.page-cta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -.03em;
  line-height: .98;
  margin-bottom: 22px;
}
.page-cta h2 em {
  font-style: italic;
  background: linear-gradient(120deg, #ff8080 0%, var(--red) 60%, #7a0000 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-cta .lede { margin: 0 auto 36px; }
.page-cta .actions {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* Sub-services as cards */
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 760px) { .related-services { grid-template-columns: 1fr; } }
.related-card {
  display: block;
  padding: 24px 22px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: linear-gradient(180deg, #0b0b0e 0%, #07070a 100%);
  transition: border-color .25s, transform .25s;
}
.related-card:hover { border-color: var(--red); transform: translateY(-4px); }
.related-card .mono { font-size: 10px; color: var(--red); letter-spacing: .25em; }
.related-card h5 {
  font-family: var(--display);
  font-size: 1.1rem; font-weight: 800;
  margin: 8px 0 10px;
}
.related-card p { color: var(--muted); font-size: .85rem; }
.related-card .arrow {
  display: inline-block;
  margin-top: 14px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
}

/* Prose / privacy / about */
.prose {
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}
.prose h2, .prose h3 {
  font-family: var(--display);
  color: var(--white);
  margin-top: 50px;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.prose h2 { font-size: 1.8rem; }
.prose h3 { font-size: 1.3rem; }
.prose p { margin-bottom: 16px; }
.prose strong { color: var(--white); }
.prose ul { padding-left: 22px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 8px; }
.prose .updated {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Job opening cards */
.jobs { display: grid; gap: 14px; margin-top: 40px; }
.job {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: linear-gradient(180deg, #0b0b0e 0%, #07070a 100%);
  transition: border-color .2s, transform .2s;
}
.job:hover { border-color: var(--red); transform: translateY(-2px); }
.job h4 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.job .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
}
.job .meta i { color: var(--red); font-style: normal; margin: 0 8px; }
@media (max-width: 520px) {
  .job { grid-template-columns: 1fr; gap: 14px; }
}
