/* ============================================================
   Escala component: dark section header (kicker + heading +
   note) followed by a row of animated stat counters.
   ============================================================ */

.escala {
  background: var(--black);
  color: var(--white);
  padding: 8.75rem var(--pad-x) 0;
}
.escala__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.escala__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}
.escala__kicker {
  color: var(--green);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.escala__heading {
  font-size: var(--fz-h2);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 18ch;
  margin-top: 1.25rem;
}
.escala__heading em {
  font-style: normal;
  color: var(--green);
}
.escala__note {
  max-width: 32ch;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 860px) {
  .stats {
    grid-template-columns: 1fr;
  }
}
.stat {
  background: var(--black);
  padding: 3.125rem 1.875rem;
  position: relative;
}
.stat__num {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  display: block;
}
.stat__num .unit {
  color: var(--green);
  font-size: 0.55em;
  margin-left: 0.375rem;
  letter-spacing: -0.02em;
}
.stat__label {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 640px) {
  .escala {
    padding: 5rem var(--pad-x) 0;
  }
  .stat {
    padding: 2.125rem 1.5rem;
  }
  .escala__note {
    font-size: 1rem;
  }
}
