:root {
  --blue-900: #061d49;
  --blue-800: #092b67;
  --blue-700: #0f4696;
  --blue-600: #1763c6;
  --blue-500: #2a76d4;
  --blue-100: #dceaff;
  --blue-050: #eef5ff;
  --gold-500: #d8b04c;
  --gold-400: #e6c56f;
  --gold-100: #f8efd5;
  --white: #ffffff;
  --surface: #f5f7fb;
  --surface-strong: #eaf0f9;
  --text: #172033;
  --text-soft: #5e6a7d;
  --border: #dbe3ef;
  --header-height: 78px;
  --container: 1240px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 12px 30px rgba(9, 43, 103, 0.08);
  --shadow-md: 0 24px 60px rgba(9, 43, 103, 0.14);
  --shadow-lg: 0 34px 90px rgba(3, 22, 58, 0.24);
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

h1,
h2,
h3 {
  font-family: "Montserrat", "Inter", sans-serif;
}

::selection {
  color: var(--blue-900);
  background: var(--gold-400);
}

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

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

.section {
  position: relative;
  padding-block: clamp(76px, 9vw, 124px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-kicker::before,
.eyebrow::before {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-500);
  content: "";
}

.section-kicker.light {
  color: var(--gold-400);
}

.section-title {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--blue-800);
  font-size: clamp(2rem, 4.5vw, 3.55rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-title.light {
  color: var(--white);
}

.section-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.55vw, 1.15rem);
}

.section-heading.centered .section-copy {
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue-900);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

.js .reveal {
  opacity: 0.96;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}
