/* Homepage-only hero entrance animation — not reused elsewhere. */
@keyframes mgUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.mg-hero > * { animation: mgUp 1.4s var(--mg-ease) both; }
.mg-hero > *:nth-child(2) { animation-delay: .2s; }
.mg-hero > *:nth-child(3) { animation-delay: .4s; }
.mg-hero > *:nth-child(4) { animation-delay: .55s; }
.mg-hero > *:nth-child(5) { animation-delay: .7s; }
.mg-hero-img { animation: mgUp 1.8s var(--mg-ease) .3s both; }

@media (prefers-reduced-motion: reduce) {
  .mg-hero > *, .mg-hero-img { animation: none; }
}
