/* ═══════════════════════════════════════════════════════
   KIF — Stats Section
   ═══════════════════════════════════════════════════════ */

.stats-section { padding: 6rem 2rem; position: relative; overflow: hidden; }
.stats-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,97,26,.03) 0%, transparent 50%, rgba(75,142,240,.03) 100%);
  border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge);
}
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--edge); }
.stat-cell {
  background: var(--ink);
  padding: 3rem 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  transition: background .3s;
}
.stat-cell:hover { background: var(--surface); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1;
  color: var(--gold);
  display: block;
}
.stat-label { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--frost-faint); margin-top: .75rem; }
