:root {
  --ink: #102035;
  --ink-soft: #536174;
  --ink-muted: #667489;
  --blue: #0759c7;
  --blue-dark: #064492;
  --blue-light: #eaf3ff;
  --ice: #f3f7fb;
  --line: #dce4ed;
  --line-dark: #c9d4e1;
  --white: #ffffff;
  --silver: #eef2f5;
  --navy: #0b1b31;
  --success: #16816f;
  --warning: #f1b843;
  --shadow-sm: 0 8px 26px rgba(16, 32, 53, 0.08);
  --shadow-lg: 0 28px 80px rgba(16, 32, 53, 0.13);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

section[id],
.accordion[id],
[data-filter][id] {
  scroll-margin-top: 135px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

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

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

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

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-140%);
}

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

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

.section {
  padding: 112px 0;
}

.section--compact {
  padding: 82px 0;
}

.section--ice {
  background: var(--ice);
}

.section--navy {
  color: var(--white);
  background: var(--navy);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: '';
}

.eyebrow--light {
  color: #78b0ff;
}

.display-title {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.section-title {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section--navy .section-copy {
  color: #aebbc9;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading > :first-child > :last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}

.text-link i {
  font-size: 0.85em;
  transition: transform 180ms ease;
}

.text-link:hover i,
.text-link:focus-visible i {
  transform: translateX(4px);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(7, 89, 199, 0.2);
  transform: translateY(-2px);
}

.button--dark {
  background: var(--navy);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #162e4e;
}

.button--light {
  background: var(--white);
  color: var(--navy);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.button--outline {
  border-color: var(--line-dark);
  background: transparent;
  color: var(--ink);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue-dark);
  box-shadow: none;
}

.button--wide {
  width: 100%;
}

.button:disabled,
.button[aria-disabled='true'] {
  border-color: var(--line);
  background: var(--silver);
  color: var(--ink-muted);
  cursor: default;
  box-shadow: none;
  transform: none;
}

.legal-strip {
  position: relative;
  z-index: 102;
  padding: 9px 0;
  background: var(--navy);
  color: #dce6f1;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.legal-strip__inner {
  display: flex;
  min-height: 18px;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.legal-strip i {
  color: #6ea8f4;
}

.announcement-track {
  position: relative;
  width: min(100%, 560px);
  height: 1.4em;
  overflow: hidden;
}

.announcement-message {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: translateY(8px);
  white-space: nowrap;
  transition: opacity 320ms ease, transform 320ms ease;
}

.announcement-message.is-active {
  opacity: 1;
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16, 32, 53, 0.08);
}

.header-main {
  display: grid;
  min-height: 96px;
  align-items: center;
  grid-template-columns: 190px 1fr 200px;
  gap: 24px;
}

.site-logo {
  position: relative;
  display: inline-flex;
  width: 175px;
  height: 84px;
  align-items: center;
}
