:root {
  --bg: #0a0a0f;
  --bg-elevated: #14141f;
  --fg: #f0ede6;
  --fg-muted: #9a9690;
  --accent: #ff6b35;
  --accent-light: #ff8f62;
  --accent-glow: rgba(255, 107, 53, 0.15);
  --green: #45e89d;
  --purple: #a78bfa;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --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 {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 80px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255, 107, 53, 0.25);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

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

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  padding: 100px 32px;
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 48px;
}

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

.step {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.step:hover {
  border-color: rgba(255, 107, 53, 0.3);
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
  line-height: 1;
}

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

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

/* ─── FEATURES ─── */
.features {
  padding: 60px 32px 100px;
  max-width: 960px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  padding: 40px 36px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.feature-card-wide {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-elevated), rgba(255, 107, 53, 0.04));
  border-color: rgba(255, 107, 53, 0.15);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 20px;
  opacity: 0.7;
}

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

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 520px;
}

/* ─── NUMBERS ─── */
.numbers {
  padding: 80px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.stat:nth-child(3) .stat-value {
  color: var(--accent);
}

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

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

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

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

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 24px 60px;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card-wide {
    grid-column: span 1;
  }
  
  .numbers-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .how-it-works,
  .features {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .closing {
    padding: 80px 24px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-tags {
    flex-direction: column;
    gap: 8px;
  }
  
  .tag {
    text-align: center;
  }
}