.home-runtime-ready .hero .content > * {
  animation: home-text-reveal 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-runtime-ready .hero .content > :nth-child(2) {
  animation-delay: 90ms;
}

.home-runtime-ready .hero .content > :nth-child(3) {
  animation-delay: 170ms;
}

.home-runtime-ready .hero .content > :nth-child(4) {
  animation-delay: 250ms;
}

.home-runtime-ready .hero .content > :nth-child(5) {
  animation-delay: 330ms;
}

@keyframes home-text-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-runtime-ready .hero .content > * {
    animation: none;
  }
}
