.stats-section {
  background: var(--ink);
  color: oklch(95% 0.01 252);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(58% 0.22 252 / 0.35), transparent 65%);
  pointer-events: none;
}
.stats-section::after {
  content: "";
  position: absolute;
  bottom: -120px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(78% 0.22 145 / 0.18), transparent 65%);
  pointer-events: none;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 18px;
  padding: var(--s3) 0;
  position: relative;
  z-index: 1;
}
.stat {
  text-align: center;
  position: relative;
}
.stat .num {
  font-family: var(--display);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--green), oklch(85% 0.18 165));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .lab {
  margin-top: 8px;
  color: oklch(75% 0.02 252);
  font-size: 13px;
  font-weight: 500;
}

@media (min-width: 720px) {
  .stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18%; bottom: 18%;
    right: -9px;
    width: 1px;
    background: oklch(35% 0.02 252);
  }
  .stats { grid-template-columns: repeat(4, 1fr); gap: 30px; }
}
