:root {
  --bg: #0a0f1a;
  --bg-alt: #111827;
  --fg: #e8ecf4;
  --fg-muted: #9ba3b5;
  --accent: #34d399;
  --accent-glow: rgba(52, 211, 153, 0.15);
  --accent-dark: #059669;
  --surface: #1a2236;
  --surface-border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --radius-sm: 8px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: radial-gradient(ellipse at 30% 20%, rgba(52, 211, 153, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              var(--bg);
}

.hero-inner {
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* Problem Section */
.problem {
  padding: 120px 24px;
  background: var(--bg-alt);
}

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

.problem h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 56px;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.problem-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.7;
}

.problem-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

/* Services */
.services {
  padding: 120px 24px;
  background: var(--bg);
}

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

.services h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 56px;
}

.subtle {
  color: var(--fg-muted);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--surface-border);
}

.service-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.service-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.service-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Niches */
.niches {
  padding: 120px 24px;
  background: var(--bg-alt);
}

.niches-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.niches h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.niches-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.niche-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.niche-tag {
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  transition: border-color 0.2s;
}

.niche-tag:hover {
  border-color: var(--accent);
}

.niche-example {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 24px 32px;
  text-align: left;
}

.niche-example p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.niche-example strong {
  color: var(--accent);
}

/* How It Works */
.how-it-works {
  padding: 120px 24px;
  background: var(--bg);
}

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

.how-it-works h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 56px;
  text-align: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 50%;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

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

/* Closing */
.closing {
  padding: 120px 24px;
  background: radial-gradient(ellipse at 50% 50%, rgba(52, 211, 153, 0.06) 0%, transparent 70%),
              var(--bg-alt);
  text-align: center;
}

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

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 24px;
}

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

.closing-promise p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

/* Footer */
.site-footer {
  padding: 48px 24px;
  background: var(--bg);
  border-top: 1px solid var(--surface-border);
  text-align: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-copy {
  color: var(--fg-muted);
  font-size: 0.8rem;
  opacity: 0.6;
}

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

  .hero-stats {
    gap: 32px;
  }

  .problem, .services, .niches, .how-it-works, .closing {
    padding: 80px 20px;
  }

  .step {
    flex-direction: column;
    gap: 16px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Navigation ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
}

.site-nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.site-nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav-links a:hover { color: var(--fg); }

.site-nav-cta {
  padding: 8px 20px;
  background: var(--accent);
  color: #0a0f1a \!important;
  border-radius: var(--radius-sm);
  font-weight: 600 \!important;
  transition: background 0.2s;
}

.site-nav-cta:hover { background: var(--accent-dark) \!important; color: #fff \!important; }

/* ===== CTA Buttons ===== */
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #0a0f1a;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--accent-dark); }

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover { border-color: var(--accent); background: var(--accent-glow); }

/* ===== Closing CTA tweak ===== */
.closing-cta-wrap {
  margin-top: 32px;
}
