@keyframes shimmer {
  to { transform: translateX(100%); }
}

@keyframes floatA {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(26px,18px,0) scale(1.03); }
}

@keyframes floatB {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-22px,-16px,0) scale(1.04); }
}

.orb-a {
  animation: floatA 15s ease-in-out infinite;
}

.orb-b {
  animation: floatB 18s ease-in-out infinite;
}

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