:root {
  --ink: #14213D;
  --ink-soft: #4B5566;
  --paper: #F7F7F3;
  --paper-alt: #ECEBE3;
  --card: #FFFFFF;
  --line: #DCDBD1;
  --signal: #E8871E;
  --signal-dark: #8A4608;
  --signal-tint: #FBE7C8;
  --good: #2F6F4E;
  --bad: #B23A2E;
  --shadow-soft: 0 18px 50px rgba(20, 33, 61, 0.09);
  --shadow-card: 0 12px 34px rgba(20, 33, 61, 0.08);
  --radius: 8px;
  --radius-sm: 8px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--signal-dark);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 2.55rem;
}

h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

p {
  color: var(--ink-soft);
}

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

.wrap {
  width: min(100% - 32px, 1320px);
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--paper-alt);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 32px;
}

.eyebrow,
.card-kicker {
  margin-bottom: 12px;
  color: var(--signal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 10;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--card);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

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