@keyframes page-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

body { animation: page-enter .42s ease both; }

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s cubic-bezier(.16, 1, .3, 1), transform .72s cubic-bezier(.16, 1, .3, 1);
}

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

.js .workflow-list .reveal:nth-child(2),
.js .metrics .reveal:nth-child(2) { transition-delay: .05s; }

.js .workflow-list .reveal:nth-child(3),
.js .metrics .reveal:nth-child(3) { transition-delay: .1s; }

.js .workflow-list .reveal:nth-child(4),
.js .metrics .reveal:nth-child(4) { transition-delay: .15s; }

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