/* ============================================================
   VOLT — shared brand design system
   Imported by every site under /sites. Poly-deploy safe:
   each site copies or symlinks this at build; in dev it's
   referenced by relative path.
   ============================================================ */

/* ---- Fonts (self-hostable later; CDN link in each page head) ---- */

:root {
  /* Core brand */
  --volt: #c6ff00;          /* Nike-volt neon — the one shared accent */
  --volt-dim: #9ec700;
  --ink: #0a0a0f;           /* near-black base */
  --ink-2: #12121b;
  --ink-3: #1b1b28;
  --paper: #f4f4f8;
  --muted: #9a9ab0;
  --muted-2: #6c6c82;
  --line: rgba(255,255,255,0.09);

  /* Type — Archivo (tight premium grotesque) for display, Inter (invisible UI) for body.
     Deliberately NOT Orbitron/techno-fonts: those read as free-Google-Font game cliché.
     The custom neon game logos carry the "gamer" character; everything else stays clean. */
  --display: "Archivo", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --wrap: 1080px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
section { position: relative; }

/* ---- Wordmark ---- */
.volt-mark {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.05em;
}
.volt-mark .bolt { color: var(--volt); }

/* ---- Buttons ---- */
.btn {
  --btn-bg: var(--volt);
  --btn-fg: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  box-shadow: 0 0 0 rgba(198,255,0,0);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px var(--btn-bg); }
.btn.ghost {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  border-color: var(--line);
}
.btn.ghost:hover { border-color: var(--volt); box-shadow: none; color: var(--volt); }

/* ---- Eyebrow / kicker ---- */
.kicker {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--volt);
  margin: 0 0 18px;
}

/* ---- Headings ---- */
h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.02; margin: 0; letter-spacing: -0.02em; }
.h-xl { font-size: clamp(2.9rem, 7.5vw, 5.8rem); font-weight: 900; letter-spacing: -0.035em; line-height: 0.96; }
.h-lg { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; }
.lede { font-size: clamp(1.12rem, 2.1vw, 1.4rem); color: var(--muted); max-width: 46ch; line-height: 1.55; }

/* ---- Email capture ---- */
.capture { display: flex; gap: 10px; flex-wrap: wrap; max-width: 460px; }
.capture input {
  flex: 1 1 220px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  color: var(--paper);
  border-radius: 999px;
  padding: 14px 20px;
  font-family: var(--body);
  font-size: 1rem;
  min-width: 0;
}
.capture input:focus { outline: none; border-color: var(--volt); }
.capture input::placeholder { color: var(--muted-2); }

/* ---- Footer ---- */
.site-foot {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  color: var(--muted-2);
  font-size: 0.85rem;
}
.site-foot a:hover { color: var(--volt); }

/* ---- Culture primitives (shared across all sites) ---- */
.fx { position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0 2px, rgba(0,0,0,.06) 2px 3px);
  mix-blend-mode: multiply; opacity: .5; }

.sec { position: relative; z-index: 2; padding: 100px 0; }
.sec-eyebrow { font-family: var(--display); font-weight: 800; font-size: .72rem; letter-spacing: .32em; text-transform: uppercase; color: var(--volt); margin: 0; }
.sec-title { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: .95; letter-spacing: -0.03em; margin: 14px 0 0; }

/* Marquee ticker — page sets background + text color for its accent */
.marquee { position: relative; z-index: 4; border-block: 1px solid var(--line); overflow: hidden; }
.marquee .track { display: flex; white-space: nowrap; width: max-content; animation: volt-scroll 26s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.marquee span { font-family: var(--display); font-weight: 900; font-size: 1.15rem; letter-spacing: .02em; text-transform: uppercase; padding: 14px 0; }
.marquee .dot { padding: 14px 22px; }
@keyframes volt-scroll { to { transform: translateX(-50%); } }

/* Stat row with swagger */
.stat-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
@media (max-width: 760px) { .stat-row { grid-template-columns: repeat(2, 1fr); gap: 34px; } }
.stat .n { font-family: var(--display); font-weight: 900; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; color: var(--volt); }
.stat .l { font-family: var(--display); font-weight: 700; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ---- Utility ---- */
.grain::after {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* Above-the-fold hero content must render instantly, never wait on scroll-reveal */
.hero .reveal, header.hero .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
