:root {
  --bg-1: #090816;
  --bg-2: #120f2d;
  --bg-3: #221654;
  --panel: rgba(18, 16, 41, 0.72);
  --panel-strong: rgba(28, 24, 60, 0.9);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f5f7ff;
  --muted: #b6bdd6;
  --accent: #b58cff;
  --accent-2: #64ddff;
  --gold: #ffd98a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(100, 221, 255, 0.16), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(181, 140, 255, 0.2), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(80, 44, 180, 0.18), transparent 35%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1) 55%, #06050f 100%);
  min-height: 100vh;
}

a { color: inherit; }

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.legal-shell { width: min(1000px, calc(100% - 32px)); }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 28px;
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(181, 140, 255, 0.3), rgba(100, 221, 255, 0.2));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 30px rgba(100, 221, 255, 0.12), inset 0 1px 0 rgba(255,255,255,0.12);
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav a:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,0.04);
}

.panel {
  background: linear-gradient(180deg, rgba(28, 23, 64, 0.84), rgba(12, 11, 28, 0.86));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  padding: 36px;
  overflow: hidden;
  position: relative;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,221,255,0.16), transparent 65%);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.lead, p, li { color: #e7ebff; line-height: 1.7; }
.muted { color: var(--muted); }
.small { font-size: 0.92rem; }

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  color: #160d2d;
  background: linear-gradient(135deg, var(--gold), #fff0bf);
  box-shadow: 0 18px 40px rgba(255, 217, 138, 0.18);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card, .content-panel, .note-panel, .legal-panel, .support-card {
  padding: 24px;
}

.text-link {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.feature-list,
.legal-panel ul,
.legal-panel ol {
  padding-left: 20px;
}

.feature-list li,
.legal-panel li { margin: 8px 0; }

.content-panel,
.note-panel,
.legal-panel { margin-top: 22px; }

.glass-stack {
  position: relative;
  min-height: 320px;
  display: grid;
  gap: 16px;
  align-content: center;
}

.stat-card {
  position: relative;
  z-index: 2;
  padding: 18px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 12px 30px rgba(0,0,0,0.18);
}

.stat-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.stat-card strong {
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.orb-a {
  inset: 20px auto auto 22px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(100,221,255,0.32), transparent 65%);
}

.orb-b {
  inset: auto 10px 10px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(181,140,255,0.28), transparent 65%);
}

.footer {
  margin-top: 28px;
  padding: 20px 8px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer p { margin: 4px 0; color: var(--muted); }
.legal-panel a, .footer a { color: var(--accent-2); }

.section-heading { margin-bottom: 12px; }
.support-grid { margin-top: 12px; }
.support-card {
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.steps li { margin-bottom: 10px; }

.legal-warning {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 217, 138, 0.08);
  border: 1px solid rgba(255, 217, 138, 0.18);
  color: #fff7dd;
}

@media (max-width: 900px) {
  .hero-panel,
  .three-up,
  .two-up { grid-template-columns: 1fr; }

  .topbar { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .site-shell, .legal-shell { width: min(100% - 20px, 1180px); }
  .hero-panel, .card, .content-panel, .note-panel, .legal-panel, .support-card { padding: 20px; }
  .nav { gap: 8px; }
  .nav a { padding: 8px 10px; }
}
