/* Stats bar under the hero */
/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   STATS BAR (overlapping hero/about)
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */
.stats-bar {
  background: var(--bg-deep);
  position: relative;
  z-index: 5;
  margin-top: -80px;
  padding: 0 24px 72px;
}
.stats-bar-inner {
  background: var(--bg-mid);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 48px 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.stats-bar-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,229,255,.18), transparent 70%);
  transform: translate(-50%, -70%);
  pointer-events: none;
}
.stat-item { text-align: center; padding: 8px; }
.stat-number {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-number .accent {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .03em;
}
