@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hero-image-arrive {
  from {
    opacity: 0.72;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__image {
  animation: hero-image-arrive 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__content {
  animation: hero-fade 900ms 180ms ease both;
}

.hero__details {
  animation: hero-arrive 900ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(2.25rem);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.hero__arc {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero:hover .hero__arc {
  transform: translateX(-0.65rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
