:root {
  --bg: #09090b;
  --bg-2: #0f1117;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-2: rgba(79, 70, 229, 0.08);
  --text: #f5f5f4;
  --muted: #c4c4c2;
  --muted-2: #8b8b89;
  --line: rgba(255, 255, 255, 0.1);
  --indigo: #6366f1;
  --indigo-soft: rgba(99, 102, 241, 0.14);
  --gold: #fbbf24;
  --gold-soft: rgba(251, 191, 36, 0.12);
  --max: 1160px;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(99,102,241,0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(251,191,36,0.10), transparent 24%),
    linear-gradient(180deg, #09090b 0%, #0b1020 36%, #09090b 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.footer-link:hover { color: #fff; }

.badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.84rem;
  color: #ececec;
}

.badge-indigo { background: var(--indigo-soft); border-color: rgba(129, 140, 248, 0.18); }
.badge-gold { background: var(--gold-soft); border-color: rgba(251, 191, 36, 0.16); }

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background: radial-gradient(circle at 15% 8%, rgba(99,102,241,0.18), transparent 24%);
}
.hero::after {
  background: radial-gradient(circle at 85% 10%, rgba(251,191,36,0.10), transparent 18%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 5.5rem 0 4.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(129, 140, 248, 0.18);
  background: rgba(99, 102, 241, 0.10);
  color: #d7dbff;
  border-radius: 999px;
  padding: 0.6rem 0.95rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

h1, h2, h3, p { margin: 0; }

.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.5vw, 5.15rem);
  line-height: 1.02;
  margin-top: 1rem;
  max-width: 14ch;
}

.hero-copy {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.85;
  max-width: 58ch;
}

.highlight-gold { color: #fde68a; }
.highlight-indigo { color: #c7d2fe; }

.actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.5rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: 180ms ease;
}

.btn-primary {
  background: var(--indigo);
  color: #fff;
  border-color: rgba(129, 140, 248, 0.2);
}
.btn-primary:hover { background: #5558e6; }

.btn-secondary {
  background: rgba(251, 191, 36, 0.05);
  color: #fef3c7;
  border-color: rgba(251, 191, 36, 0.18);
}
.btn-secondary:hover { background: rgba(251, 191, 36, 0.10); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); }

.stat-grid,
.info-grid,
.faq-grid,
.perk-grid,
.support-grid,
.summary-grid,
.home-cards {
  display: grid;
  gap: 1rem;
}

.stat-grid { margin-top: 2rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.perk-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.summary-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.support-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.card.soft-indigo { background: rgba(99, 102, 241, 0.05); }
.card.soft-gold { background: rgba(251, 191, 36, 0.05); }

.label {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
}

.value-xl {
  margin-top: 0.4rem;
  font-size: 1.65rem;
  font-weight: 700;
}

.section {
  padding: 4.8rem 0;
}
.section-alt {
  background: linear-gradient(180deg, rgba(15,17,23,0.88) 0%, rgba(9,9,11,0.92) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-kicker {
  color: #fde68a;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 700;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  margin-top: 0.8rem;
}

.section-copy {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.panel-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.panel-copy { color: var(--muted); line-height: 1.75; }

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(251, 191, 36, 0.08));
  border: 1px solid rgba(255,255,255,0.1);
}

.icon {
  width: 20px;
  height: 20px;
  stroke: #dbe2ff;
}

.list {
  display: grid;
  gap: 0.9rem;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.mini-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.2rem;
  stroke: #fde68a;
}

.note {
  color: var(--muted);
  line-height: 1.8;
}

.cta-band {
  text-align: center;
}

.small {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 3rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted-2);
}

.center { text-align: center; }
.mt-24 { margin-top: 1.5rem; }
.mt-32 { margin-top: 2rem; }
.mt-40 { margin-top: 2.5rem; }
.hidden { display: none; }

@media (max-width: 980px) {
  .hero-grid,
  .support-grid,
  .dual-grid {
    grid-template-columns: 1fr;
  }
  .perk-grid,
  .home-cards,
  .info-grid,
  .summary-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .nav { flex-direction: column; align-items: flex-start; }
  .hero-grid { padding: 4rem 0 3rem; }
  .stat-grid,
  .perk-grid,
  .home-cards,
  .info-grid,
  .summary-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
}
