.reveal {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.from-bottom {
  transform: translateY(42px);
}

.from-top {
  transform: translateY(-36px);
}

.from-left {
  transform: translateX(-48px);
}

.from-right {
  transform: translateX(48px);
}

.zoom-in {
  transform: scale(0.94);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

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

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