:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a25;
  --fg: #e8e6e1;
  --fg-muted: #9a9890;
  --fg-dim: #6b6960;
  --accent: #d4a843;
  --accent-glow: #e8c46a;
  --accent-dim: #9a7a30;
  --red-urgent: #e84c4c;
  --green-check: #4cce7b;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.urgency-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232,76,76,0.15);
  border: 1px solid rgba(232,76,76,0.3);
  border-radius: 4px;
  color: var(--red-urgent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--fg);
}

.lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 620px;
  margin-bottom: 36px;
}

.lede em {
  color: var(--accent);
  font-style: italic;
}

/* ---- HERO CTA BUTTON ---- */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-block;
  padding: 18px 36px;
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(212,168,67,0.25);
}

.hero-cta-btn:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,168,67,0.35);
}

.hero-cta-note {
  font-size: 14px;
  color: var(--fg-dim);
}

/* ---- CLOSING CTA BUTTON ---- */
.closing-cta-btn {
  display: inline-block;
  padding: 18px 40px;
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(212,168,67,0.25);
}

.closing-cta-btn:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,168,67,0.35);
}

.hero-detail {
  display: flex;
  gap: 48px;
}

.hero-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.detail-label {
  font-size: 14px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- STATS ---- */
.stats {
  padding: 100px 40px;
  background: var(--bg-elevated);
}

.stats-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.stats-headline {
  margin-bottom: 60px;
}

.stats-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.stats-headline p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 36px 28px;
}

.stat-icon {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 20px;
}

.stat-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.stat-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* ---- HOW ---- */
.how {
  padding: 100px 40px;
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 48px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.step:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(212,168,67,0.2);
  line-height: 1;
  min-width: 80px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* ---- ELIGIBILITY ---- */
.eligibility {
  padding: 100px 40px;
  background: var(--bg-elevated);
}

.eligibility-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.elig-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  position: sticky;
  top: 40px;
}

.elig-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.elig-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.04);
}

.elig-check {
  color: var(--green-check);
  font-size: 18px;
  font-weight: 700;
  min-width: 24px;
  padding-top: 1px;
}

.elig-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 40px;
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.closing-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 60px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}

.footer-legal {
  font-size: 13px;
  line-height: 1.7;
  color: var(--fg-dim);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-dim);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 80px 24px 60px;
    min-height: auto;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-cta-btn {
    padding: 16px 28px;
    font-size: 15px;
  }

  .hero-detail {
    flex-direction: column;
    gap: 24px;
  }

  .stats { padding: 60px 24px; }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how { padding: 60px 24px; }

  .step {
    flex-direction: column;
    gap: 12px;
    padding: 28px 0;
  }

  .step-num {
    font-size: 36px;
    min-width: auto;
  }

  .eligibility { padding: 60px 24px; }

  .eligibility-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .elig-left h2 {
    position: static;
  }

  .closing { padding: 80px 24px; }

  .site-footer { padding: 40px 24px; }
}