:root {
  --bg: #0F0F0F;
  --surface: #161616;
  --surface2: #1E1E1E;
  --accent: #F97316;
  --accent2: #FB923C;
  --text: #F5F5F5;
  --text-muted: #A3A3A3;
  --border: #2A2A2A;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-cta {
  padding: 8px 20px;
  background: var(--accent);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent2); }

/* HERO */
.hero {
  padding: 80px 40px 60px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat {
  flex: 1;
  padding-right: 40px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin-right: 40px;
  flex-shrink: 0;
}

/* SECTION LABELS */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 0;
}
.text-accent { color: var(--accent); }

/* PROBLEM */
.problem { padding: 80px 40px; background: var(--surface); }
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-left .section-heading { margin-top: 12px; }
.problem-right { display: flex; flex-direction: column; gap: 20px; }
.problem-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.problem-card.highlight {
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.05);
}
.problem-icon {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.problem-card.highlight .problem-icon { color: var(--accent); }
.problem-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
}
.problem-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* HOW */
.how { padding: 80px 40px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-inner .section-heading { margin-bottom: 56px; }
.steps {
  display: flex;
  align-items: center;
  gap: 32px;
}
.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  font-size: 24px;
  color: var(--border);
  flex-shrink: 0;
  font-family: monospace;
}

/* NICHE */
.niches { padding: 80px 40px; background: var(--surface); }
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches-header { margin-bottom: 48px; }
.niches-header .section-heading { margin-top: 12px; }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.niche {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.niche-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.niche-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
}
.niche-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* PRICING */
.pricing { padding: 80px 40px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-inner .section-heading { margin-bottom: 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.04);
}
.plan-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}
.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}
.per-mo {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.plan-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}
.pricing-card.featured .plan-features li::before { color: var(--accent); }

/* CLOSING */
.closing {
  padding: 100px 40px;
  text-align: center;
  background: var(--surface);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.footer-copy { font-size: 12px; color: var(--border); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { display: none; }
}
@media (max-width: 600px) {
  nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding-right: 0; }
  .stat-divider { display: none; }
  .niches-grid { grid-template-columns: 1fr; }
  .how, .problem, .pricing { padding: 48px 24px; }
  .closing { padding: 60px 24px; }
}