.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.features .reveal:nth-child(1) { transition-delay: 0s; }
.features .reveal:nth-child(2) { transition-delay: 0.08s; }
.features .reveal:nth-child(3) { transition-delay: 0.16s; }
.features .reveal:nth-child(4) { transition-delay: 0.24s; }

.featured-grid .reveal:nth-child(1) { transition-delay: 0s; }
.featured-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.featured-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.featured-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.featured-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.featured-grid .reveal:nth-child(6) { transition-delay: 0.35s; }

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
