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

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

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

.site-nav__link {
  display: inline-block;
  padding-bottom: 0.25rem;
  border-bottom-width: 2px;
  border-bottom-color: transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav__link--active {
  color: #0f766e;
  font-weight: 600;
  border-bottom-color: #0d9488;
}

.animate-fade-up {
  animation: fade-up 0.7s ease-out both;
}

.animate-pulse-soft {
  animation: pulse-soft 3.5s ease-in-out infinite;
}

.stat-bar__fill {
  transform: scaleX(0);
  transform-origin: left center;
}

.stat-bar__fill.is-animated {
  animation: stat-fill 1.1s ease-out forwards;
}
