/* Motion: subtle, short, meaningful */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--fast) var(--ease),
    transform var(--fast) var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
