/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080B14;
  --surface: #0F1520;
  --surface2: #141D2B;
  --accent: #F59E0B;
  --accent2: #FBBF24;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --text: #EEF2F7;
  --text-muted: #8896AB;
  --border: #1A2436;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  background: rgba(8, 11, 20, 0.85);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 5rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-glow-1 {
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.07) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-glow-2 {
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.04) 0%, transparent 70%);
  bottom: -80px;
  left: 20%;
}
.hero-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50% { opacity: 0.6; box-shadow: 0 0 16px var(--accent); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.hero-stat {
  padding: 1.5rem 1rem;
  background: var(--surface);
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.stat-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== PROOF ===== */
.proof {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.proof-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.proof-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.pill {
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg);
  font-weight: 500;
}

/* ===== FEATURES ===== */
.features {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.features h2, .how h2, .niches h2, .closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 560px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: rgba(245,158,11,0.3);
}
.feature-card-accent {
  border-color: rgba(245,158,11,0.2);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(245,158,11,0.03) 100%);
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}
.feature-icon svg {
  width: 100%;
  height: 100%;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.feature-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== HOW ===== */
.how {
  padding: 5rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-step {
  display: flex;
  gap: 1rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.03em;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.step-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.how-quote {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--accent);
  background: var(--surface2);
  border-radius: 0 8px 8px 0;
}
.how-quote blockquote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== NICHES ===== */
.niches {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.niches-header {
  margin-bottom: 3rem;
}
.niches-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-top: 0.75rem;
  line-height: 1.65;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.niche-card {
  padding: 1.75rem 2rem;
  background: var(--surface);
}
.niche-icon {
  margin-bottom: 0.75rem;
}
.niche-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.niche-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  position: relative;
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.closing-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.closing-glow {
  position: absolute;
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.closing-content {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}
.closing h2 {
  max-width: 100%;
  margin: 0 auto 1.5rem;
}
.closing-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-left: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .niches-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 3.5rem 1.5rem;
  }
  .features, .how, .niches {
    padding: 3.5rem 1.5rem;
  }
  .closing {
    padding: 4rem 1.5rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer-legal {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .proof-pills {
    gap: 0.35rem;
  }
  .pill {
    font-size: 0.68rem;
    padding: 0.25rem 0.65rem;
  }
}