/* ============================================================
   TOKENS — dark, tech-forward brand (deliberate single-theme:
   an engineering studio's own brand identity, not OS-adaptive)
   ============================================================ */
:root{
  --bg: oklch(0.165 0.018 254);
  --bg-raised: oklch(0.235 0.035 240);
  --bg-sunken: oklch(0.13 0.014 258);
  --surface: oklch(0.6 0.07 224 / 0.12);
  --surface-hover: oklch(0.64 0.09 224 / 0.19);
  --border: oklch(0.72 0.09 224 / 0.24);
  --border-strong: oklch(0.76 0.12 224 / 0.4);
  --text: oklch(0.96 0.006 258);
  --text-dim: oklch(0.745 0.014 258);
  --text-faint: oklch(0.52 0.012 258);
  --accent: oklch(0.78 0.13 224);
  --accent-ink: oklch(0.17 0.03 224);
  --accent-2: oklch(0.62 0.125 302);
  --danger: oklch(0.68 0.19 25);
  --good: oklch(0.75 0.15 150);

  --font-display: 'Caveat', cursive;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;

  --container: 1760px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  color-scheme: dark;
}

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

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  /* The same diagonal teal -> navy -> violet wash on every page, fixed so
     it reads as one continuous atmosphere behind the content rather than
     a flat solid color, instead of scrolling with each section. */
  background: linear-gradient(135deg,
    oklch(0.36 0.12 195) 0%,
    oklch(0.36 0.12 195) 28%,
    oklch(0.15 0.025 250) 42%,
    oklch(0.15 0.025 250) 58%,
    oklch(0.29 0.11 320) 72%,
    oklch(0.29 0.11 320) 100%) fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-inline: var(--gutter);
}
img, svg{ max-width: 100%; display: block; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
p{ margin: 0; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea{ font: inherit; color: inherit; }
::selection{ background: var(--accent); color: var(--accent-ink); }

a.link-underline{
  color: var(--accent);
  border-bottom: 1px solid oklch(0.78 0.13 224 / 0.4);
  transition: color .15s ease, border-color .15s ease;
}
a.link-underline:hover{ color: var(--text); border-color: var(--text); }

:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link{
  position: fixed; top: -60px; left: 12px; z-index: 200;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 500;
  transition: top .15s ease;
}
.skip-link:focus{ top: 12px; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.wrap{ max-width: var(--container); margin-inline: auto; }
.section{ padding-block: clamp(56px, 8vw, 128px); }
.section-tight{ padding-block: clamp(40px, 5vw, 72px); }
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 14.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dim);
}
.eyebrow::before{
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.grid{ display: grid; gap: 24px; }
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4{ grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 980px){
  .grid-4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}
.stack{ display: flex; flex-direction: column; }
.row{ display: flex; align-items: center; }
.divider{ border: none; border-top: 1px solid var(--border); margin: 0; }

/* blueprint grid backdrop, used behind hero-like moments */
.blueprint{
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(oklch(0.75 0.13 224 / 0.12) 1px, transparent 1px),
    linear-gradient(90deg, oklch(0.75 0.13 224 / 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 1000px 620px at 50% 20%, black, transparent 75%);
}
.glow{
  position: absolute; border-radius: 50%; filter: blur(4px);
  background: radial-gradient(circle, oklch(0.74 0.17 224 / 0.6), oklch(0.56 0.13 285 / 0.22) 55%, transparent 75%);
  animation: pulseGlow 6s ease-in-out infinite;
}
/* Softer, smaller variant for spots where the full-strength glow feels
   like it's floating disconnected from the content near it. */
.glow.glow-subtle{
  filter: blur(14px);
  opacity: .32;
  animation: none;
}
@keyframes pulseGlow{ 0%,100%{ opacity:.45; } 50%{ opacity:.85; } }
@keyframes fadeUp{ from{ opacity:0; transform: translateY(22px);} to{ opacity:1; transform:none; } }
@keyframes bob{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(8px);} }

[data-hero-anim]{ animation: fadeUp .8s ease both; }

[data-reveal]{
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; }
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
#scroll-progress{
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--accent); z-index: 100;
  transition: width .1s linear;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header{
  position: sticky; top: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 22px;
  background: oklch(0.165 0.018 254 / 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand{
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.brand-mark{
  width: 11px; height: 11px; border-radius: 3px; background: var(--accent);
  flex-shrink: 0;
}
.nav-links{ display: flex; align-items: center; gap: 30px; }
.nav-links a{
  font-family: 'Caveat', var(--font-display), cursive;
  font-weight: 700; font-size: 25px; color: var(--text-dim);
  padding-block: 4px; border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover{ color: var(--text); }
.nav-links a.is-active{ color: var(--text); border-color: var(--accent); }
/* Contact renders as a button (.btn) rather than a plain nav-link, but
   keeps the same cursive treatment so it still matches the rest of the row. */
.nav-links a.btn{ font-family: 'Caveat', var(--font-display), cursive; font-weight: 700; font-size: 19px; }
.nav-right{ display: flex; align-items: center; gap: 28px; }
.menu-toggle{ display: none; padding: 8px; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after{
  content: ""; display: block; width: 22px; height: 2px; background: var(--text);
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span::before{ position:absolute; top:-7px; }
.menu-toggle span::after{ position:absolute; top:7px; }

#mobile-menu{
  display: none; position: fixed; inset: 0; z-index: 95;
  background: linear-gradient(135deg,
    oklch(0.36 0.12 195) 0%,
    oklch(0.36 0.12 195) 28%,
    oklch(0.15 0.025 250) 42%,
    oklch(0.15 0.025 250) 58%,
    oklch(0.29 0.11 320) 72%,
    oklch(0.29 0.11 320) 100%) fixed;
  padding: 100px var(--gutter) 40px;
  flex-direction: column; gap: 4px;
}
#mobile-menu.is-open{ display: flex; }
#mobile-menu a{
  font-family: 'Caveat', var(--font-display), cursive; font-weight: 700;
  font-size: 38px; padding-block: 16px;
  border-bottom: 1px solid var(--border); color: var(--text);
}
#mobile-menu a.is-active{ color: var(--accent); }

@media (max-width: 860px){
  .nav-links{ display: none; }
  .nav-right .btn-outline{ display: none; }
  .menu-toggle{ display: flex; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 8px; font-size: 16.5px; font-weight: 500;
  white-space: nowrap; transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
}
.btn:active{ transform: scale(0.97); }
.btn-solid{ background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--accent-ink); }
.btn-solid:hover{ background: linear-gradient(135deg, var(--accent-2), var(--accent)); }
.btn-outline{ border: 1px solid var(--border-strong); color: var(--text); }
.btn-outline:hover{ border-color: var(--text); }
.btn-ghost{ color: var(--text-dim); }
.btn-ghost:hover{ color: var(--text); }
.btn-sm{ padding: 10px 18px; font-size: 15.5px; }
.btn[disabled]{ opacity: .5; cursor: not-allowed; }

/* ============================================================
   CARDS / CHIPS / TAGS
   ============================================================ */
.card{
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); backdrop-filter: blur(6px);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
  overflow: hidden;
}
.card::before{
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
a.card:hover, button.card:hover{
  border-color: var(--border-strong); background: var(--surface-hover);
  transform: translateY(-3px);
}
.thumb{
  aspect-ratio: 16/10; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, oklch(0.4 0.1 224 / .5), oklch(0.32 0.1 285 / .5));
  position: relative; overflow: hidden;
}
.thumb::after{
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(oklch(1 0 0/.06) 1px, transparent 1px), linear-gradient(90deg, oklch(1 0 0/.06) 1px, transparent 1px);
  background-size: 22px 22px;
}
.tag{
  font-family: var(--font-mono); font-size: 13.5px; letter-spacing: .03em;
  color: var(--accent); border: 1px solid oklch(0.78 0.13 224 / 0.35); border-radius: 999px;
  padding: 5px 11px; text-transform: uppercase;
}
.chip{
  font-size: 15.5px; padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--text-dim);
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.chip.is-active, .chip:hover{ color: var(--text); border-color: var(--border-strong); background: var(--surface); }

.stat-value{
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 4vw, 44px); font-weight: 500;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label{ font-size: 15.5px; color: var(--text-faint); margin-top: 6px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee{
  overflow: hidden; border-block: 1px solid var(--border);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track{
  display: flex; gap: 64px; width: max-content;
  animation: marquee 28s linear infinite;
  padding-block: 26px;
}
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
.marquee-track span{
  font-family: var(--font-mono); font-size: 16px; color: var(--text-faint);
  letter-spacing: .04em; white-space: nowrap;
}

/* ============================================================
   FORMS
   ============================================================ */
.field{ display: flex; flex-direction: column; gap: 8px; }
.field label{ font-size: 15px; color: var(--text-dim); }
.field input, .field select, .field textarea{
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 13px 14px; color: var(--text);
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--accent); outline: none;
}
.form-note{ font-size: 15px; color: var(--text-faint); }
.char-counter{ font-size: 14px; color: var(--text-faint); align-self: flex-end; }

/* ============================================================
   COMMUNITY MESSAGE BOARD (messages/index.html)
   ============================================================ */
.message-card{ padding: 22px; }
.message-text{ font-size: 17px; line-height: 1.6; color: var(--text); }
.message-author{ margin-top: 14px; font-size: 15px; color: var(--text-dim); font-family: var(--font-display); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer{
  border-top: 1px solid var(--border); padding-block: 56px 40px;
}
.footer-top{ display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-cols{ display: flex; gap: 72px; flex-wrap: wrap; }
.footer-col{ display: flex; flex-direction: column; gap: 12px; min-width: 140px; }
.footer-col h4{ font-size: 15px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-mono); font-weight: 400; }
.footer-col a{ font-size: 16.5px; color: var(--text-dim); }
.footer-col a:hover{ color: var(--text); }
.footer-bottom{
  display: flex; justify-content: space-between; margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--border); font-size: 15px; color: var(--text-faint);
  flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   PAGE: shared header pattern (used by list-type pages)
   ============================================================ */
.page-head{
  position: relative; overflow: hidden;
  padding-block: clamp(64px, 9vw, 112px) 32px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
}
.page-head h1{ font-size: clamp(38px, 5vw, 58px); margin-top: 16px; max-width: 720px; }

/* Recurring "flow" motif — the same soft light-blue glow + blueprint grid
   as the homepage hero, echoed at the top of every other page so the
   brand reads as one system rather than a home page plus plain interiors. */
.post-head{
  position: relative; overflow: hidden;
  padding-block: clamp(56px, 8vw, 96px) 8px;
}
.head-content{ position: relative; z-index: 2; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero{ position: relative; overflow: hidden; padding-block: clamp(72px, 11vw, 128px) 0; }
.hero-inner{ position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero h1{
  font-size: clamp(40px, 6.4vw, 84px); margin-block: 26px 22px; max-width: 980px;
}
.hero .accent-text{
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede{ font-size: clamp(16px, 1.6vw, 19px); color: var(--text-dim); max-width: 620px; margin-bottom: 34px; }
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.scroll-cue{
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 14px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-faint); margin-block: 56px 0;
}
.scroll-cue svg{ animation: bob 1.8s ease-in-out infinite; }

/* ============================================================
   PAGE: streamers — directory, communities, featured player
   ============================================================ */
.filter-row{ display: flex; gap: 10px; flex-wrap: wrap; }
/* The one full-width, autoplaying featured player. */
.featured-player{
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius-md); overflow: hidden; background: var(--bg-sunken);
}
.featured-player iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.featured-meta-row{
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 16px; flex-wrap: wrap;
}
.featured-handle{ font-family: var(--font-display); font-size: 22px; }

/* Static thumbnail cards — everyone except the featured player. No live
   embed here on purpose: this is a cheap, static "screenshot", not a
   player, so a page with 50+ streamers doesn't load 50 video players. */
.streamer-card{ padding: 14px 14px 18px; display: flex; flex-direction: column; gap: 12px; }
.stream-thumb{
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-sm);
  background: var(--bg-sunken); overflow: hidden;
}
.stream-thumb-img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stream-thumb-fallback{
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  gap: 8px; color: var(--text-faint); font-size: 14.5px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em;
  background: linear-gradient(150deg, oklch(1 0 0 / .05), transparent 70%);
}
.stream-thumb-fallback.kick{ color: oklch(0.8 0.14 140); }
.kick-mark{ width: 8px; height: 8px; border-radius: 2px; background: oklch(0.72 0.19 140); flex-shrink: 0; }
.stream-preview-placeholder{
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; color: var(--text-faint); font-size: 14.5px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em;
  background: linear-gradient(150deg, oklch(1 0 0 / .04), transparent 70%);
}
.status-badge{
  position: absolute; top: 10px; left: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: .05em;
  padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(4px);
  background: oklch(0 0 0 / .5); color: var(--text-dim);
}
.status-badge .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--text-faint); flex-shrink: 0; }
.status-badge.is-live{ color: oklch(0.97 0.01 25); }
.status-badge.is-live .dot{ background: oklch(0.62 0.22 25); animation: pulseGlow 1.6s ease-in-out infinite; }
.platform-badge{
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em;
  padding: 5px 9px; border-radius: 6px; backdrop-filter: blur(4px);
}
.platform-badge.twitch{ background: oklch(0.5 0.19 305 / .55); color: oklch(0.94 0.03 305); }
.platform-badge.kick{ background: oklch(0.55 0.2 140 / .5); color: oklch(0.95 0.05 140); }
.streamer-meta{ display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-inline: 4px; }
.streamer-handle{ font-family: var(--font-display); font-size: 18px; }
.platform-label{ font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-faint); flex-shrink: 0; }
.streamer-actions{ padding-inline: 4px; }
.streamer-actions a{
  display: inline-flex; align-items: center; gap: 6px; font-size: 15px;
  color: var(--text-dim); border-bottom: 1px solid var(--border);
}
.streamer-actions a:hover{ color: var(--text); border-color: var(--border-strong); }

/* Community directory cards on streamers/index.html */
/* Fills the same row width as the featured player below it, no matter
   how many communities there are — 2 split the row in half, 4 make four
   even columns, and it wraps to a new row once cards get too narrow. */
.community-directory-grid{ grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.community-card{ padding: 26px; display: block; }
.community-card h3{ font-size: 20px; }

/* "About this community" + join link, shown just below the h1 on each
   community's own page (streamers/<slug>.html). */
.community-about{ margin-top: 20px; max-width: 640px; }
.community-about-text{ color: var(--text-dim); font-size: 17.5px; line-height: 1.6; margin-bottom: 16px; }
.community-join-link{ display: inline-flex; }

.prose{ max-width: 720px; font-size: 17px; line-height: 1.75; color: var(--text-dim); }
.prose p + p{ margin-top: 20px; }
.prose h3{ font-size: 22px; color: var(--text); margin-top: 40px; margin-bottom: 12px; }
.pull-quote{
  font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 30px); line-height: 1.4;
  max-width: 780px; padding-left: 24px; border-left: 2px solid var(--accent); margin-block: 48px;
}

/* ============================================================
   PAGE: services
   ============================================================ */
.service-row{
  display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 40px;
  padding-block: 36px; border-top: 1px solid var(--border);
}
.service-row:last-of-type{ border-bottom: 1px solid var(--border); }
.service-row h3{ font-size: 24px; }
.service-tags{ display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
@media (max-width: 780px){ .service-row{ grid-template-columns: 1fr; } }

/* ============================================================
   PAGE: about
   ============================================================ */
.value-card{ padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.value-num{ font-family: var(--font-mono); color: var(--text-faint); font-size: 15px; }
.avatar{
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-md); margin-bottom: 16px;
  background: linear-gradient(150deg, oklch(0.55 0.15 224 / .6), oklch(0.4 0.12 300 / .6));
}

/* ============================================================
   PAGE: journal
   ============================================================ */
.journal-card{ padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.journal-meta{ font-family: var(--font-mono); font-size: 14.5px; color: var(--text-faint); display: flex; gap: 16px; }
.journal-title{ font-family: var(--font-display); font-size: 21px; }
.journal-excerpt{ font-size: 16.5px; color: var(--text-dim); }
.article-head{ max-width: 760px; }
.article-head h1{ font-size: clamp(32px, 4.4vw, 48px); margin-block: 18px 16px; }
.article-meta{ font-family: var(--font-mono); font-size: 15px; color: var(--text-faint); display: flex; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   PAGE: contact
   ============================================================ */
.contact-grid{ display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; }
@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-detail{ display: flex; flex-direction: column; gap: 28px; }
.contact-detail h4{ font-family: var(--font-mono); font-size: 14.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-faint); margin-bottom: 8px; }
.contact-detail .value{ font-size: 18px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner{
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--bg-raised), var(--bg-sunken));
  padding: clamp(40px, 6vw, 72px); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  position: relative; overflow: hidden;
}
.cta-banner h2{ font-size: clamp(28px, 3.6vw, 42px); max-width: 640px; }

/* Home's "see who's live" teaser card (replaces a full featured grid —
   the one full-width featured player now lives only on the Streamers page) */
.live-teaser{
  padding: 32px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
