html { background: var(--bg-page); }
body {
  background: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
::selection { background: var(--brand-200); color: var(--brand-900); }
h1, h2, h3, h4 {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: var(--lh-heading);
  text-wrap: balance;
}
h1 { font-size: var(--fs-hero); line-height: var(--lh-tight); letter-spacing: -.045em; }
h2 { font-size: var(--fs-2xl); letter-spacing: -.035em; }
h3 { font-size: var(--fs-lg); letter-spacing: -.015em; }
p { text-wrap: pretty; }
a { color: var(--link); text-decoration-thickness: .08em; text-underline-offset: .2em; }
a:hover { color: var(--link-hover); }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }
.visually-hidden {
  position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important;
  margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important; border: 0 !important;
}
.skip-link {
  position: fixed; left: 1rem; top: .75rem; z-index: 999;
  transform: translateY(-180%); padding: .65rem 1rem; border-radius: var(--radius-pill);
  background: var(--brand-700); color: white; text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }
.lead { font-size: var(--fs-md); color: var(--text-muted); max-width: 44rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; color: var(--brand-700);
  font-size: var(--fs-sm); font-weight: var(--weight-bold); letter-spacing: .08em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 1.9rem; height: 2px; background: currentColor; border-radius: 2px; }
.small-note { color: var(--text-muted); font-size: var(--fs-sm); }
.text-center { text-align: center; }
.text-center .lead { margin-inline: auto; }
