/* VELOCITY GP // landing surface
   Shared chrome for the acquisition pages. Same broadcast language as the
   game front-end: skewed neon type, cyan/magenta/yellow, scanline grid,
   Orbitron for display, Rajdhani for body. Every page funnels to /play. */

:root {
  --bg: #05030f;
  --panel: rgba(8, 14, 38, 0.62);
  --panel-2: rgba(3, 6, 18, 0.5);
  --cyan: #36e0ff;
  --magenta: #ff20a0;
  --yellow: #ffe96e;
  --green: #6effc2;
  --ink: #d8f6ff;
  --muted: #6ea8c4;
  --line: rgba(0, 220, 255, 0.26);
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 233, 110, 0.045) 0 2px, transparent 2px 34px),
    linear-gradient(180deg, rgba(127, 212, 238, 0.04) 0 1px, transparent 1px 30px),
    radial-gradient(ellipse at 50% -10%, rgba(20, 40, 90, 0.55), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: 'Rajdhani', "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}

.display { font-family: 'Orbitron', 'Rajdhani', sans-serif; }

a { color: var(--cyan); text-decoration: none; transition: color 0.15s; }
a:hover { color: #ffd2ec; }

.wrap { width: min(var(--maxw), 92vw); margin: 0 auto; }

/* --- top broadcast bar ----------------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 4, 17, 0.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: 62px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .badge {
  border: 2px solid var(--cyan); padding: 4px 10px; transform: skewX(-8deg);
  font-family: 'Orbitron', sans-serif; font-size: 12px; font-weight: 900;
  letter-spacing: 3px; color: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 200, 255, 0.3), inset 0 0 8px rgba(0, 200, 255, 0.12);
}
.brand .name {
  font-family: 'Orbitron', sans-serif; font-weight: 900; font-style: italic;
  font-size: 18px; letter-spacing: 2px; color: #fff;
  text-shadow: 0 0 16px rgba(0, 220, 255, 0.55);
}
.brand .name span { color: var(--cyan); }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 8px 14px; color: #7fa8c4; font-weight: 800; letter-spacing: 2px;
  font-size: 13px; border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: #fff; border-bottom-color: rgba(54, 224, 255, 0.5); }
.site-nav a.current { color: #fff; border-bottom-color: var(--cyan); }
.nav-play {
  margin-left: 6px; padding: 9px 18px !important;
  background: rgba(255, 233, 110, 0.14); border: 1px solid rgba(255, 233, 110, 0.9);
  color: var(--yellow) !important; transform: skewX(-8deg);
  border-bottom: 1px solid rgba(255, 233, 110, 0.9) !important;
}
.nav-play:hover { background: rgba(255, 233, 110, 0.26); color: #fff !important; }
.nav-toggle { display: none; }

/* --- section scaffolding --------------------------------------------------- */
.kicker {
  font-family: 'Orbitron', sans-serif; font-size: 13px; font-weight: 900;
  letter-spacing: 6px; color: #7fd4ee;
}
.section { padding: 84px 0; position: relative; }
.section + .section { border-top: 1px solid rgba(127, 212, 238, 0.1); }
h1, h2, h3 { font-family: 'Orbitron', 'Rajdhani', sans-serif; font-weight: 900; }
.section h2 {
  font-size: clamp(30px, 5vw, 58px); line-height: 0.92; font-style: italic;
  color: #fff; transform: skewX(-8deg); margin-top: 10px;
  text-shadow: 0 0 24px rgba(255, 0, 180, 0.32);
}
.section .lede {
  margin-top: 18px; max-width: 64ch; font-size: 18px; color: #b8d4e4;
}

/* --- hero ------------------------------------------------------------------ */
.hero { padding: clamp(60px, 11vw, 130px) 0 90px; text-align: center; position: relative; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 32, 160, 0.14), transparent 55%);
}
.hero .feed { transform: skewX(-8deg); display: inline-block; }
.hero h1 {
  font-size: clamp(52px, 12vw, 150px); line-height: 0.82; font-style: italic;
  color: #fff; letter-spacing: 0.01em; transform: skewX(8deg);
  text-shadow:
    -4px 0 rgba(255, 40, 160, 0.6), 4px 0 rgba(0, 220, 255, 0.6),
    0 0 26px rgba(0, 220, 255, 0.7), 0 0 120px rgba(255, 0, 180, 0.4);
}
.hero .sub {
  margin: 26px auto 0; max-width: 60ch;
  font-size: clamp(18px, 2.4vw, 23px); color: #cfe7f4; font-weight: 600;
}
.rule {
  margin: 30px auto 0; height: 2px; width: min(520px, 70%);
  background: linear-gradient(90deg, transparent, var(--cyan) 30%, var(--magenta) 70%, transparent);
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.55);
}
.cta-row { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- buttons --------------------------------------------------------------- */
.btn {
  display: inline-block; padding: 15px 34px; cursor: pointer;
  font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 15px;
  letter-spacing: 3px; transform: skewX(-8deg); border: 1px solid var(--cyan);
  background: rgba(0, 180, 255, 0.12); color: var(--ink);
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.btn > span { display: inline-block; transform: skewX(8deg); }
.btn:hover { background: rgba(0, 180, 255, 0.3); color: #fff; box-shadow: 0 0 24px rgba(0, 180, 255, 0.4); }
.btn.primary {
  background: rgba(255, 233, 110, 0.16); border-color: rgba(255, 233, 110, 0.9);
  color: var(--yellow);
}
.btn.primary:hover { background: rgba(255, 233, 110, 0.32); color: #fff; box-shadow: 0 0 28px rgba(255, 220, 80, 0.45); }
.btn.ghost { background: none; border-color: rgba(127, 212, 238, 0.4); color: #9cc8e0; }
.btn.ghost:hover { border-color: var(--cyan); color: #fff; box-shadow: none; }

/* --- stat strip ------------------------------------------------------------ */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 54px;
}
.stat-strip .cell {
  border-top: 1px solid rgba(127, 220, 255, 0.35);
  border-bottom: 1px solid rgba(255, 154, 216, 0.2);
  padding: 16px 14px; background: rgba(0, 20, 44, 0.34); text-align: left;
}
.stat-strip .cell b { display: block; font-size: 12px; letter-spacing: 3px; color: var(--muted); font-weight: 800; }
.stat-strip .cell span {
  display: block; margin-top: 6px; font-size: clamp(26px, 4vw, 38px); font-weight: 900;
  color: var(--yellow); font-variant-numeric: tabular-nums; font-family: 'Orbitron', sans-serif;
}

/* --- generic card grid ----------------------------------------------------- */
.grid { display: grid; gap: 18px; margin-top: 42px; }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line); border-top: 3px solid rgba(54, 224, 255, 0.7);
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  padding: 26px 24px; position: relative;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0, 120, 220, 0.18); }
.card h3 { font-size: 21px; font-style: italic; letter-spacing: 1px; color: #fff; }
.card p { margin-top: 10px; color: #aecbdc; font-size: 16px; }
.card .icon { font-size: 26px; margin-bottom: 14px; filter: drop-shadow(0 0 10px rgba(54, 224, 255, 0.5)); }

/* --- footer ---------------------------------------------------------------- */
.site-foot {
  border-top: 1px solid var(--line); padding: 46px 0 60px; margin-top: 40px;
  color: var(--muted); font-size: 14px; letter-spacing: 1px;
}
.site-foot .wrap { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-start; }
.site-foot .cols { display: flex; gap: 54px; flex-wrap: wrap; }
.site-foot h4 {
  font-family: 'Orbitron', sans-serif; font-size: 12px; letter-spacing: 3px;
  color: #8ec9e8; margin-bottom: 12px; font-weight: 900;
}
.site-foot a { display: block; color: #9cc8e0; font-weight: 700; padding: 3px 0; }
.site-foot a:hover { color: #fff; }
.site-foot .legal { max-width: 30ch; line-height: 1.7; }

.section.cta-band { text-align: center; }
.section.cta-band h2 { transform: skewX(-8deg); display: inline-block; }

/* --- reveal on scroll ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s, transform 0.6s; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .site-nav { display: none; position: absolute; top: 62px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(3, 4, 17, 0.97); border-bottom: 1px solid var(--line); padding: 8px 0; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 7vw; border-bottom: 1px solid rgba(127, 212, 238, 0.08); }
  .nav-play { transform: none; margin: 8px 7vw; text-align: center; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; background: none; cursor: pointer;
    border: 1px solid var(--line); color: var(--cyan); font-size: 18px;
  }
  .section { padding: 60px 0; }
}
