@media (prefers-reduced-motion: no-preference) {
  body {
    animation: pageFade 220ms ease-out both;
  }

  .page-hero,
  .content-card,
  .home-choice {
    animation: liftIn 280ms ease-out both;
  }
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
