/* Approximates the original site's entrance fade (built with Framer Motion in the
   Figma Sites runtime, which was not reproduced exactly — see README "Known gaps"). */
#container {
  animation: page-fade-in 500ms ease-out;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  #container {
    animation: none;
  }
}
