/* ── STATS BAR ───────────────────────────────────────────── */
#stats-bar {
  padding: 2.5rem 0;
  background:
    radial-gradient(ellipse 700px 300px at 50% 50%, rgba(195,34,31,0.08), transparent 60%),
    var(--clr-dark-3);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
:root[data-theme="light"] #stats-bar {
  background:
    radial-gradient(ellipse 700px 300px at 50% 50%, rgba(195,34,31,0.06), transparent 60%),
    var(--clr-dark-3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 1rem;
  border-right: 1px solid var(--clr-border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 3rem);
  background-image: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

