/* =============================================================
   STATEMENT SECTION
   ============================================================= */

.statement {
  background: var(--color-surface, #F5F3F2);
  height: 200vh; /* scroll room for word reveal */
}

.statement__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statement__text {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
  text-align: center;
  max-width: 19em;
  margin: 0 auto;
}

.statement__word {
  color: #ccc;
  transition: color 0.25s ease;
  display: inline;
}

.statement__word--on {
  color: var(--color-text, #111);
}

/* =============================================================
   STATS SECTION
   ============================================================= */

.stats {
  background: var(--color-surface, #F5F3F2);
  padding: 100px 0 100px;
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 48px;
  max-width: 760px;
  margin: 0 auto;
}

.stats__value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #aaa;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.stats__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text, #111);
  margin: 0 0 10px;
}

.stats__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #888;
  margin: 0;
}

/* Scroll-triggered fade-up animation */
.stats__item {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats__item--hidden {
  opacity: 0;
  transform: translateY(28px);
}

/* Mobile: single column */
@media (max-width: 600px) {
  .stats__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
