:root {
  color-scheme: light;
  --blue-950: #071d36;
  --blue-900: #092642;
  --blue-800: #0d355f;
  --blue-100: #dbe8f4;
  --green-700: #0f704b;
  --green-600: #168a5c;
  --green-500: #20b36f;
  --teal-600: #118d98;
  --gold-500: #d6a546;
  --ink: #142338;
  --muted: #5c6a78;
  --line: #d9e4ec;
  --surface: #ffffff;
  --surface-soft: #f4f8f6;
  --surface-blue: #eef5fa;
  --danger: #b42318;
  --success: #137a4d;
  --shadow: 0 18px 45px rgba(7, 29, 54, 0.13);
  --radius: 8px;
  --container: 1180px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

a:hover {
  color: var(--green-700);
}

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

button {
  cursor: pointer;
}

ul,
ol {
  padding-inline-start: 1.25rem;
}

h1,
h2,
h3,
h4,
p {
  margin-block-start: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--blue-950);
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: 3.4rem;
  margin-block-end: 1rem;
}

h2 {
  font-size: 2.25rem;
  margin-block-end: 0.85rem;
}

h3 {
  font-size: 1.25rem;
  margin-block-end: 0.55rem;
}

p {
  margin-block-end: 1rem;
}

:focus-visible {
  outline: 3px solid rgba(32, 179, 111, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--blue-950);
  color: #fff;
  padding: 0.7rem 0.9rem;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 5rem;
}

.section--soft {
  background: var(--surface-soft);
}

.section--blue {
  background: var(--surface-blue);
}

.section__header {
  max-width: 760px;
  margin-block-end: 2rem;
}

.section__lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.eyebrow {
  margin-block-end: 0.75rem;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

[dir="rtl"] .eyebrow {
  text-transform: none;
}

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

@media (max-width: 780px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding-block: 3.25rem;
  }
}
