.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 110;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background-color: #e4f0fb;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1769ba;
  text-decoration: none;
}

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

.is-active {
  border-radius: 0.5rem;
  background-color: #e4f0fb;
  font-weight: 600;
  color: #1769ba;
}

.hero-section-bg {
  background-color: #f4f8fc;
  background-image: url("../assets/images/hero-bg-1920x1080.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (prefers-reduced-motion: reduce) {
  .hero-section-bg {
    background-attachment: scroll;
  }
}

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

@keyframes cc-pulse-soft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

.cc-animate-in {
  animation: cc-fade-in 0.55s ease-out forwards;
}

.cc-accent-pulse {
  animation: cc-pulse-soft 2.8s ease-in-out infinite;
}

.stat-number {
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

[data-stats-section].is-visible .stat-number {
  color: #1d7ddc;
}

@media (prefers-reduced-motion: reduce) {
  .cc-animate-in,
  .cc-accent-pulse {
    animation: none;
  }

  .stat-number {
    transition: none;
  }
}
