:root {
  --bg-deep: #0b1120;
  --bg-section: #0f1729;
  --bg-card: #162038;
  --fg: #e8e4dd;
  --fg-muted: #9a9590;
  --accent: #e5a43a;
  --accent-glow: rgba(229, 164, 58, 0.15);
  --highlight: #f0c05e;
  --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-deep);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.highlight {
  color: var(--accent);
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(229, 164, 58, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  max-width: 800px;
}

.lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
}

.hero-stat {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 340px;
}

/* ---- HERO TAGS ---- */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 14px;
  border-radius: 100px;
}

.hero-cta {
  margin-top: 24px;
  font-size: 1.05rem;
  color: var(--fg);
  font-style: italic;
}

/* ---- PROGRAM GRID ---- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.program-card {
  background: var(--bg-card);
  border: 1px solid rgba(229, 164, 58, 0.15);
  border-radius: 12px;
  padding: 24px 20px;
  transition: border-color 0.3s;
}

.program-card:hover {
  border-color: rgba(229, 164, 58, 0.4);
}

.program-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.program-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
}

/* ---- DONATE CTA ---- */
.donate-cta {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 32px;
  background: var(--accent);
  color: #0b1120;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.donate-cta:hover {
  background: var(--highlight);
}

/* ---- MISSION BODY ---- */
.mission-body {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 680px;
  margin-top: 32px;
}

/* ---- PROBLEM ---- */
.problem {
  background: var(--bg-section);
  padding: 100px 24px;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem-label,
.how-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  max-width: 820px;
  margin-bottom: 56px;
}

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

.problem-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.04);
}

.card-icon {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ---- HOW ---- */
.how {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 16px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(229, 164, 58, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ---- IMPACT ---- */
.impact {
  background: var(--bg-section);
  padding: 100px 24px;
}

.impact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.impact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 56px;
  text-align: center;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.impact-item {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.3s;
}

.impact-item:hover {
  border-color: rgba(229, 164, 58, 0.2);
}

.impact-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.impact-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.impact-item p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #131b2e 100%);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 28px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
}

.footer-location {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-stat {
    flex-direction: column;
    gap: 12px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .problem,
  .impact {
    padding: 72px 20px;
  }

  .how {
    padding: 72px 20px;
  }

  .closing {
    padding: 80px 20px;
  }
}