/* Automatic homepage motion, as requested for the brand presentation. */
.hero .hero-art {
  transform: scale(1.035);
  transform-origin: 72% 48%;
  /* Scoped to the hero so the site's other motion preferences stay intact. */
  animation: phovis-drift 16s ease-in-out infinite alternate !important;
}
.hero.is-motion-suspended .hero-art { animation-play-state: paused !important; }
.hero-motion-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
@keyframes phovis-drift {
  from { transform: scale(1.035) translate3d(-.8%, .5%, 0); }
  to { transform: scale(1.14) translate3d(1.1%, -.8%, 0); }
}
