/* hundred — 03 How it works (prefix hiw-) */

.hiw {
  margin-top: var(--space-section);
}

.hiw-card {
  text-align: center;
}

.hiw-title {
  max-width: 480px;
  margin-inline: auto;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.hiw-step__icon {
  display: block;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 22px;
}

.hiw-step__title {
  font-weight: 500;
  margin-bottom: 10px;
}

.hiw-step__copy {
  max-width: 310px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-top: 40px;
  }
}

/* staggered scroll reveal (60ms steps) */
@media (prefers-reduced-motion: no-preference) {
  .hiw-grid .hiw-step:nth-child(2) {
    transition-delay: 60ms;
  }

  .hiw-grid .hiw-step:nth-child(3) {
    transition-delay: 120ms;
  }
}

/* step numerals replace pictorial icons: numbers carry the brand */
.hiw-step__num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
