:root {
  --navy: #152544;
  --navy-deep: #101e38;
  --blue: #0ea9ed;
  --blue-bright: #10aef4;
  --blue-soft: #5590f4;
  --ink: #2a4080;
  --white: #ffffff;
  --text: #f8fbff;
  --muted: #d8e3f6;
  --shadow: 0 20px 42px rgba(4, 15, 33, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family:
    Avenir,
    "Avenir Next",
    Montserrat,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

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