/**
 * LCS — stats band (typographic brutalist strip)
 */

.section--stats {
  padding: clamp(2.5rem, 6vh, 4rem) 0;
  background: var(--black);
  color: var(--cream);
  border-top: 3px solid var(--gray);
  border-bottom: 3px solid var(--gray);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  border: 2px solid var(--cream);
  list-style: none;
  padding: 0;
}

.stats-band__cell {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.75rem);
  border-right: 2px solid var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 11rem;
  justify-content: flex-end;
  background: var(--gray);
  transition: background 0.22s ease, color 0.22s ease;
}

.stats-band__cell:last-child {
  border-right: 0;
}

.stats-band__cell:nth-child(odd) {
  background: var(--black);
}

.stats-band__cell:hover {
  background: var(--cream);
  color: var(--black);
}

.stats-band__cell:hover .stats-band__icon .ti {
  color: var(--black) !important;
}

.stats-band__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: auto;
}

.stats-band__idx {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.55;
}

.stats-band__icon .ti {
  font-size: 1.5rem !important;
  color: var(--cream) !important;
  opacity: 0.9;
}

.stats-band__num {
  margin: 0;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.stats-band__label {
  margin: 0;
  font-size: clamp(0.72rem, 1.6vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  max-width: 16ch;
  opacity: 0.88;
}

@media (max-width: 900px) {
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-band__cell {
    border-bottom: 2px solid var(--cream);
    min-height: 9rem;
  }

  .stats-band__cell:nth-child(2) {
    border-right: 0;
  }

  .stats-band__cell:nth-child(3),
  .stats-band__cell:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .stats-band {
    grid-template-columns: 1fr;
  }

  .stats-band__cell {
    border-right: 0;
    border-bottom: 2px solid var(--cream);
    min-height: auto;
    padding: 1.25rem 1rem;
  }

  .stats-band__cell:last-child {
    border-bottom: 0;
  }
}
