/* ── Stats band ── */
.stats { border-bottom: 1px solid var(--border); background: var(--bg-subtle); }
.stats__inner { display: flex; align-items: stretch; flex-wrap: wrap; }
.stat-item {
  flex: 1; min-width: 140px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.75rem 1rem; border-right: 1px solid var(--border); text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item__val { font-size: 1.875rem; font-weight: 800; letter-spacing: -0.03em; color: var(--primary); margin-bottom: 0.25rem; }
.stat-item__lbl { font-size: 0.8125rem; color: var(--text-muted); }
