:root {
  --bg: #0a1020;
  --bg-2: #0e1830;
  --panel: #141e38;
  --panel-strong: #1a2447;
  --border: #26335a;
  --lime: #c6f432;
  --cyan: #00e0ff;
  --violet: #a076ff;
  --coral: #ff4d5e;
  --gold: #ffd43b;
  --text: #eaf3ff;
  --muted: #b5c2dc;
  --dim: #7a88a8;
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(0, 224, 255, 0.15), transparent 68%),
    radial-gradient(760px 500px at 88% 8%, rgba(198, 244, 50, 0.12), transparent 66%),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--lime); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(10, 16, 32, 0.76);
  border-bottom: 1px solid rgba(38, 51, 90, 0.72);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}
.brand {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--text);
}
.brand .pair { color: var(--lime); }
.brand .hunt { color: var(--cyan); }
.nav-links { display: flex; gap: 20px; align-items: center; font-size: 14px; font-weight: 800; }
.nav-links a { color: var(--muted); }

.hero { padding: 88px 0 56px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(198, 244, 50, 0.35);
  background: rgba(198, 244, 50, 0.1);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--lime);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dot { width: 6px; height: 6px; border-radius: 999px; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h1 {
  max-width: 850px;
  margin: 20px 0;
  font-size: clamp(44px, 7vw, 82px);
}
h2 { font-size: clamp(30px, 4vw, 48px); margin: 0 0 14px; }
h3 { font-size: 22px; margin: 0 0 8px; }
.lead { max-width: 720px; color: var(--muted); font-size: 19px; margin: 0 0 30px; }
.lime { color: var(--lime); }
.cyan { color: var(--cyan); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-primary { background: var(--lime); color: var(--bg); box-shadow: 0 0 34px rgba(198, 244, 50, 0.32); }
.btn-ghost { background: var(--panel-strong); color: var(--text); border-color: var(--border); }

section { padding: 72px 0; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: linear-gradient(180deg, rgba(26, 36, 71, 0.94), rgba(20, 30, 56, 0.78));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}
.card p, .section-copy { color: var(--muted); margin: 0; }
.kicker {
  color: var(--lime);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.list { color: var(--muted); padding-left: 20px; margin: 12px 0 0; }
.list li { margin: 8px 0; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { text-align: center; }
.stat strong { display: block; color: var(--lime); font-family: var(--display); font-size: 34px; line-height: 1; }
.faq details { margin-bottom: 10px; }
.faq summary { cursor: pointer; font-family: var(--display); font-weight: 900; }
footer { border-top: 1px solid var(--border); color: var(--dim); padding: 36px 0; font-size: 14px; }

@media (max-width: 780px) {
  .nav-inner { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav-links { flex-wrap: wrap; gap: 12px; }
  .hero { padding-top: 56px; }
  .grid-2, .grid-3, .stat-row { grid-template-columns: 1fr; }
}
