.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.icon-fill {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.marquee-track {
  animation: marquee 30s linear infinite;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
}

.shadow-blue-premium {
  box-shadow: 0 8px 30px rgb(0 89 187 / 0.12);
}

.shadow-blue-premium-hover:hover {
  box-shadow: 0 16px 40px rgb(0 89 187 / 0.20);
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 20px 40px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  60%       { box-shadow: 0 20px 40px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

.fab-wa {
  animation: fab-pulse 3s ease-in-out infinite;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms cubic-bezier(0.16,1,0.3,1),
              transform 600ms cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }
.reveal[data-delay="5"] { transition-delay: 400ms; }
.reveal[data-delay="6"] { transition-delay: 480ms; }

/* ── Hero entrance ── */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: hero-in 700ms cubic-bezier(0.16,1,0.3,1) both;
}
.hero-content > *:nth-child(1) { animation-delay: 150ms; }
.hero-content > *:nth-child(2) { animation-delay: 300ms; }
.hero-content > *:nth-child(3) { animation-delay: 450ms; }

/* ── Icon bounce-in (pillar icons) ── */
@keyframes icon-pop {
  0%   { opacity: 0; transform: scale(0.5); }
  70%  { transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}
.icon-pop {
  animation: icon-pop 500ms cubic-bezier(0.34,1.56,0.64,1) both;
}

/* ── Marquee pause on hover ── */
#marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

/* ── Reduced motion: disable everything ── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-content > *,
  .icon-pop,
  .fab-wa {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
