.reveal {
  animation: reveal 520ms ease both;
}

.reveal:nth-child(2) {
  animation-delay: 90ms;
}

.perspective-tile,
.story-moment,
.story-moment-flow,
.story-path div,
.sequence-card,
.capability-panel article,
.intelligence-thread article {
  animation: reveal 560ms ease both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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