/* ── GenLead Marketing Page ── */

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0c14;
  --surface: #12151f;
  --surface2: #1a1e2e;
  --border: #252a3a;
  --accent: #5b8fff;
  --accent-dim: #3a5cd4;
  --accent-glow: rgba(91, 143, 255, 0.15);
  --text: #e8ecf4;
  --text-dim: #8891aa;
  --text-muted: #5a6380;
  --good: #3ecf8e;
  --warn: #ffcc44;
  --radius: 12px;
  --max-w: 1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ── */
.mkt-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 12, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.mkt-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.mkt-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.mkt-logo span { color: var(--accent); }
.mkt-nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  list-style: none;
}
.mkt-nav-links a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.mkt-nav-links a:hover { color: var(--text); text-decoration: none; }
.mkt-nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(91, 143, 255, 0.3);
}
.btn-primary:hover {
  background: var(--accent-dim);
  box-shadow: 0 4px 20px rgba(91, 143, 255, 0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--surface2);
  border-color: var(--text-muted);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
}

/* ── Section defaults ── */
.section {
  padding: 96px 24px;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.6;
}
.section-center {
  text-align: center;
}
.section-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero ── */
.hero {
  padding: 160px 24px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--good);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p.hero-sub {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Stats bar ── */
.stats-bar {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-number {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}
.step-card:hover {
  border-color: var(--text-muted);
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.step-connector {
  display: none;
}

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--text-muted);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Social Proof ── */
.social-proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-cta {
  text-align: center;
  margin-top: 48px;
}
.social-cta p {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.testimonial-card .quote {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.testimonial-card .role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Pricing ── */
.pricing-card {
  max-width: 420px;
  margin: 56px auto 0;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: 100px;
}
.pricing-price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 20px 0 4px;
}
.pricing-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dim);
}
.pricing-note {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.pricing-features li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(62, 207, 142, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233ecf8e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

/* ── Stats Grid (Why Reddit) ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.stat-card .stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-card .stat-label {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 8px;
}
.section-footnote {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 40px auto 0;
  line-height: 1.7;
}
.section-footnote em { color: var(--text); font-style: italic; }

/* ── Problem Grid ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.problem-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Audience Grid ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}
.audience-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}
.audience-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Section alt background ── */
.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Hero note ── */
.hero-note {
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
}

/* ── Final CTA ── */
.final-cta {
  padding: 120px 24px;
}
.final-cta .section-title {
  font-size: 40px;
}
.cta-note {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 16px;
}

/* ── Footer ── */
.mkt-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}
.mkt-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.mkt-footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}
.mkt-footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.mkt-footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.15s;
}
.mkt-footer-links a:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .mkt-nav-links { display: none; }

  .hero { padding: 120px 20px 64px; }
  .hero h1 { font-size: 36px; }
  .hero p.hero-sub { font-size: 16px; }

  .section { padding: 64px 20px; }
  .section-title { font-size: 28px; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stats-bar-inner {
    gap: 32px;
  }
  .stat-number { font-size: 26px; }
  .final-cta { padding: 80px 20px; }
  .final-cta .section-title { font-size: 28px; }

  .pricing-card {
    padding: 32px 24px;
  }
  .pricing-price { font-size: 40px; }

  .mkt-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-lg {
    width: 100%;
    justify-content: center;
  }
}
