/* ═══════════════════════════════════════════════
   KOMET UX ENHANCEMENTS
   ═══════════════════════════════════════════════ */

/* ── Magnetic buttons ── */
.btn, .nav-cta, .pricing-cta {
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.3s ease !important;
  will-change: transform;
}

/* ── Stats section — CREAM palette cleanser between dark sections ──
   Was #0a0814 (dark), now cream to break the 5-dark-in-a-row rhythm.
   Per CLAUDE.md rule: no two adjacent sections should share layout/palette. */
.stats-section {
  background: #F5F1EA;
  border-top: 1px solid rgba(20,16,12,0.08);
  border-bottom: 1px solid rgba(20,16,12,0.08);
  padding: 5rem 0;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.stat-number {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #14100C;
  line-height: 1;
  font-family: 'Geist', sans-serif;
}
.stat-suffix {
  color: #c084fc;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(20,16,12,0.55);
}

/* ── Mobile stats: 2×2 grid ── */
@media (max-width: 768px) {
  .stats-section {
    padding: 3.5rem 0;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
    padding: 0 1.5rem;
  }
}
