/* ── STATS BAND ───────────────────────────────────── */
  .stats-band {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 2rem;
  }
  .stats-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0;
  }
  .stat-item {
    text-align: center; padding: 16px;
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-size: 1.8rem; font-weight: 700; letter-spacing: -.02em;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .stat-lbl { font-size: 12px; color: var(--text-muted); margin-top: 2px; }