/* ==========================================================================
   Dr. Malik — Animations & Micro-Interactions
   ========================================================================== */

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero-glow-orb {
  animation: pulseGlow 12s ease-in-out infinite alternate;
}

/* Scroll Reveal States */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-glow-orb {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
