:root {
  --ink: #f7fbff;
  --muted: #94a8bb;
  --muted-bright: #c4d1dd;
  --navy-950: #050d16;
  --navy-900: #07121f;
  --navy-850: #0a1b2b;
  --navy-800: #0d2438;
  --blue: #1597f5;
  --cyan: #61d7ff;
  --gold: #c6a15b;
  --orange: #ff7a45;
  --line: #b6dbf524;
  --soft-line: #ffffff14;
  --shell: min(1180px, calc(100% - 48px));
  --header-height: 88px;
  --radius-lg: 42px;
  --radius-md: 28px;
  color-scheme: dark;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--navy-950);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 5% 12%, rgba(18, 115, 181, 0.12), transparent 27rem),
    var(--navy-950);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

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

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

h2 {
  max-width: 840px;
  margin-bottom: 25px;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 820;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

h3 {
  letter-spacing: -0.025em;
}

p {
  color: var(--muted-bright);
  line-height: 1.72;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  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;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.kicker {
  margin: 0 0 24px;
  color: #aac7d9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.27em;
  line-height: 1.6;
  text-transform: uppercase;
}

.kicker.blue {
  color: var(--cyan);
}

.lead,
.section-lead {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 16px;
}

.section-lead {
  font-size: 17px;
}
