:root {
  --bg: #0F1A12;
  --bg-light: #162119;
  --fg: #E8E4DD;
  --fg-muted: #9B9689;
  --accent: #C8E66B;
  --accent-warm: #E8A94B;
  --accent-rose: #E86B8A;
  --accent-sky: #6BC8E8;
  --accent-lavender: #B08AE8;
  --surface: #1C2B20;
  --surface-hover: #243528;
  --border: rgba(200, 230, 107, 0.12);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --max-width: 1100px;
}

* { 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-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(200, 230, 107, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(107, 200, 232, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 50%, rgba(232, 169, 75, 0.04) 0%, transparent 60%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.hero h1 .accent {
  color: var(--accent);
}

.lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--bg);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.hero-btn-primary:hover { background: #d6f07a; transform: translateY(-2px); }

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--fg);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(232, 228, 221, 0.25);
  transition: border-color 0.2s, transform 0.15s;
}
.hero-btn-secondary:hover { border-color: var(--fg-muted); transform: translateY(-2px); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  color: var(--fg-muted);
  opacity: 0.4;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ========== SECTION LABELS ========== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

/* ========== PROBLEM ========== */
.problem {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.big-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--fg);
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  background: var(--surface);
  border-radius: 8px;
  border-left: 3px solid var(--accent-rose);
}

.problem-source {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}

.problem-issue {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ========== HOW IT WORKS ========== */
.how {
  padding: 6rem 2rem;
}

.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step {
  padding: 2rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

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

/* ========== CATEGORIES ========== */
.categories {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.categories-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.category-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.cat-tag {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cat-tag:hover {
  transform: scale(1.05);
}

.cat-sports { color: var(--accent-sky); border-color: rgba(107, 200, 232, 0.3); background: rgba(107, 200, 232, 0.06); }
.cat-arts { color: var(--accent-lavender); border-color: rgba(176, 138, 232, 0.3); background: rgba(176, 138, 232, 0.06); }
.cat-community { color: var(--accent); border-color: rgba(200, 230, 107, 0.3); background: rgba(200, 230, 107, 0.06); }
.cat-food { color: var(--accent-warm); border-color: rgba(232, 169, 75, 0.3); background: rgba(232, 169, 75, 0.06); }
.cat-outdoors { color: #6BE8A8; border-color: rgba(107, 232, 168, 0.3); background: rgba(107, 232, 168, 0.06); }
.cat-kids { color: #E8D26B; border-color: rgba(232, 210, 107, 0.3); background: rgba(232, 210, 107, 0.06); }
.cat-fundraiser { color: var(--accent-rose); border-color: rgba(232, 107, 138, 0.3); background: rgba(232, 107, 138, 0.06); }

/* ========== CLOSING ========== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 60%, rgba(200, 230, 107, 0.06) 0%, transparent 70%);
  z-index: 0;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

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

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

  .how-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero {
    min-height: 90vh;
    padding: 2rem 1.5rem;
  }

  .problem,
  .how,
  .categories,
  .closing {
    padding: 4rem 1.5rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .category-cloud {
    gap: 0.5rem;
  }

  .cat-tag {
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
  }
}