﻿.stats__section {
  position: relative;
  padding: 48px 0 56px;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--panel) 94%, transparent) 0%,
    color-mix(in oklab, var(--panel-2) 96%, transparent) 100%);
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(228, 195, 122, .08);
}

.stats__section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 14px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(228, 195, 122, .12), rgba(228, 195, 122, 0));
}

.stats__section .stats__wrap {
  text-align: center;
}

.stats__stat-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 620px) {
  .stats__stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .stats__stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats__stat-card {
  position: relative;
  padding: 20px 18px;
  border-radius: var(--r-lg);
  background: color-mix(in oklab, var(--panel-2) 92%, transparent);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .22s ease;
}

.stats__stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, .5);
}

.stats__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin: 0 auto 10px;
  background: color-mix(in oklab, var(--panel) 92%, transparent);
  border: 1px solid var(--border);
  color: var(--gold-1);
}

.stats__stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.stats__stat-icon .stats__stat-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.1);
  transition: filter 0.22s ease;
}

.stats__stat-card:hover .stats__stat-icon .stats__stat-img {
  filter: brightness(1.1) contrast(1.2);
}

.stats__stat-number {
  font: 900 clamp(22px, 4.5vw, 36px)/1 Cinzel, serif;
  letter-spacing: .5px;
  margin: 2px 0 6px;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__stat-label {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .02em;
}





