.stats-page { gap: clamp(0.9rem, 2.6vh, 1.7rem); width: 100%; }

.stat-section {
  width: min(960px, 100%);
  display: flex; flex-direction: column; gap: 0.7rem;
}
.stat-section > h2 {
  display: flex; align-items: center; gap: 0.85rem;
  font-family: var(--f-mono); font-size: clamp(0.6rem, 1.6vw, 0.7rem); font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--flame); text-align: left;
}
.stat-section > h2::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.stats-page .stat-grid {
  width: 100%; margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 640px) {
  .stats-page .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 400px) {
  .stats-page .stat-grid { grid-template-columns: 1fr; }
}

.stat-note.up   { color: #4fe39b; }
.stat-note.down { color: #ff6a5a; }
