/* =========================================
   STATS BAND
========================================= */
.stats-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(68px, 7vw, 110px) 0;
  background: #e72055;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 100%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, 0.045), transparent 16%);
}

.stats-band__media,
.stats-band__overlay,
.stats-band__glow {
  position: absolute;
  inset: 0;
}

.stats-band__media {
  z-index: 0;
}

.stats-band__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  filter: saturate(0.95) contrast(1.04) brightness(0.72);
}

.stats-band__overlay {
  background:
    linear-gradient(180deg, rgba(226, 0, 82, 0.80) 0%, rgba(226, 0, 82, 0.88) 100%);
}

.stats-band__glow--left {
  background: radial-gradient(circle at 18% 46%, rgba(255, 255, 255, 0.08), transparent 22%);
}

.stats-band__glow--center {
  background: radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.10), transparent 28%);
}

.stats-band__glow--right {
  background: radial-gradient(circle at 84% 48%, rgba(255, 255, 255, 0.07), transparent 22%);
}

.stats-band__inner {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.stats-band__intro {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.stats-band__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stats-band__title {
  margin: 16px 0 10px;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 750;
}

.stats-band__lead {
  margin: 0 auto;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.7;
}

.stats-band__stage {
  position: relative;
}

.stats-band__mark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  filter: brightness(0) invert(1);
}

.stats-band__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stats-band__mark--left {
  left: -34px;
  bottom: -26px;
  width: 150px;
  height: 150px;
}

.stats-band__mark--right {
  right: -40px;
  bottom: -30px;
  width: 160px;
  height: 160px;
}

.stats-band__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.07) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 26px 54px rgba(49, 8, 24, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.stats-band__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 34%);
}

.stats-band__panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0.32) 18%,
      rgba(255, 255, 255, 0.16) 50%,
      rgba(255, 255, 255, 0.32) 82%,
      rgba(255, 255, 255, 0.10) 100%
    );
}

.stat-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 124px;
  padding: 22px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.035) 100%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(18px);
  transition:
    transform 280ms ease,
    opacity 500ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.stat-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:hover {
  transform: translateY(-5px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.045) 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 30px rgba(49, 8, 24, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.stat-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.06), transparent 34%);
}

.stat-item--featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow:
    0 22px 36px rgba(49, 8, 24, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.stat-item--featured::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.72) 50%,
      rgba(255, 255, 255, 0) 100%
    );
}

.stat-item__badge {
  position: absolute;
  top: 7px;
  right: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-item__icon-shell {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 10px 20px rgba(49, 8, 24, 0.08);
}

.stat-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.45rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.stat-item--featured .stat-item__icon-shell {
  width: 70px;
  height: 70px;
  flex-basis: 70px;
}

.stat-item--featured .stat-item__icon {
  width: 52px;
  height: 52px;
  font-size: 1.55rem;
}

.stat-item__content {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.stat-item__value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #ffffff;
  font-size: clamp(2.2rem, 2.5vw, 3.2rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.stat-item--featured .stat-item__value {
  font-size: clamp(2.5rem, 2.9vw, 3.5rem);
}

.stat-item__prefix {
  font-size: 0.82em;
  opacity: 0.96;
  transform: translateY(-0.02em);
}

.stat-item__label {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.97rem;
  line-height: 1.32;
  font-weight: 500;
}

.stat-item--featured .stat-item__label {
  color: rgba(255, 255, 255, 0.94);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1200px) {
  .stats-band__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .stats-band {
    padding: 48px 0;
  }

  .stats-band__inner {
    width: min(100% - 32px, 1280px);
  }

  .stats-band__intro {
    margin-bottom: 22px;
  }

  .stats-band__lead {
    font-size: 0.95rem;
  }

  .stats-band__mark--left,
  .stats-band__mark--right {
    width: 108px;
    height: 108px;
  }

  .stats-band__mark--left {
    left: -20px;
    bottom: -12px;
  }

  .stats-band__mark--right {
    right: -24px;
    bottom: -16px;
  }

  .stats-band__panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 26px;
  }

  .stat-item {
    min-height: 102px;
    padding: 18px 16px;
    border-radius: 22px;
  }

  .stat-item__badge {
    top: 12px;
    right: 12px;
  }

  .stat-item__icon-shell {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    border-radius: 18px;
  }

  .stat-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.3rem;
  }

  .stat-item--featured .stat-item__icon-shell {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .stat-item--featured .stat-item__icon {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
  }

  .stat-item__label {
    font-size: 0.92rem;
  }
}