#stats {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.stats-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0,200,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--accent-cyan);
  text-shadow: 0 0 30px rgba(0,200,255,0.5);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.stat-divider {
  width: 30px;
  height: 1px;
  background: var(--accent-cyan);
  margin: 8px auto;
  opacity: 0.4;
}
