/* ── Homepage ──────────────────────────────────────────── */

/* Hero — generous, confident, airy */
.hero {
  padding: 144px 0 112px;
  text-align: center;
  background: var(--bg-primary);
}
.hero-logo {
  height: 140px;
  width: auto;
  margin-bottom: 2.5rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.035em;
  line-height: 1.06;
  max-width: 740px;
  margin: 0 auto 1.5rem;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}

/* Scroll indicator — mouse outline */
.scroll-hint {
  display: inline-flex;
  margin-top: 64px;
  text-decoration: none;
  cursor: pointer;
}
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--border-hover);
  border-radius: 13px;
  position: relative;
  transition: border-color .2s;
}
.scroll-hint:hover .scroll-mouse {
  border-color: var(--accent);
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 22px; opacity: .3; }
}

/* ── Stats strip — bento grid ────────────────────────── */
.stats-strip {
  padding: 96px 0;
  background: var(--bg-secondary);
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
}
.stat-cell {
  padding: 40px 24px;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}

/* ── Featured coverage ───────────────────────────────── */
.featured {
  padding: 120px 0;
  background: var(--bg-primary);
}
.featured-header {
  margin-bottom: 48px;
}
.featured-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: .5rem;
}
.featured-header p {
  font-size: 15.5px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}
.coverage-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--border);
}
.coverage-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: .75rem;
}
.coverage-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 640px;
}
.coverage-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2.25rem;
}
.domain-pill {
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
  font-family: var(--font-body);
}

/* ── How it works ────────────────────────────────────── */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-secondary);
}
.how-header {
  margin-bottom: 60px;
}
.how-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .5rem;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Bottom CTA ──────────────────────────────────────── */
.bottom-cta {
  padding: 96px 0;
  background: var(--bg-primary);
  text-align: center;
}
.bottom-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.bottom-cta a {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
  transition: color .2s;
}
.bottom-cta a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 88px 0 72px; }
  .hero-logo { height: 100px; margin-bottom: 2rem; }
  .hero h1 { font-size: 42px; }
  .hero-sub { font-size: 15px; }
  .scroll-hint { margin-top: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-bottom: 1px solid var(--border); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) { border-bottom: none; }
  .stat-number { font-size: 38px; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .featured { padding: 80px 0; }
  .how-it-works { padding: 80px 0; }
  .stats-strip { padding: 64px 0; }
  .coverage-card { padding: 28px; }
  .featured-header h2,
  .how-header h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 0 48px; }
  .hero-logo { height: 80px; margin-bottom: 1.5rem; }
  .hero h1 { font-size: 34px; letter-spacing: -0.03em; }
  .hero-sub { font-size: 14px; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .scroll-hint { margin-top: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 28px 16px; }
  .stat-number { font-size: 32px; }
  .coverage-card { padding: 20px; }
  .coverage-card h3 { font-size: 18px; }
  .bottom-cta { padding: 64px 0; }
}
