/* ─────────────────────────────────
   STATS ROW
───────────────────────────────── */

.stats {
  padding: 6rem var(--page-gutter);
  border-top: 1px solid var(--fg-dim);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 3rem;
  border-right: 1px solid var(--fg-dim);
}

.stat:last-child {
  border-right: none;
}

/* The big number */
.stat-num {
  font-family: var(--font-sans);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

/* The "+" superscript — accent coloured */
.stat-num sup {
  font-size: 0.4em;
  color: var(--accent);
  vertical-align: top;
  margin-top: 0.3em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
