/* ===================================================
   STAT CARDS
=================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px 24px 0;
  flex-shrink: 0;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.18s;
}
.stat-card:hover { border-color: var(--border-hi); background: var(--bg-card-h); }
.stat-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px;
  flex-shrink: 0;
}
.si-purple { background: rgba(200,85,255,0.15); }
.si-orange { background: rgba(255,107,53,0.15); }
.si-teal   { background: rgba(78,205,196,0.15); }
.si-gold   { background: rgba(255,215,0,0.15); }
.stat-label { font-size: 10px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing:.5px; }
.stat-val   { font-family:'Bebas Neue',sans-serif; font-size:26px; letter-spacing:1px; line-height:1; margin:2px 0; }
.stat-trend { font-size:11px; color: var(--text-muted); }
.stat-trend.up   { color: var(--green); }
.stat-trend.down { color: var(--red); }
