/* Fususu.com — Animation Styles */
/* Scroll reveal + glow pulse + running text */

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Glow pulse for primary button */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(26,86,219,0.3); }
  50%      { box-shadow: 0 0 32px rgba(26,86,219,0.55); }
}

.btn-primary {
  animation: glow-pulse 3s ease-in-out infinite;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.nav-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.95);
  z-index: -1;
}

/* ============================================
   STORY HEADING — NORMAL ON MOBILE
   (desktop keeps sticky, mobile is static)
   ============================================ */
@media (max-width: 767px) {
  .story-lead {
    position: static;
  }
}