/* WRAP — Wolfsrudel Alpha Performance */

:root {
  --bg: #0A0A0F;
  --bg-2: #110A1F;
  --bg-3: #1a0f33;
  --ink: #FFFFFF;
  --muted: #9A92B3;
  --line: rgba(255,255,255,0.08);
  --purple: #7C3AED;
  --purple-d: #5B21B6;
  --gold: #D4AF37;
  --gold-h: #FFD700;
  --live: #FF2E4D;
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-sans: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --max: 1400px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Grain */
body::before {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; z-index: 999;
  opacity: .14; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ====== NAV ====== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(10,10,15,0.85), rgba(10,10,15,0));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 18px;
  letter-spacing: 0.12em; color: var(--gold);
}
.nav__wordmark {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 0.06em; line-height: 1;
  color: var(--ink);
  padding: 6px 10px 5px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(212,175,55,0.12), rgba(124,58,237,0.18));
  text-shadow: 0 0 18px rgba(212,175,55,0.35);
}
.nav__brand-text { display: inline-flex; align-items: baseline; gap: 6px; }
.nav__brand-text em { font-style: normal; color: var(--purple); font-size: 14px; }
@media (max-width: 520px) { .nav__brand-text { display: none; } }
.nav__links {
  display: flex; gap: 28px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-family: var(--font-mono);
}
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--gold); color: #0A0A0F;
  padding: 12px 20px; border-radius: 999px;
  border: 0; cursor: pointer;
  transition: transform .15s, box-shadow .2s;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.45);
}
@media (max-width: 860px) { .nav__links { display: none; } }

/* ====== HERO ====== */
.hero {
  position: relative; min-height: 100vh;
  padding: 140px var(--gutter) 100px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  overflow: hidden; isolation: isolate;
}
.hero__tagline { margin-left: auto; margin-right: auto; }
.hero__flags { justify-content: center; }
.hero__cta-row { justify-content: center; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(70% 60% at 50% 20%, rgba(124,58,237,0.85), transparent 65%),
    radial-gradient(45% 40% at 85% 85%, rgba(212,175,55,0.32), transparent 65%),
    radial-gradient(55% 55% at 5% 95%, rgba(91,33,182,0.75), transparent 65%),
    radial-gradient(35% 30% at 50% 100%, rgba(226,61,61,0.18), transparent 70%),
    linear-gradient(180deg, #050508 0%, #1a0a2e 45%, #0A0A0F 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(0,0,0,0.18) 2px 3px),
    repeating-linear-gradient(60deg, transparent 0 24px, rgba(212,175,55,0.04) 24px 25px);
  mix-blend-mode: overlay; pointer-events: none;
}
.hero__lines {
  position: absolute; inset: 0; z-index: -1;
  background:
    repeating-linear-gradient(115deg, transparent 0 36px, rgba(124,58,237,0.12) 36px 42px, transparent 42px 80px),
    repeating-linear-gradient(115deg, transparent 0 160px, rgba(212,175,55,0.18) 160px 164px, transparent 164px 320px),
    repeating-linear-gradient(-65deg, transparent 0 6px, rgba(255,255,255,0.018) 6px 7px);
  mask-image: linear-gradient(180deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 15%, black 85%, transparent);
}
.hero__lines::before, .hero__lines::after {
  content: ""; position: absolute; pointer-events: none;
}
.hero__lines::before {
  inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(226,61,61,0.10), transparent 35%),
    radial-gradient(circle at 78% 65%, rgba(212,175,55,0.14), transparent 40%);
  mix-blend-mode: screen;
}
.hero__lines::after {
  left: 0; right: 0; top: 18%; height: 14px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 22px, transparent 22px 44px);
  opacity: 0.10;
  mask-image: linear-gradient(90deg, transparent, black 40%, black 60%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 40%, black 60%, transparent);
}
.hero__logo-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  margin: 8px auto 0;
  width: 100%;
  max-width: 640px;
}
.hero__logo {
  position: relative; z-index: 2;
  width: min(560px, 80vw);
  height: auto;
  display: block;
  border-radius: 12px;
  filter:
    drop-shadow(0 0 60px rgba(124,58,237,0.55))
    drop-shadow(0 0 100px rgba(91,33,182,0.45))
    drop-shadow(0 24px 60px rgba(0,0,0,0.6));
}
.hero__logo-aura {
  position: absolute; inset: -10% -10% -10% -10%;
  z-index: 1; pointer-events: none;
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(212,175,55,0.35), transparent 65%),
    radial-gradient(70% 70% at 50% 50%, rgba(124,58,237,0.45), transparent 70%);
  filter: blur(20px);
  animation: heroAura 8s ease-in-out infinite;
}
@keyframes heroAura {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50%      { transform: scale(1.06); opacity: 1; }
}
.hero__pawprint {
  position: absolute; width: 90px; opacity: 0.18;
  pointer-events: none;
}
.hero__pawprint--1 { left: 5%; top: 22%; transform: rotate(-18deg); }
.hero__pawprint--2 { left: 11%; top: 58%; transform: rotate(14deg); width: 60px; opacity: 0.12; }

.hero__eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 28px;
}
.hero__eyebrow::before, .hero__eyebrow::after { content: ""; width: 48px; height: 1px; background: var(--gold); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(96px, 22vw, 380px);
  line-height: 0.82; letter-spacing: -0.04em;
  margin: 0; color: var(--gold);
  text-shadow: 0 0 1px var(--gold-h), 0 0 30px rgba(124,58,237,0.55), 0 0 80px rgba(124,58,237,0.35);
  position: relative;
}
.hero__title::after {
  content: "WRAP"; position: absolute; inset: 0;
  -webkit-text-stroke: 2px rgba(124,58,237,0.45);
  color: transparent; transform: translate(10px, 10px); z-index: -1;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.3vw, 18px);
  letter-spacing: 0.42em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin: 24px 0 0;
}
.hero__tagline {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.2; max-width: 720px;
  margin: 24px 0 0; color: var(--ink);
}
.hero__tagline em { font-style: normal; color: var(--gold); }

.hero__flags { display: flex; gap: 10px; margin: 32px 0 0; flex-wrap: wrap; }
.flag-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); backdrop-filter: blur(8px);
}
.flag-badge .swatch {
  display: inline-flex; width: 22px; height: 16px;
  border-radius: 2px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
}
.swatch--at { background: linear-gradient(180deg, #ED2939 0 33%, #fff 33% 66%, #ED2939 66%); }
.swatch--ch { position: relative; background: #DA291C; }
.swatch--ch::before, .swatch--ch::after { content: ""; position: absolute; background: #fff; }
.swatch--ch::before { left: 50%; top: 18%; bottom: 18%; width: 18%; transform: translateX(-50%); }
.swatch--ch::after { top: 50%; left: 18%; right: 18%; height: 18%; transform: translateY(-50%); }
.swatch--de { background: linear-gradient(180deg, #000 0 33%, #DD0000 33% 66%, #FFCE00 66%); }

.hero__cta-row {
  display: flex; gap: 16px; margin: 44px 0 0;
  flex-wrap: wrap; align-items: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; border: 0;
  transition: transform .15s, box-shadow .25s, background .2s, color .2s;
}
.btn--gold {
  background: var(--gold); color: #0A0A0F;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(212,175,55,0.5), 0 0 0 4px rgba(212,175,55,0.15);
  background: var(--gold-h);
}
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  border-color: var(--gold); color: var(--gold);
  box-shadow: 0 0 24px rgba(124,58,237,0.45);
}
.btn .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(255,46,77,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,46,77,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255,46,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,46,77,0); }
}

.hero__meta {
  position: absolute; left: var(--gutter); bottom: 36px;
  display: flex; gap: 32px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.hero__meta b { color: var(--gold); font-weight: 700; }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: 36px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted);
  writing-mode: vertical-rl;
}
@media (max-width: 720px) {
  .hero__meta, .hero__scroll { display: none; }
}

/* ====== DIAGONAL DIVIDER ====== */
.divider {
  display: none;
}
.divider--hidden {
  height: 64px; position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(115deg,
      var(--purple) 0 22px,
      var(--purple-d) 22px 44px,
      transparent 44px 88px);
}
.divider::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg), transparent 10%, transparent 90%, var(--bg));
}

/* ====== SECTION ====== */
.section {
  padding: 64px var(--gutter);
  max-width: var(--max); margin: 0 auto;
  position: relative;
}
.section__eyebrow {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 16px;
}
.section__eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--gold); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.9; letter-spacing: -0.02em;
  margin: 0; max-width: 14ch;
}
.section__title em {
  font-style: normal; color: var(--gold); position: relative; display: inline-block;
}
.section__title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 4px; background: var(--purple); border-radius: 2px;
}
.section__lede {
  max-width: 480px; font-size: 17px; line-height: 1.6; color: var(--muted);
}
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 64px; flex-wrap: wrap;
}

/* ====== RUDEL ====== */
.rudel {
  display: grid; grid-template-columns: 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 920px) { .rudel { grid-template-columns: 1fr; gap: 48px; } }
.rudel__copy p {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,0.82); margin: 0 0 20px;
}
.rudel__copy p strong { color: var(--gold); font-weight: 700; }
.rudel__pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 32px;
}
@media (max-width: 600px) { .rudel__pillars { grid-template-columns: 1fr; } }
.pillar {
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 22px 20px;
  background: rgba(255,255,255,0.02);
  transition: background .2s, transform .2s;
}
.pillar:hover { background: rgba(124,58,237,0.08); transform: translateY(-2px); }
.pillar__num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--gold); letter-spacing: 0.22em; margin-bottom: 10px;
}
.pillar__t {
  font-family: var(--font-display); font-size: 18px;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px;
}
.pillar__d { font-size: 13px; color: var(--muted); line-height: 1.5; }

.rudel__visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 6px; overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 40%, rgba(124,58,237,0.55), transparent 70%),
    linear-gradient(180deg, #1a0f33, #0A0A0F);
  border: 1px solid var(--line);
  display: flex; align-items: flex-end; padding: 32px;
}
.rudel__crest {
  position: relative; z-index: 2;
  width: 86%; height: auto;
  align-self: center; margin: auto;
  border-radius: 10px;
  filter:
    drop-shadow(0 0 50px rgba(124,58,237,0.55))
    drop-shadow(0 18px 50px rgba(0,0,0,0.6));
}
.rudel__aura {
  position: absolute; inset: 10%;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(124,58,237,0.55), transparent 70%),
    radial-gradient(40% 40% at 50% 50%, rgba(212,175,55,0.25), transparent 65%);
  filter: blur(24px);
  z-index: 1; pointer-events: none;
  animation: heroAura 7s ease-in-out infinite;
}
.rudel__visual .stamp {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold); padding: 8px 12px;
  border-radius: 2px; background: rgba(10,10,15,0.5);
}
.rudel__visual .ctaplate {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95; letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.rudel__visual .ctaplate em { font-style: normal; color: var(--gold); }

/* ====== DRIVERS ====== */
.drivers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.driver {
  position: relative; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(124,58,237,0.06), rgba(255,255,255,0.01));
  padding: 0 0 24px; overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.driver > :not(.driver__livery):not(.driver__num) { padding-left: 24px; padding-right: 24px; }
.driver__head { padding-top: 20px; }
.driver__livery {
  position: relative; aspect-ratio: 16/9; margin-bottom: 4px;
  border-bottom: 1px solid var(--line); overflow: hidden;
  background: #000;
}
.driver__livery image-slot::part(frame) { background: #000; }
.driver__livery image-slot { z-index: 0; }
.driver__livery .driver__livery-chip { z-index: 2; }
.driver__livery-chip {
  position: absolute; top: 10px; right: 12px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); padding: 4px 8px;
  background: rgba(10,10,15,0.55); border-radius: 2px;
  border: 1px solid rgba(212,175,55,0.35);
}
.driver:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 24px 50px rgba(124,58,237,0.3), 0 0 0 1px rgba(212,175,55,0.25) inset;
}
.driver::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--purple) 100%);
}
.driver__num {
  font-family: var(--font-display); font-size: 92px; line-height: 1;
  color: rgba(124,58,237,0.18);
  position: absolute; bottom: -16px; right: -4px;
  letter-spacing: -0.05em; pointer-events: none;
}
.driver__head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.driver__flag {
  width: 26px; height: 18px; border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
  overflow: hidden;
}
.driver__role {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-left: auto;
}
.driver__role.alpha {
  color: var(--bg); background: var(--gold);
  padding: 4px 8px; border-radius: 2px;
}
.driver__name {
  font-family: var(--font-display); font-size: 24px;
  letter-spacing: 0.02em; margin: 0; color: var(--ink);
}
.driver__handle {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--muted); margin: 4px 0 20px;
}
.driver__specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 20px; font-size: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px; position: relative; z-index: 1; margin: 0;
}
.driver__specs dt {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2px;
}
.driver__specs dd { margin: 0 0 8px; font-weight: 600; color: var(--ink); }
.driver__specs .driver__fav { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 10px; margin-top: 2px; }
.driver__specs .driver__fav dd { color: var(--gold); }

/* ====== STATS ====== */
.stats-section {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(124,58,237,0.18), transparent 60%),
    var(--bg);
  position: relative;
}
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  position: relative; padding: 36px 28px 32px;
  border: 1px solid rgba(212,175,55,0.35);
  background: linear-gradient(180deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
  overflow: hidden;
}
.stat::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 100%, rgba(212,175,55,0.18), transparent 70%);
  pointer-events: none;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1; color: var(--gold);
  letter-spacing: -0.03em;
  text-shadow: 0 0 30px rgba(212,175,55,0.35);
  position: relative;
}
.stat__label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-top: 14px;
  position: relative;
}
.stat__delta {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink); background: var(--purple);
  padding: 4px 8px; border-radius: 2px;
  letter-spacing: 0.1em;
}

/* ====== LIVE & SOCIAL ====== */
.live-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.live-grid > .channel--twitch { grid-row: span 2; }
@media (max-width: 1000px) {
  .live-grid { grid-template-columns: 1fr 1fr; }
  .live-grid > .channel--twitch { grid-row: span 1; grid-column: span 2; }
}
@media (max-width: 640px) {
  .live-grid { grid-template-columns: 1fr; }
  .live-grid > .channel--twitch { grid-column: span 1; }
}
.channel {
  position: relative; border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .2s;
}
.channel:hover { border-color: rgba(212,175,55,0.4); }
.channel__head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
}
.channel__icon {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-2); border-radius: 4px; color: var(--gold);
}
.channel__name {
  font-family: var(--font-display); font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.channel__handle {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--muted); margin-left: 4px;
}
.channel__status {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.channel__status.live {
  background: var(--live); color: #fff;
}
.channel__status.live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: pulse 1.5s infinite;
}
.channel__body { position: relative; flex: 1; min-height: 220px; }
.channel--twitch .channel__body { min-height: 380px; }
.instagram-widget {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 380px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}
.instagram-profile {
  display: flex;
  gap: 14px;
  align-items: center;
}
.instagram-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}
.instagram-account {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.instagram-description {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.instagram-card {
  min-height: 120px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.instagram-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,15,0.55));
}
.instagram-card--1 { background-image: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.instagram-card--2 { background-image: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)); }
.instagram-card--3 { background-image: linear-gradient(135deg, rgba(124,58,237,0.55), rgba(212,175,55,0.18)); }
.instagram-card--4 { background-image: linear-gradient(135deg, rgba(10,10,15,0.8), rgba(255,255,255,0.05)); }
.instagram-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.instagram-cta {
  justify-self: start;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background .2s, color .2s, transform .2s;
}
.instagram-cta:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-1px);
}

.embed-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 24px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 12px, transparent 12px 24px),
    linear-gradient(180deg, rgba(124,58,237,0.22), rgba(10,10,15,0.6));
}
.embed-placeholder .glyph {
  font-family: var(--font-display); font-size: 64px;
  color: var(--gold); margin-bottom: 12px;
  text-shadow: 0 0 24px rgba(212,175,55,0.5);
}
.embed-placeholder .caption {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); max-width: 36ch; line-height: 1.7;
}
.embed-placeholder .sub {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--muted); margin-top: 14px;
}

/* Twitch fake-stream visual */
.twitch-stream {
  position: absolute; inset: 0; overflow: hidden;
  background:
    radial-gradient(60% 80% at 70% 30%, rgba(124,58,237,0.6), transparent 70%),
    linear-gradient(180deg, #1a0f33 0%, #0A0A0F 100%);
}
.twitch-stream__track {
  position: absolute; left: 0; right: 0; bottom: 30%;
  height: 40%;
  overflow: hidden;
  transform: perspective(400px) rotateX(45deg);
}
.twitch-stream__track img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.twitch-stream__overlay {
  position: absolute; left: 16px; top: 16px;
  display: flex; gap: 8px;
}
.twitch-tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 2px;
  background: rgba(0,0,0,0.6); border: 1px solid var(--line);
  color: rgba(255,255,255,0.8);
}
.twitch-tag.red { background: var(--live); border-color: var(--live); color: #fff; }
.twitch-stream__title {
  position: absolute; left: 24px; bottom: 60px;
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 0.01em; max-width: 70%;
  text-shadow: 0 4px 16px rgba(0,0,0,0.7);
}
.twitch-stream__meta {
  position: absolute; left: 24px; bottom: 24px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.7);
}
.twitch-stream__meta b { color: var(--gold); font-weight: 700; }
.twitch-play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(212,175,55,0.95); color: #0A0A0F;
  display: grid; place-items: center;
  font-size: 26px;
  box-shadow: 0 12px 40px rgba(212,175,55,0.5);
  cursor: pointer; transition: transform .2s;
}
.twitch-play:hover { transform: translate(-50%, -50%) scale(1.08); }

/* YouTube card */
.youtube-list {
  display: flex; flex-direction: column;
  height: 100%;
}
.yt-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px; padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  cursor: pointer; transition: background .2s;
}
.yt-row:hover { background: rgba(124,58,237,0.08); }
.yt-row:last-child { border-bottom: 0; }
.yt-thumb {
  aspect-ratio: 16/9; border-radius: 3px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(212,175,55,0.18)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 6px, transparent 6px 12px);
}
.yt-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.yt-thumb::after {
  content: attr(data-dur);
  position: absolute; right: 4px; bottom: 4px;
  background: rgba(0,0,0,0.8); color: #fff;
  font-family: var(--font-mono); font-size: 9px;
  padding: 2px 4px; border-radius: 2px;
}
.yt-meta { display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.yt-title {
  font-family: var(--font-display); font-size: 13px;
  line-height: 1.3; letter-spacing: 0.01em;
}
.yt-sub {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; color: var(--muted);
}

/* Discord card */
.discord-widget {
  padding: 12px;
  display: flex; flex-direction: column; gap: 12px;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(124,58,237,0.35), transparent 70%),
    var(--bg);
  height: 100%;
  box-sizing: border-box;
}
.discord-widget__server { display: flex; align-items: center; gap: 12px; }
.discord-widget__avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--purple); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); color: var(--gold); font-size: 18px;
}
.discord-widget__servername { font-family: var(--font-display); font-size: 16px; }
.discord-widget__sub { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.discord-widget__online {
  font-family: var(--font-mono); font-size: 11px;
  color: #43B581;
  display: flex; align-items: center; gap: 8px;
}
.discord-widget__online::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #43B581; box-shadow: 0 0 8px #43B581;
}
.discord-widget__members { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.discord-member { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.discord-member__avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #D4AF37);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-family: var(--font-mono); font-weight: 700; color: #0A0A0F;
}
.discord-member__status { width: 8px; height: 8px; border-radius: 50%; background: #43B581; }
.discord-member__status.idle { background: #FAA61A; }
.discord-member__status.dnd { background: #F04747; }
.discord-widget__cta {
  margin-top: auto;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--purple); color: #fff;
  padding: 12px 16px; text-align: center; border-radius: 4px;
  transition: background .2s, color .2s; cursor: pointer;
}
.discord-widget__cta:hover { background: var(--gold); color: #0A0A0F; }

/* Make embedded Discord iframe responsive to its container */
.discord-widget iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* On smaller screens reduce min-height for better fit */
@media (max-width: 640px) {
  .discord-widget iframe { min-height: 220px; }
  .discord-widget { padding: 10px; }
}

/* Social mini-grid */
.social-feed {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; padding: 14px;
}
.social-feed .tile {
  aspect-ratio: 1;
  position: relative; cursor: pointer; transition: transform .2s;
  background-size: cover; background-position: center;
}
.social-feed .tile:hover { transform: scale(1.04); z-index: 1; }
.social-feed .tile::after {
  content: attr(data-tag);
  position: absolute; bottom: 4px; left: 6px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
.tile--1 { background:
  linear-gradient(135deg, rgba(124,58,237,0.6), rgba(212,175,55,0.2)),
  repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 6px, transparent 6px 12px); }
.tile--2 { background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.5), rgba(91,33,182,0.6)); }
.tile--3 { background:
  repeating-linear-gradient(90deg, rgba(124,58,237,0.5) 0 4px, transparent 4px 8px),
  linear-gradient(180deg, #1a0f33, #0A0A0F); }
.tile--4 { background:
  conic-gradient(from 200deg, rgba(124,58,237,0.6), rgba(212,175,55,0.4), rgba(124,58,237,0.6)); }
.tile--5 { background:
  radial-gradient(circle at 70% 70%, rgba(212,175,55,0.6), rgba(10,10,15,0.9)); }
.tile--6 { background:
  linear-gradient(45deg, rgba(124,58,237,0.5), rgba(10,10,15,0.8)),
  repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 3px, transparent 3px 6px); }

/* ====== SCHEDULE ====== */
.schedule {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.race {
  display: grid;
  grid-template-columns: 120px 1.4fr 1fr 100px auto;
  gap: 24px; align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .2s, padding .2s;
}
.race:hover {
  background: rgba(124,58,237,0.07);
  padding-left: 20px; padding-right: 20px;
}
.race:hover .race__cta { background: var(--gold); color: #0A0A0F; border-color: var(--gold); }
.race__date {
  font-family: var(--font-display); letter-spacing: -0.01em; line-height: 1;
}
.race__date .day {
  font-size: 44px; color: var(--gold); display: block;
}
.race__date .mo {
  font-size: 11px; letter-spacing: 0.2em; color: var(--muted);
  margin-top: 6px; text-transform: uppercase; font-family: var(--font-mono);
}
.race__series {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--purple); font-weight: 700; display: inline-block;
}
.race__title {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 0.01em; margin-top: 6px;
}
.race__track {
  font-family: var(--font-sans); font-size: 14px; color: var(--muted);
}
.race__track b { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }
.race__time { font-family: var(--font-mono); font-size: 14px; color: var(--ink); }
.race__cta {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 12px 18px; border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  cursor: pointer; color: var(--ink);
  transition: all .2s; white-space: nowrap;
}
@media (max-width: 900px) {
  .race { grid-template-columns: 90px 1fr; gap: 14px 20px; }
  .race__date { grid-row: span 4; }
  .race__time { grid-column: 2; }
  .race__cta { grid-column: 2; justify-self: start; }
}

/* ====== LIVERIES ====== */
.liveries {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .liveries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .liveries { grid-template-columns: 1fr; } }
.livery {
  position: relative; aspect-ratio: 16/10;
  border: 1px solid var(--line); overflow: hidden;
  background: linear-gradient(180deg, #1a0f33, #0A0A0F);
  cursor: pointer; transition: transform .25s, border-color .25s, box-shadow .25s;
}
.livery:hover {
  transform: translateY(-3px); border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(124,58,237,0.3);
}
.livery__pattern { position: absolute; inset: 0; }
.livery__num {
  position: absolute; bottom: -36px; left: 12px;
  font-family: var(--font-display); font-size: 220px;
  line-height: 1; color: rgba(255,255,255,0.06);
  pointer-events: none; letter-spacing: -0.05em;
}
.livery__tag {
  position: absolute; bottom: 18px; left: 22px;
  font-family: var(--font-display); font-size: 18px;
  letter-spacing: 0.02em; color: var(--ink); z-index: 2;
}
.livery__tag small {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 4px;
}
.livery__chip {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; background: rgba(10,10,15,0.6);
  border: 1px solid var(--line); padding: 4px 8px;
  color: var(--gold); z-index: 2;
}

/* livery pattern variants */
.lp--1 {
  background:
    linear-gradient(110deg, transparent 30%, var(--gold) 31% 33%, transparent 34%),
    linear-gradient(135deg, #5B21B6 0%, #0A0A0F 70%);
}
.lp--2 {
  background:
    repeating-linear-gradient(20deg, rgba(212,175,55,0.6) 0 10px, transparent 10px 28px),
    linear-gradient(180deg, #2c1465 0%, #0A0A0F 100%);
}
.lp--3 {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.5), transparent 60%),
    linear-gradient(180deg, #1a0f33 0%, #7C3AED 200%);
}
.lp--4 {
  background:
    linear-gradient(75deg, var(--bg) 50%, var(--purple) 51% 60%, var(--gold) 61% 64%, var(--bg) 65%);
}
.lp--5 {
  background:
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(212,175,55,0.1) 30px 31px),
    linear-gradient(180deg, #0A0A0F, #2c1465);
}
.lp--6 {
  background:
    radial-gradient(circle at 30% 60%, var(--purple) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, var(--gold) 0%, transparent 40%),
    linear-gradient(180deg, #0A0A0F, #14081f);
}

/* ====== FOOTER ====== */
.footer {
  position: relative; background: #050308;
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--line);
}
.footer__top {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }
.footer__logo {
  width: 140px; height: 140px;
  border-radius: 10px;
  display: block;
  filter: drop-shadow(0 0 24px rgba(124,58,237,0.4));
}
.footer__brand p {
  font-size: 14px; color: var(--muted);
  max-width: 32ch; margin-top: 16px; line-height: 1.6;
}
.footer__col h4 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color .2s; }
.footer__col a:hover { color: var(--gold); }

.footer__sponsors {
  max-width: var(--max); margin: 0 auto 32px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
@media (max-width: 800px) { .footer__sponsors { grid-template-columns: repeat(3, 1fr); } }
.sponsor-slot {
  aspect-ratio: 3 / 1.2;
  border: 1px dashed rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  background: rgba(255,255,255,0.015);
  transition: border-color .2s, color .2s;
}
.sponsor-slot:hover { border-color: var(--gold); color: var(--gold); }

.footer__bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  flex-wrap: wrap; gap: 16px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--ink);
  transition: all .2s;
}
.footer__socials a:hover {
  background: var(--gold); color: #0A0A0F; border-color: var(--gold);
}


/* ====== JOIN THE PACK MODAL ====== */
.join {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
  transition: opacity .25s ease;
}
.join[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.join__backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(124,58,237,0.35), transparent 60%),
    rgba(5,5,8,0.78);
  backdrop-filter: blur(10px);
}
.join__panel {
  position: relative;
  width: min(720px, 92vw); max-height: 92vh; overflow-y: auto;
  background: linear-gradient(180deg, #15101e 0%, #0a0a0f 100%);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 40px 44px 36px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,175,55,0.08) inset;
  transform: translateY(12px); transition: transform .3s ease;
}
.join[aria-hidden="false"] .join__panel { transform: translateY(0); }
.join__close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px;
  background: transparent; border: 1px solid var(--line);
  color: var(--muted); font-size: 22px; line-height: 1;
  cursor: pointer; border-radius: 2px;
  transition: color .2s, border-color .2s;
}
.join__close:hover { color: var(--gold); border-color: var(--gold); }

.join__eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 14px;
}
.join__title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 44px);
  line-height: 1; margin: 0 0 12px; color: var(--ink);
  letter-spacing: -0.01em;
}
.join__title em { font-style: normal; color: var(--gold); }
.join__lede {
  color: var(--muted); margin: 0 0 28px; font-size: 14px; line-height: 1.6;
  max-width: 56ch;
}

.join__form { display: flex; flex-direction: column; gap: 16px; }
.join__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 560px) { .join__row { grid-template-columns: 1fr; } }

.join__field { display: flex; flex-direction: column; gap: 6px; }
.join__field > span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.join__field > span small {
  font-size: 9px; text-transform: none; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35); margin-left: 4px;
}
.join__field input,
.join__field select,
.join__field textarea {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-sans); font-size: 14px;
  padding: 12px 14px; border-radius: 2px;
  transition: border-color .2s, background .2s;
  width: 100%; box-sizing: border-box;
}
.join__field textarea { font-family: var(--font-sans); resize: vertical; min-height: 92px; }
.join__field select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.join__field input:focus,
.join__field select:focus,
.join__field textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(212,175,55,0.04);
}
.join__field .is-error { border-color: #e23d3d; }

.join__chips {
  border: 1px solid var(--line); padding: 14px 16px 12px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.join__chips legend {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); padding: 0 8px;
}
.join__chips label {
  cursor: pointer; position: relative;
}
.join__chips label input { position: absolute; opacity: 0; pointer-events: none; }
.join__chips label span {
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  border-radius: 2px;
  transition: all .2s;
}
.join__chips label:hover span { color: var(--ink); border-color: rgba(212,175,55,0.4); }
.join__chips label input:checked + span {
  color: var(--bg); background: var(--gold); border-color: var(--gold);
  font-weight: 700;
}

.join__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-top: 12px; flex-wrap: wrap;
}
.join__legal {
  font-size: 11px; color: var(--muted); line-height: 1.5;
  margin: 0; max-width: 42ch;
}
.join__legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.join__legal strong { color: var(--ink); font-weight: 700; }
.join__submit { flex-shrink: 0; }

.join__success {
  text-align: center; padding: 20px 0 8px;
}
.join__success h3 {
  font-family: var(--font-display); font-size: 28px;
  margin: 0 0 12px; color: var(--ink);
}
.join__success p { color: var(--muted); font-size: 14px; line-height: 1.6; }
