:root {
  --bg: #0a0f1a;
  --bg-elevated: #111827;
  --bg-card: #1a2235;
  --fg: #e8edf5;
  --fg-muted: #8b95a8;
  --accent: #3b82f6;
  --accent-warm: #f59e0b;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --border: #1e293b;
  --radius: 12px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, 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.7;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-inner {
  margin-bottom: 64px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

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

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s;
}

.hero-btn-primary:hover {
  background: #2563eb;
}

.hero-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg-muted);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: color 0.15s, border-color 0.15s;
}

.hero-btn-secondary:hover {
  color: var(--fg);
  border-color: var(--fg-muted);
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent-warm);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

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

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

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

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

.problem-card {
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

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

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

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

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

.features-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.feature-item:first-child {
  border-top: 1px solid var(--border);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  min-width: 40px;
  padding-top: 4px;
}

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

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

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

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

.how-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.how-subtitle {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 56px;
}

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

.step {
  position: relative;
}

.step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

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

/* CLOSING */
.closing {
  padding: 120px 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.closing-inner p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-emphasis {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 1.1rem !important;
}

/* FOOTER */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.5;
}

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

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

  .hero-stat-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .feature-item {
    flex-direction: column;
    gap: 12px;
  }

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

  .problem,
  .features,
  .how-it-works {
    padding: 60px 20px;
  }

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