/* ============================================================
   ACS ANIMATIONS — Intentionally minimal
   ============================================================ */

/* Scroll reveal is handled by .reveal / .is-visible in global.css */
/* No floating orbs, no looping effects, no gradient animations */

/* Page fade-in on load */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body {
  animation: fadeIn 0.3s ease;
}

/* Counter number pop (used in counters.js) */
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.counter-animated {
  animation: countUp 0.4s ease forwards;
}
