@keyframes site-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes site-pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.35);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(236, 72, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
  }
}

@keyframes site-stat-fill {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes site-soft-glow {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.site-animate-hero__glow {
  animation: site-soft-glow 4.5s ease-in-out infinite;
}

.site-animate-in {
  animation: site-fade-up 0.75s ease-out both;
}

.site-animate-in--delay-1 {
  animation-delay: 0.12s;
}

.site-animate-in--delay-2 {
  animation-delay: 0.24s;
}

.site-animate-in--delay-3 {
  animation-delay: 0.36s;
}

.site-stat-bar__inner {
  animation: site-stat-fill 1.15s ease-out both;
}

.site-stat-bar__inner--delay-1 {
  animation-delay: 0.2s;
}

.site-stat-bar__inner--delay-2 {
  animation-delay: 0.35s;
}

.site-stat-bar__inner--delay-3 {
  animation-delay: 0.5s;
}

.site-focus-ring:focus-visible {
  outline: 2px solid #ec4899;
  outline-offset: 3px;
}

.site-no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.site-no-scrollbar::-webkit-scrollbar {
  display: none;
}
