:root {
  --bg: #080C10;
  --bg-alt: #0F1419;
  --accent: #BAFF00;
  --accent-dim: rgba(186, 255, 0, 0.08);
  --text: #F0EDE6;
  --text-muted: rgba(240, 237, 230, 0.45);
  --border: rgba(240, 237, 230, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 100px 48px 80px;
  max-width: 1200px;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--text);
}
.hero-headline .line { display: block; }
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.stat {
  padding: 0 40px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 160px;
  line-height: 1.4;
  margin-top: 4px;
}
.stat-div {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin-right: 40px;
  align-self: center;
}

/* PROOF */
.proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 48px;
}
.proof-inner {
  max-width: 800px;
}
.proof-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

/* FEATURES */
.features {
  padding: 100px 48px;
  max-width: 1200px;
}
.features-header {
  margin-bottom: 64px;
}
.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.features-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feat {
  background: var(--bg);
  padding: 48px;
}
.feat-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
}
.feat h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.feat p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* NICHES */
.niches {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}
.niches-header {
  margin-bottom: 64px;
}
.niches-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.niches-header p {
  font-size: 16px;
  color: var(--text-muted);
}
.niches-list {
  display: grid;
  gap: 0;
}
.niche {
  display: flex;
  align-items: baseline;
  gap: 48px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.niche:first-child { border-top: 1px solid var(--border); }
.niche-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  min-width: 200px;
  letter-spacing: -0.01em;
}
.niche-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
}
.pricing-inner {
  max-width: 1200px;
}
.pricing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.pricing-inner > p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.price-card {
  background: var(--bg);
  padding: 40px;
}
.price-card.featured {
  background: var(--accent-dim);
}
.price-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.price-amount span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}
.price-features {
  list-style: none;
}
.price-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.price-features li:last-child { border-bottom: none; }

/* CLOSING */
.closing {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  padding: 100px 48px;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 32px;
}
.closing p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.closing-cta {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent) !important;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.footer-tag {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-legal {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-div { display: none; }
  .stat { padding: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .niche { flex-direction: column; gap: 8px; }
  .features, .niches, .pricing, .closing, .proof { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 48px; }
  .nav-tag { display: none; }
}