:root {
  --bg: #111118;
  --bg-light: #1a1a24;
  --bg-card: #1f1f2e;
  --accent: #c8f53a;
  --accent-dim: #a8d430;
  --fg: #f0ede6;
  --fg-muted: #8a8a9a;
  --fg-dim: #5a5a6a;
  --border: rgba(240, 237, 230, 0.08);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Sections */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--fg);
  max-width: 680px;
}

/* Hero */
.hero {
  padding: 5rem 2rem 6rem;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  white-space: nowrap;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* Flow diagram */
.flow-diagram {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 10px;
  background: var(--bg-light);
  border: 1px solid var(--border);
}
.flow-step-1 { border-left: 3px solid var(--accent); }
.flow-step-2 { border-left: 3px solid var(--accent-dim); }
.flow-step-3 { border-left: 3px solid #8ab828; }
.flow-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.flow-desc {
  font-size: 0.825rem;
  color: var(--fg-muted);
}
.flow-arrow {
  display: flex;
  justify-content: center;
  color: var(--fg-dim);
  padding: 0.25rem 0;
}

/* How it works */
.howitworks { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step-card { padding: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Services */
.services { border-bottom: 1px solid var(--border); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.service-item:hover { border-color: rgba(200, 245, 58, 0.3); }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Niches */
.niches { background: var(--bg-light); border-bottom: 1px solid var(--border); }
.niches-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.niche-card {
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.niche-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 245, 58, 0.1);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.niche-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.niche-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing { border-bottom: 1px solid var(--border); }
.closing-inner { text-align: center; }
.closing-badge {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  border: 1px solid rgba(200, 245, 58, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--fg);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}
.closing-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2rem;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.proof-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  max-width: 120px;
}
.proof-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* Footer */
.footer { padding: 3rem 2rem; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--fg);
  display: block;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.825rem;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .niches-scroll { grid-template-columns: 1fr; }
  .closing-proof { flex-direction: column; gap: 1.5rem; }
  .proof-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .section-inner { padding: 3.5rem 1.5rem; }
  .hero { padding: 3.5rem 1.5rem 4rem; }
}
@media (max-width: 480px) {
  .nav { padding: 1rem 1.25rem; }
  .hero-headline { font-size: 2.4rem; }
  .service-item { flex-direction: column; gap: 0.75rem; }
}