:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #111115;
  --bg-card: #16161a;
  --bg-card-hover: #1c1c22;
  --fg-primary: #f0ede6;
  --fg-secondary: #9d9a92;
  --fg-muted: #5c5a55;
  --accent: #d4a853;
  --accent-dim: rgba(212, 168, 83, 0.12);
  --accent-glow: rgba(212, 168, 83, 0.25);
  --border: rgba(255,255,255,0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
}
.logo-mark {
  color: var(--accent);
  margin-right: 6px;
}

/* HERO */
.hero {
  position: relative;
  padding: 160px 32px 100px;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(212,168,83,0.2);
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg-primary);
  margin-bottom: 28px;
  max-width: 820px;
}
.hero-accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: var(--fg-secondary);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-niches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.niche-tag {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.2s ease;
}
.niche-tag:hover {
  color: var(--accent);
  border-color: rgba(212,168,83,0.3);
  background: var(--accent-dim);
}
.hero-gradient {
  position: absolute;
  top: 60px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.stat-block { text-align: center; flex: 1; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 15px;
  color: var(--fg-secondary);
  max-width: 200px;
  margin: 0 auto;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* NICHES */
.niches {
  padding: 120px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg-primary);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 18px;
  color: var(--fg-secondary);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.25s ease;
}
.niche-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212,168,83,0.15);
  transform: translateY(-2px);
}
.niche-icon {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--accent);
}
.niche-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg-primary);
}
.niche-card p {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* SYSTEM */
.system {
  padding: 120px 32px;
  background: var(--bg-secondary);
}
.system-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.system-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.25s ease;
}
.system-step:hover {
  border-color: rgba(212,168,83,0.15);
}
.step-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.system-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg-primary);
}
.system-step p {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 120px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--fg-primary);
  margin-bottom: 24px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.closing-text {
  font-size: 18px;
  color: var(--fg-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.closing-metric {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 20px;
  padding: 32px 48px;
}
.metric-target {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.metric-desc {
  font-size: 15px;
  color: var(--fg-secondary);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--fg-primary);
}
.footer-meta {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-dot { margin: 0 8px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 120px 20px 60px; }
  .hero-sub { font-size: 17px; }
  .stats-inner {
    flex-direction: column;
    gap: 32px;
    padding: 48px 20px;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .niches { padding: 80px 20px; }
  .niche-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .system { padding: 80px 20px; }
  .system-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .closing { padding: 80px 20px; }
  .closing-metric { padding: 24px 32px; }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .hero-niches { justify-content: center; }
  .section-desc { font-size: 16px; }
  .nav-cta { display: none; }
}

/* NAV CTA */
.nav-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(212,168,83,0.3);
  background: var(--accent-dim);
  border-radius: 8px;
  padding: 8px 18px;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}
.nav-cta:hover {
  background: rgba(212,168,83,0.2);
  border-color: rgba(212,168,83,0.5);
}

/* HERO CTA BUTTON */
.hero-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0a0a0c;
  background: var(--accent);
  border-radius: 10px;
  padding: 14px 28px;
  text-decoration: none;
  margin-bottom: 28px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.hero-btn:hover {
  background: #e0b85e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}