* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--navy-950);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  background:
    radial-gradient(circle at top left, rgba(201, 234, 41, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(28, 90, 150, 0.1), transparent 25%),
    linear-gradient(180deg, #fbfeff 0%, #edf5fa 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--brand-blue-700);
}

h1,
h2,
h3,
h4,
.site-brand__name {
  font-family: var(--font-serif);
  line-height: 1.06;
  letter-spacing: 0;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.45rem, 6.2vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.65rem;
}

p {
  margin: 0 0 18px;
}

main {
  min-height: 50vh;
}

:focus-visible {
  outline: 3px solid rgba(201, 234, 41, 0.75);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
