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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--color-bg-soft);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.4;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  background: var(--color-bg-soft);
  position: relative;
  overflow: hidden;
}

.container,
.shell {
  width: 100%;
  max-width: var(--canvas);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--content {
  max-width: var(--content);
  padding-inline: 0;
}

.shell--canvas {
  max-width: var(--canvas);
  padding-inline: 0;
}

.eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  color: var(--color-brand-orange);
}

.heading-xl,
.heading-lg,
.heading-md {
  margin: 0;
  text-transform: uppercase;
  font-weight: 500;
}

.heading-xl {
  font-size: 48px;
  line-height: 1.05;
  color: var(--color-white);
}

.heading-lg {
  font-size: 40px;
  line-height: 1.1;
}

.heading-md {
  font-size: 32px;
  line-height: 1.15;
}

.heading-xl .is-strong,
.heading-lg .is-strong,
.heading-md .is-strong {
  font-weight: 800;
}

.lede {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.64px;
  color: #d9d9d9;
}

.is-hidden {
  display: none !important;
}

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

body.is-nav-locked {
  overflow: hidden;
}

@media (max-width: 720px) {
  .heading-xl {
    font-size: 28px;
    line-height: 34px;
  }

  .heading-lg {
    font-size: 24px;
    line-height: 34px;
  }

  .heading-md {
    font-size: 24px;
    line-height: 28px;
  }

  .lede {
    font-size: 14px;
    line-height: 20px;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.96px;
  }
}
