/* LeadCraft — Minnesota Meta Lead Generation */

:root {
  --bg: #faf8f4;
  --bg-card: #ffffff;
  --fg: #0d1b2a;
  --fg-secondary: #4a5568;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --border: #e2d9cc;
  --faded: #9ca3af;
  --stat-bg: #f3ede2;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-secondary);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding: 80px 48px 72px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-secondary);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-cta { display: flex; align-items: center; gap: 12px; }
.cta-tag {
  font-size: 12px;
  color: var(--fg-secondary);
  font-weight: 400;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}
.stat-card {
  background: var(--stat-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
}
.stat-card.highlight {
  background: var(--fg);
  border-color: var(--fg);
}
.stat-card.highlight .stat-label,
.stat-card.highlight .stat-value,
.stat-card.highlight .stat-note { color: #faf8f4; }
.stat-label {
  font-size: 11px;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin: 4px 0;
}
.stat-value.faded { color: var(--faded); }
.stat-note {
  font-size: 12px;
  color: var(--fg-secondary);
}
.stat-card.highlight .stat-note { color: #c4bfb8; }

/* Section shared */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1.15;
}

/* How */
.how {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.how .section-title { margin-bottom: 56px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { border-left: 2px solid var(--accent); padding-left: 24px; }
.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-dark);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* Results */
.results {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--fg);
}
.results .section-label { color: var(--accent); }
.results .section-title { color: #faf8f4; margin-bottom: 20px; }
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.results-body {
  font-size: 16px;
  color: #c4bfb8;
  line-height: 1.7;
  margin-bottom: 20px;
}
.comparison {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.compare-header,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 20px;
  font-size: 14px;
}
.compare-header {
  background: rgba(255,255,255,0.06);
  color: #9ca3af;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.compare-row { border-top: 1px solid rgba(255,255,255,0.06); }
.compare-row span:first-child { color: #e2d9cc; }
.green { color: #34d399; font-weight: 500; }
.red { color: #f87171; font-weight: 500; }
.yellow { color: #fbbf24; font-weight: 500; }

/* Niches */
.niches {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.niches .section-title { margin-bottom: 48px; max-width: 540px; }
.niches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}
.niche-icon { margin-bottom: 20px; }
.niche-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 12px;
}
.niche-body {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}
.niche-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: var(--stat-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  color: var(--fg-secondary);
}

/* Closing */
.closing {
  padding: 96px 48px;
  text-align: center;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.closing-body.accent {
  color: var(--fg);
  font-weight: 500;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
}
.footer-meta {
  font-size: 14px;
  color: var(--fg-secondary);
}
.footer-line {
  font-size: 12px;
  color: var(--faded);
  text-align: right;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .hero-right { flex-direction: row; flex-wrap: wrap; }
  .stat-card { min-width: 160px; flex: 1; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .results-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; gap: 12px; }
  .footer-line { text-align: left; }
  .how, .niches, .results, .closing { padding: 48px 24px; }
  .nav { padding: 20px 24px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .section-title { font-size: 26px; }
  .hero-right { flex-direction: column; }
  .niche-card { padding: 24px; }
}