@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-variable.woff2") format("woff2");
}

:root {
  --ink: #101923;
  --ink-soft: #172a3d;
  --slate: #4f5f70;
  --line: #dbe2e8;
  --paper: #f4f7f9;
  --white: #fff;
  --blue: #1769e0;
  --blue-dark: #0e4fab;
  --cyan: #33c6b8;
  --amber: #ffd15c;
  --amber-dark: #e5ad1c;
  --success: #14755f;
  --error: #b42318;
  --radius: 8px;
  --shadow: 0 18px 45px rgb(16 25 35 / 10%);
  --container: 1180px;
  --header-height: 4.5rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

button,
input,
select,
textarea { color: inherit; font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: var(--blue-dark); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 { font-size: clamp(2.65rem, 8vw, 5.6rem); }
h2 { font-size: clamp(2rem, 5.4vw, 3.7rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); }

address { font-style: normal; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.narrow { max-width: 760px; }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-soft { background: var(--paper); }
.section-dark,
.section-ink { background: var(--ink); color: var(--white); }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-ink h1,
.section-ink h2,
.section-ink h3 { color: var(--white); }

.eyebrow {
  align-items: center;
  color: var(--blue-dark);
  display: flex;
  font-size: 0.76rem;
  font-weight: 800;
  gap: 0.55rem;
  letter-spacing: 0.13em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--blue);
  content: "";
  height: 2px;
  width: 1.6rem;
}

.eyebrow-light { color: #8de3db; }
.eyebrow-light::before { background: var(--cyan); }
.eyebrow-light > span { display: none; }

.section-heading { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); max-width: 850px; }
.section-heading h2 { margin-bottom: 1rem; }
.section-lead { color: var(--slate); font-size: clamp(1.05rem, 2vw, 1.23rem); line-height: 1.65; }
.section-ink .section-lead,
.section-dark .section-lead { color: #c6d0d9; }

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -6rem;
  z-index: 999;
}

.skip-link:focus { top: 1rem; }

.icon { flex: 0 0 auto; height: 1.15em; width: 1.15em; }

.button {
  align-items: center;
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.93rem;
  font-weight: 750;
  gap: 0.65rem;
  justify-content: center;
  line-height: 1.2;
  min-height: 3.25rem;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); transform: translateY(-1px); }
.button:disabled { cursor: wait; opacity: 0.7; transform: none; }
.button-small { min-height: 2.6rem; padding: 0.65rem 0.95rem; }
.button-accent { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.button-accent:hover { background: #ffe094; border-color: #ffe094; color: var(--ink); }

.button-row { align-items: center; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.text-link,
.card-link {
  align-items: center;
  display: inline-flex;
  font-weight: 750;
  gap: 0.45rem;
  text-decoration: none;
}
.text-link .icon,
.card-link .icon { transition: transform 160ms ease; }
.text-link:hover .icon,
.card-link:hover .icon { transform: translateX(0.2rem); }
.text-link-light { color: var(--white); }
.text-link-light:hover { color: var(--amber); }

