/* ========================================
   Filoffre — Logo cursor blink
   Seule animation du site : le ↖ pulse au chargement
   ======================================== */

.brand-cursor {
  animation: cursor-blink 2s 0.5s ease-out forwards;
}

@keyframes cursor-blink {
  0%   { opacity: 1; }
  15%  { opacity: 0; }
  30%  { opacity: 1; }
  45%  { opacity: 0; }
  60%  { opacity: 1; }
  80%  { opacity: 0.4; }
  100% { opacity: 1; }
}

/* Respecter reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .brand-cursor {
    animation: none;
  }
}
