/* ============================================================
   SABA ENERGY — Animations Stylesheet
   Keyframe definitions only. Initial hidden states are set via
   gsap.set() in js/animations.js immediately before each tween,
   so content renders visible by default if JS never runs.
   ============================================================ */


/* ────────────────────────────────────────
   SCROLL INDICATOR — breathing animation
──────────────────────────────────────── */
@keyframes scrollBreathe {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.7; }
}

.scroll-indicator.visible {
  animation: scrollBreathe 2s ease-in-out infinite;
}
