html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 75px;
}

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

body {
  background-color: #f8f9ff;
  color: #0b1c30;
}

.desktop-nav .nav-link {
  color: #475569;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
  transition: color 200ms ease, border-color 200ms ease;
}

.desktop-nav .nav-link:hover {
  color: #0f172a;
}

.desktop-nav .nav-link.is-active {
  color: #059669;
  font-weight: 600;
  border-bottom-color: #059669;
}

.mobile-nav .nav-link {
  color: #334155;
  font-weight: 500;
  transition: color 200ms ease;
}

.mobile-nav .nav-link:hover {
  color: #0f172a;
}

.mobile-nav .nav-link.is-active {
  color: #059669;
  font-weight: 600;
}

#mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: max-height 280ms ease, opacity 220ms ease, transform 220ms ease;
}

#mobile-menu.is-open {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 1071px) {
  #mobile-menu {
    max-height: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}