/* ─── STATS BAR ─── */
.stats-bar {
  background: #1a1c1f;
  border-top: 1px solid #2a2d32;
  border-bottom: 1px solid #2a2d32;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-item {
  padding: 32px 24px;
  border-right: 1px solid #2a2d32;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  background: #1a1c1f;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  background: rgba(232, 133, 26, 0.04);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 2px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
