:root {
  --bg: #0a0a0f;
  --bg-secondary: #12121a;
  --fg: #e8e6e1;
  --fg-muted: #8a8880;
  --accent: #ff6b35;
  --accent-glow: rgba(255, 107, 53, 0.15);
  --accent-secondary: #ffd166;
  --card-bg: #18182a;
  --card-border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ──────── HERO ──────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-inner { position: relative; z-index: 1; max-width: 780px; }

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

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-visual {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  min-width: 140px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.08);
}

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

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

/* ──────── PROBLEM ──────── */
.problem {
  padding: 120px 24px;
  background: var(--bg-secondary);
}

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

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

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

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

.problem-item {
  padding: 32px;
  border-left: 2px solid rgba(255, 107, 53, 0.3);
}

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

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

/* ──────── OFFER ──────── */
.offer {
  padding: 120px 24px;
}

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

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

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

.offer-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
  transition: border-color 0.3s ease;
}

.offer-card:hover {
  border-color: rgba(255, 107, 53, 0.2);
}

.offer-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.offer-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.offer-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ──────── HOW ──────── */
.how {
  padding: 120px 24px;
  background: var(--bg-secondary);
}

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

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

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

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

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

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

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

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

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

.closing h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 20px;
  line-height: 1.3;
}

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

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

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

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

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

/* ──────── RESPONSIVE ──────── */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 40px; min-height: auto; }
  .hero-visual { flex-direction: column; align-items: center; gap: 12px; }
  .stat-card { min-width: 200px; }
  .problem { padding: 80px 20px; }
  .problem-grid { grid-template-columns: 1fr; gap: 24px; }
  .offer { padding: 80px 20px; }
  .offer-grid { grid-template-columns: 1fr; }
  .how { padding: 80px 20px; }
  .closing { padding: 80px 20px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}