/* ─── STATS ─── */
.stats-bar {
  padding: 0 48px;
  margin-bottom: 0;
  position: relative; z-index: 1;
}

.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  position: relative;
}

.stats-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.stat-item {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}

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

.stat-val {
  font-family: 'Chakra Petch', monospace;
  font-size: 42px; font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-val sup {
  font-size: 20px;
  vertical-align: super;
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
