:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e6e1;
  --fg-muted: #8a8690;
  --accent: #f5a623;
  --accent-soft: rgba(245, 166, 35, 0.12);
  --accent-glow: rgba(245, 166, 35, 0.06);
  --border: rgba(255,255,255,0.06);
  --radius: 16px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', 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.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── NAV ─── */
.nav {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--accent);
}

.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ─── HERO ─── */
.hero {
  padding: 100px 0 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  max-width: 780px;
}

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

.hero-sub {
  margin-top: 28px;
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
}

/* ─── STATS BAR ─── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 80px 0;
}

.stat {
  background: var(--bg-elevated);
  padding: 40px 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ─── PROBLEM ─── */
.problem {
  padding: 60px 0 80px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.problem-left h2 em {
  font-style: normal;
  color: var(--accent);
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.pain-item:hover {
  border-color: rgba(245,166,35,0.2);
}

.pain-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-item h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pain-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 80px 0;
}

.section-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 16px;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 60px;
  max-width: 600px;
}

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

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.how-card::before {
  content: attr(data-step);
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  color: rgba(245,166,35,0.04);
  position: absolute;
  top: -20px;
  right: -10px;
  line-height: 1;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.how-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  position: relative;
}

/* ─── CLOSING ─── */
.closing {
  padding: 100px 0;
  text-align: center;
}

.closing-inner {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.closing-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  position: relative;
  max-width: 600px;
  margin: 0 auto 20px;
}

.closing h2 em {
  font-style: normal;
  color: var(--accent);
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── FOOTER ─── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-muted);
}

.footer-logo span {
  color: var(--accent);
}

.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 60px 0 50px;
  }
  .closing-inner {
    padding: 50px 28px;
  }
  .footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}