:root {
  --bg: #0B1628;
  --surface: #111D2E;
  --surface2: #162438;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text: #F0EDE8;
  --text-muted: #8A9BB0;
  --text-dim: #5A6F85;
  --border: rgba(240, 237, 232, 0.08);
  --radius: 12px;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.nav-tag {
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* Section base */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  color: var(--text);
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 560px;
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 40px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245, 166, 35, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  font-weight: 500;
}
.label-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.hero-headline {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  max-width: 800px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
}
.proof-item {
  display: flex;
  flex-direction: column;
}
.proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.proof-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* How it works */
.howitworks {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 20px;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Niches */
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.niche-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
}
.niche-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.niche-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.niche-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Pricing */
.pricing {
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--surface2);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}
.pricing-price span {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 400;
}
.pricing-features {
  list-style: none;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features li::before {
  content: '—';
  color: var(--accent);
  margin-right: 10px;
}

/* Closing */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.closing-headline {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.closing-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .steps-grid, .niches-grid, .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section-inner { padding: 60px 24px; }
  .closing-inner { padding: 60px 24px; }
  .hero-proof { gap: 20px; }
  .proof-num { font-size: 28px; }
  .footer-inner { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .hero-proof { flex-wrap: wrap; }
  .proof-divider { display: none; }
}
