/* Local-only font aliases prevent broken network requests until licensed WOFF2 files are supplied. */
@font-face {
  font-family: 'Brand Sans';
  src: local('Helvetica Neue Light'), local('Arial');
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: 'Brand Sans';
  src: local('Helvetica Neue'), local('Arial');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Brand Sans';
  src: local('Helvetica Neue Medium'), local('Arial');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Brand Sans';
  src: local('Helvetica Neue Bold'), local('Arial Bold');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Display Year';
  src: local('Arial Bold');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 7rem);
  background: var(--white);
}

body {
  margin: 0;
  min-width: 32rem;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: 'Brand Sans', Arial, sans-serif;
  font-size: var(--body);
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-scroll-locked {
  overflow: hidden;
  touch-action: none;
}

::selection {
  color: var(--white);
  background: var(--red);
}

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

img,
video {
  width: 100%;
  height: auto;
}

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

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

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

button {
  border: 0;
  background: none;
}

button:not(:disabled),
[role='button']:not([aria-disabled='true']) {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .6;
}

:focus-visible {
  outline: .25rem solid var(--red);
  outline-offset: .35rem;
}

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

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

h1,
h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.022em;
}

p {
  text-wrap: pretty;
}

main {
  min-height: 70vh;
}

[hidden] {
  display: none !important;
}

.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;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 1rem 1.4rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  transition: transform .2s var(--ease-standard);
}

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

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

.section {
  position: relative;
  z-index: 1;
  padding-block: clamp(8rem, 9vw, 17rem);
}

.section--soft {
  background: var(--gray-200);
}

.section--dark {
  color: var(--white);
  background: var(--footer);
}

.section--red {
  color: var(--white);
  background: var(--red-gradient);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2rem;
  color: var(--red);
  font-size: var(--helper);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  background: currentColor;
  content: '';
}

.eyebrow--light {
  color: var(--white);
}

.display-title {
  max-width: 14ch;
  font-size: var(--major-heading);
}

.hero-title {
  font-size: var(--hero);
  line-height: 1.07;
  letter-spacing: -.025em;
}

.section-title {
  max-width: 18ch;
  font-size: var(--section-heading);
}

.lead {
  max-width: 62ch;
  color: var(--gray-600);
  font-size: var(--lead);
  line-height: 1.45;
}

.section--dark .lead,
.section--red .lead {
  color: rgb(255 255 255 / .72);
}

.meta {
  color: var(--gray-600);
  font-size: var(--helper);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.divider {
  width: 100%;
  height: 1px;
  background: rgb(112 112 112 / .22);
}

.rich-copy {
  display: grid;
  gap: 1.6rem;
  max-width: 72ch;
}

.rich-copy h2 {
  margin-top: 4rem;
  font-size: var(--section-label);
}

.rich-copy h3 {
  margin-top: 2.4rem;
  font-size: var(--card-title);
}

.rich-copy p,
.rich-copy li {
  color: var(--gray-600);
}

.rich-copy ul {
  display: grid;
  gap: .8rem;
  padding-left: 2rem;
  list-style: disc;
}

.reveal {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(2.2rem);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

[data-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

[data-stagger].is-visible > *:nth-child(2) { transition-delay: .06s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: .12s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: .18s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: .24s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: .3s; }

.word-reveal {
  display: inline-block;
  overflow: clip;
  vertical-align: top;
}

.word-reveal > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(3rem) skewY(8deg);
  transform-origin: left bottom;
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}

.is-active .word-reveal > span {
  opacity: 1;
  transform: none;
}

@media (max-width: 1023px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }

  .section {
    padding-block: 9rem;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .display-title {
    max-width: none;
  }

  .hero-title {
    font-size: 5.8rem;
    line-height: 6.4rem;
  }
}

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

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

  .reveal,
  [data-stagger] > *,
  .word-reveal > span {
    opacity: 1 !important;
    transform: none !important;
  }
}
