/* Neo stats grid */
.fasto-stats { --pill-bg: var(--fasto-card); --pill-bd: var(--fasto-border); }
.fasto-stats-list{ display:grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  gap:12px; padding:0; margin:0; list-style:none; }
.fasto-stat-item{
  background: var(--pill-bg); border:1px solid var(--pill-bd); border-radius:14px;
  padding:14px; text-align:center;
}
.fasto-stat-num{ display:block; font-size: clamp(18px,3.8vw,28px); font-weight:800; color:#e8fbff; }
.fasto-stat-label{ display:block; margin-top:4px; font-size:.9rem; color: var(--fasto-muted); }
