@keyframes cc-fade-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stat-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.25);
  }
  50% {
    box-shadow: 0 0 0 0.5rem rgba(6, 214, 160, 0);
  }
}

@keyframes hero-bg-pan {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

.nav-link--active-mobile {
  color: #06d6a0;
  font-weight: 600;
  background-color: #133a33;
}

.cc-animate-in {
  animation: cc-fade-in 0.45s ease-out both;
}

.stat-card--pulse {
  animation: stat-pulse 2.8s ease-in-out infinite;
}

.hero-bg-motion {
  animation: hero-bg-pan 24s ease-in-out infinite alternate;
}

.contact-toast {
  animation: cc-fade-in 0.35s ease-out both;
}

@media (prefers-reduced-motion: reduce) {
  .cc-animate-in,
  .stat-card--pulse,
  .hero-bg-motion,
  .contact-toast {
    animation: none;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background-color: #06d6a0;
  color: #11131a;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  outline: 2px solid #f0f4ff;
  outline-offset: 2px;
}
