:root {
  --bg: #0A0A0F;
  --surface: #111118;
  --surface2: #1a1a24;
  --lime: #C8F547;
  --lime-dim: rgba(200, 245, 71, 0.12);
  --text: #F0F0F5;
  --muted: #7a7a8c;
  --border: rgba(255,255,255,0.07);
}

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

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

h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--lime);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 48px 100px;
  min-height: 620px;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lime);
  font-weight: 600;
}
.hero-title {
  font-size: clamp(42px, 5vw, 72px);
  color: var(--text);
  font-weight: 800;
}
.hero-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

/* ICON GRID */
.hero-right { display: flex; align-items: center; justify-content: center; }
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 360px;
}
.icon-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.icon-card:hover {
  border-color: var(--lime);
  background: var(--lime-dim);
}
.ic-icon { opacity: 0.9; }
.ic-label {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.ic-1 { transform: translateY(0); }
.ic-2 { transform: translateY(-12px); }
.ic-3 { transform: translateY(0); }
.ic-4 { transform: translateY(-12px); }
.ic-5 { transform: translateY(0); }
.ic-6 { transform: translateY(-12px); }

/* PROOF */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px;
}
.proof-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.proof-stat { flex: 1; padding: 0 32px; }
.proof-stat:first-child { padding-left: 0; }
.proof-stat:last-child { padding-right: 0; }
.ps-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 12px;
}
.ps-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 8px;
}

/* HOW */
.how {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--text);
  margin-bottom: 64px;
  max-width: 640px;
}
.how-steps {
  display: flex;
  align-items: center;
  gap: 32px;
}
.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.step-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
}
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.step-arrow { color: var(--lime); flex-shrink: 0; }

/* REVENUE */
.revenue {
  background: var(--surface);
  padding: 100px 48px;
}
.revenue .section-title { max-width: 480px; }
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.rev-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rev-card--accent {
  border-color: rgba(200,245,71,0.3);
  background: linear-gradient(135deg, var(--bg) 0%, rgba(200,245,71,0.04) 100%);
}
.rev-icon { margin-bottom: 8px; }
.rev-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 1px;
}
.rev-card h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}
.rev-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.rev-tag {
  display: inline-block;
  background: var(--lime-dim);
  border: 1px solid rgba(200,245,71,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--lime);
  font-weight: 600;
  margin-top: 8px;
}

/* NICHES */
.niches {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 40px;
  margin-top: 48px;
}
.niche-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}
.niche-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--lime-dim) 0%, transparent 60%);
  border-top: 1px solid rgba(200,245,71,0.15);
  border-bottom: 1px solid rgba(200,245,71,0.15);
  padding: 100px 48px;
}
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--text);
  margin-bottom: 24px;
}
.cta-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.footer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--lime);
}
.footer-tag {
  font-size: 13px;
  color: var(--muted);
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .hero-right { display: none; }
  .icon-grid { display: none; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-stat { padding: 0; }
  .proof-divider { display: none; }
  .how { padding: 64px 24px; }
  .how-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .revenue { padding: 64px 24px; }
  .rev-grid { grid-template-columns: 1fr; }
  .niches { padding: 64px 24px; }
  .niche-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 64px 24px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .ps-number { font-size: 36px; }
}
