/* ── Home page — scoped under #app ───────────────────── */

#app h1 {
  font-size: 52px;
  line-height: 1.04;
  font-weight: 700;
  color: #f2ece0;
  margin: 0 0 22px;
  letter-spacing: -2.5px;
  max-width: 500px;
}

#app .hero {
  margin-bottom: 56px;
  max-width: 520px;
}

#app .lead {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(228, 223, 208, 0.55);
  margin: 0 0 32px;
}

#app .cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#app .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 560px;
}

#app .stat-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 20px;
}

#app .stat-value {
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
  letter-spacing: -1px;
  font-family: monospace;
}

#app .stat-label {
  font-size: 11px;
  color: rgba(228, 223, 208, 0.38);
  letter-spacing: 0.06em;
  font-family: monospace;
}