:root {
  color-scheme: light;
  --brand-700: #123580;
  --brand-600: #00588f;
  --ink-950: #071425;
  --ink-900: #0b1730;
  --ink-700: #27364a;
  --ink-600: #526277;
  --surface-warm: #f4f2ec;
  --surface-cool: #eaf0f7;
  --surface-white: #ffffff;
  --line: #d5dee9;
  --line-dark: rgba(255, 255, 255, 0.18);
  --spectral-cyan: #45c9f2;
  --spectral-violet: #7b6ff2;
  --spectral-champagne: #d7a765;
  --error: #b42318;
  --error-surface: #fff2f0;
  --success: #12633a;
  --focus-ring: rgba(69, 201, 242, 0.45);
  --spectral-line: linear-gradient(105deg, #45c9f2 0%, #7b6ff2 48%, #d7a765 100%);

  --font-sans: "Barlow", "Segoe UI", Arial, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;

  --container: 1240px;
  --gutter: clamp(20px, 6.95vw, 100px);
  --header-height: 78px;
  --radius-sm: 2px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --transition-fast: 160ms var(--ease-out);
  --transition-base: 240ms var(--ease-out);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface-white);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

picture {
  display: contents;
}

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

button,
a {
  touch-action: manipulation;
}

button {
  border: 0;
}

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

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd {
  margin: 0;
}

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

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.5rem, 4.45vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.042em;
  line-height: 1;
}

h2 {
  font-size: clamp(2.75rem, 3.9vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h3 {
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

::selection {
  background: rgba(69, 201, 242, 0.28);
}

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

[hidden] {
  display: none !important;
}

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

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

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-blue {
  color: var(--brand-700);
}

.section-lead {
  color: var(--ink-600);
  font-size: 1.125rem;
  line-height: 1.65;
}

.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--surface-white);
  color: var(--ink-950);
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(7, 20, 37, 0.2);
}

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

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

  h1 {
    font-size: clamp(3rem, 7vw, 3.5rem);
  }

  h2 {
    font-size: clamp(2.4rem, 5.7vw, 3rem);
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 20px;
  }

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

  body {
    line-height: 1.6;
  }

  h1 {
    font-size: clamp(2.45rem, 10.67vw, 2.75rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(2.1rem, 9vw, 2.35rem);
    line-height: 1.08;
  }

  h3 {
    font-size: 1.375rem;
  }

  .section-lead {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .process-pointer-glow {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .process-pointer-glow {
    display: none;
  }
}
