*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
html, body {
  margin: 0;
  min-height: 100%;
}
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-body);
  line-height: var(--line-height);
  color: var(--color-text);
  background: var(--color-page);
  overflow-x: hidden;
}
body.is-locked {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
a, a:visited {
  color: var(--color-blue-deep);
}
a:hover {
  color: var(--color-blue);
}
button, input, select, textarea {
  font: inherit;
}
button {
  color: inherit;
}
h1, h2, h3 {
  margin-top: 0;
  color: var(--color-text);
  line-height: 1.2;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -.025em;
}
h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}
h3 {
  font-size: 1.12rem;
}
p {
  margin-top: 0;
}
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.site-shell {
  position: relative;
  width: min(calc(100% - 2rem), var(--shell-width));
  margin: 1rem auto 2rem;
  border: 1px solid rgba(89,126,151,.28);
  border-radius: 16px;
  background: rgba(249,252,255,.96);
  box-shadow: var(--shadow-shell);
  overflow: hidden;
}
.site-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg,#f7fbfe 0%,#edf4f8 100%);
}
.site-background span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,rgba(255,255,255,.98),rgba(169,216,245,.34) 50%,rgba(169,216,245,0) 72%);
}
.site-background span:nth-child(1) {
  width: 32rem;
  height: 32rem;
  right: -10rem;
  top: -13rem;
}
.site-background span:nth-child(2) {
  width: 22rem;
  height: 22rem;
  left: -9rem;
  top: 35%;
}
.site-background span:nth-child(3) {
  width: 28rem;
  height: 28rem;
  right: 8%;
  bottom: -16rem;
}
.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 999;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}
.skip-link:focus {
  transform: none;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.eyebrow {
  margin-bottom: .55rem;
  color: var(--color-blue-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-link, .back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  text-decoration: none;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.button-row--center {
  justify-content: center;
}
.site-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(20,44,62,.28);
  backdrop-filter: blur(2px);
}
.site-overlay[hidden] {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
