/* Landing-page specific tweaks. Most styling comes from Tailwind utility
   classes inlined in landing.html; this file just hosts the few things
   that need keyframes or pseudo-element trickery. */

/* Gentle vertical pulse on the 'live tracking' badge dot. The browser
   gets a hint to GPU-accelerate via will-change. */
@keyframes whaalPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}
@media (prefers-reduced-motion: no-preference) {
  .animate-pulse { animation: whaalPulse 1.8s ease-in-out infinite; will-change: opacity, transform; }
}

/* Subtle ambient glow disabled — was triggering paint loops in some
   embedded Chromium contexts that broke screenshot capture. We can
   reintroduce it later with a less expensive technique if desired. */
