@charset "UTF-8";
/* ============================================================
   ANIMATIONS — @keyframes only
   Source: All 6 HTML prototypes
   DO NOT add anything not present in the HTML source.
============================================================ */

/* ----------------------------------------------------------
   FADE UP — hero content entrance (home page)
---------------------------------------------------------- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
