*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: white;
  font-size: 1rem;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--link);
  text-underline-offset: 0.24em;
}
a:hover {
  text-decoration-thickness: 2px;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #007d93;
  outline-offset: 5px;
}
.site-header :focus-visible,
.site-footer :focus-visible,
.hero :focus-visible {
  outline-color: var(--cyan-light);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(2.35rem, 4.15vw, 4rem);
  font-weight: 750;
}
h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 700;
}
h3 {
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}
p + p {
  margin-top: 1rem;
}
ul,
ol {
  padding-left: 1.35rem;
}
li + li {
  margin-top: 0.5rem;
}
.container {
  width: min(calc(100% - var(--space) * 2), var(--container));
  margin-inline: auto;
}
.section {
  padding-block: clamp(56px, 7vw, 92px);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--link);
  margin-bottom: 1.1rem;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
  margin-top: 1.3rem;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 20;
  background: white;
  color: var(--navy);
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
::selection {
  background: #b0edf1;
  color: var(--navy);
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  a,
  button {
    transition:
      background-color 0.16s,
      color 0.16s,
      border-color 0.16s;
  }
}
