:root {
  --bg: #070a08;
  --bg2: #0e1410;
  --card: #121a15;
  --line: #1e2c22;
  --text: #e8f0ea;
  --muted: #8a9a8e;
  --accent: #b8f54a;
  --accent-dim: #7ab82e;
  --warn: #ffb020;
  --danger: #ff5c5c;
  --radius: 16px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, oklch(0.45 0.14 140 / 0.28), transparent 55%),
    radial-gradient(ellipse 40% 30% at 90% 80%, oklch(0.35 0.08 160 / 0.12), transparent 50%);
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1080px, 100% - 2rem);
  margin: 0 auto;
}

/* nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--accent), var(--accent-dim));
  display: grid;
  place-items: center;
  color: #061006;
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 0 24px oklch(0.7 0.2 130 / 0.35);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  font-size: 0.88rem;
}
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #061006 !important;
  font-weight: 700;
  font-size: 0.85rem;
}
.nav-cta:hover { filter: brightness(1.06); text-decoration: none; }

/* hero */
.hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg2);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.badge em {
  color: var(--accent);
  font-style: normal;
}
.hero h1 {
  margin: 0 auto 1rem;
  max-width: 16ch;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.hero h1 span { color: var(--accent); }
.lead {
  margin: 0 auto 1.75rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.12s, transform 0.1s;
  text-decoration: none;
  font-family: inherit;
}
.btn:hover { filter: brightness(1.06); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #061006;
  box-shadow: 0 8px 28px oklch(0.55 0.18 130 / 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
}
.hero-note strong { color: var(--text); font-weight: 600; }

/* packs preview */
.pack-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 1rem;
}
@media (max-width: 720px) {
  .pack-row { grid-template-columns: 1fr; }
}
.pack-card {
  background: linear-gradient(165deg, #162019, var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem 1.35rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.pack-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}
.pack-card.featured {
  border-color: oklch(0.7 0.15 130 / 0.45);
  box-shadow: 0 0 40px oklch(0.4 0.12 130 / 0.2);
}
.pack-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 0.5rem;
}
.pack-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.pack-price {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.6rem 0 0.75rem;
}
.pack-price small {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.pack-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}
.pack-card li {
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}
.pack-card li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* sections */
section { padding: 2.5rem 0; }
.section-title {
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}
.section-sub {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 36rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) {
  .grid-3 { grid-template-columns: 1fr; }
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.step-n {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: oklch(0.35 0.1 130 / 0.35);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

/* odds table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
  background: var(--bg2);
}
tr:last-child td { border-bottom: none; }
td.mono { font-family: var(--mono); font-size: 0.85rem; }
.tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  background: oklch(0.3 0.05 140 / 0.4);
  font-size: 0.75rem;
  font-weight: 600;
}

/* callouts */
.callout {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg2);
  padding: 1.15rem 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.callout strong { color: var(--text); }
.callout.warn {
  border-color: oklch(0.7 0.12 80 / 0.35);
  background: oklch(0.25 0.05 80 / 0.15);
}

/* legal pages */
.page-hero {
  padding: 2.5rem 0 1.5rem;
}
.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  letter-spacing: -0.03em;
}
.page-hero p { margin: 0; color: var(--muted); }
.prose {
  max-width: 42rem;
  padding-bottom: 3rem;
}
.prose h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.15rem;
}
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.2rem; }
.prose a { word-break: break-word; }

/* footer */
.footer {
  margin-top: 2rem;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer h4 {
  margin: 0 0 0.65rem;
  color: var(--text);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  padding: 0.2rem 0;
}
.footer a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
}

/* age strip */
.age-strip {
  text-align: center;
  padding: 0.65rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.age-strip strong { color: var(--warn); }

/* status */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: oklch(0.3 0.08 130 / 0.35);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}
.status-pill.soon {
  background: oklch(0.3 0.06 80 / 0.35);
  color: var(--warn);
}
