/* ═══════════════════════════════════════════════════════════════════════
   animations.css — Keyframe definitions used by other stylesheets via
   `animation:` declarations.
   ═══════════════════════════════════════════════════════════════════════ */

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

@keyframes pulse-border {
  from { border-color: var(--acc-hi); }
  to   { border-color: var(--border); }
}

@keyframes pop-in {
  from { transform: scale(.85); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
