/* Section: KPI Strip
   Price / MC / FDV / Volume / Liquidity / Top-100 Concentration /
   ATH / Supply Squeeze / Locked. Owned by
   shared/dashboard/sections/kpi_strip/. */

.section--kpi-strip {
  margin-bottom: 1.5rem;
}

.section--kpi-strip .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
}

.section--kpi-strip .stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.section--kpi-strip .stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.section--kpi-strip .stat-label .sol-price-inline {
  font-size: 0.7rem;
  color: #f0b429;
  margin-left: 0.4rem;
  text-transform: none;
  letter-spacing: 0;
}

.section--kpi-strip .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.section--kpi-strip .stat-change {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.section--kpi-strip .stat-change.positive { color: #22c55e; }
.section--kpi-strip .stat-change.negative { color: #ef4444; }

/* Supply Squeeze + Locked use the same .stat-card shell but accent the value. */
.section--kpi-strip .stat-card--squeeze .stat-value { color: var(--accent); }
.section--kpi-strip .stat-card--locked  .stat-value { color: #a78bfa; }
