:root {
  color-scheme: light dark;
  --paper: #f4f6f8;
  --surface: #ffffff;
  --ink: #102238;
  --ink-soft: #526174;
  --line: #ccd3db;
  --navy: #1d2d44;
  --navy-deep: #0d1b2a;
  --magenta: #b12baa;
  --magenta-deep: #8f1f8b;
  --teal: #2ab7b2;
  --shadow: 0 24px 70px rgba(13, 27, 42, .12);
  --max-width: 1380px;
  --gutter: clamp(1.25rem, 4vw, 5rem);
  --section-space: clamp(5.5rem, 10vw, 10rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Satoshi", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Cabinet Grotesk", sans-serif;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.1rem, 5.4vw, 6.25rem);
  font-weight: 600;
  letter-spacing: -.05em;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 5.3rem);
  font-weight: 600;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: .75rem;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -.025em;
}

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

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--navy-deep);
  color: #fff;
  transform: translateY(-150%);
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
