/* Purposeful motion for premium industrial interaction. */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.js-ready .hero-content .eyebrow,
.js-ready .hero-content h1,
.js-ready .hero-content p,
.js-ready .hero-actions {
  animation: hero-copy 680ms ease both;
}

.js-ready .hero-content h1 {
  animation-delay: 120ms;
}

.js-ready .hero-content p {
  animation-delay: 220ms;
}

.js-ready .hero-actions {
  animation-delay: 330ms;
}

@keyframes hero-copy {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
