@font-face {
  font-family: "Archivo";
  src: url("assets/archivo-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/newsreader-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --paper: #f3f0e8;
  --ink: #121212;
  --muted: #65625d;
  --line: rgba(18, 18, 18, 0.24);
  --coral: #f0644b;
  --blue: #2535d0;
  --page-pad: clamp(1.25rem, 4vw, 4.75rem);
  --header-h: 5.4rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

::selection {
  color: #fff;
  background: var(--blue);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  min-height: var(--header-h);
  padding: 1rem var(--page-pad);
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.8rem;
  text-decoration: none;
}

.brand__mark {
  width: 2.75rem;
  flex: 0 0 auto;
}

.brand__calibration { fill: var(--coral); }

.brand__name {
  display: inline-flex;
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  font-weight: 790;
  letter-spacing: 0.105em;
  line-height: 1;
  white-space: nowrap;
}

.brand__tech { color: var(--blue); }
.brand--footer .brand__tech { color: var(--coral); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3.25rem);
}

.site-nav a {
  position: relative;
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  z-index: 4;
  display: none;
  align-items: center;
  border: 0;
  padding: 0.45rem 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  gap: 0.65rem;
}

.menu-toggle__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 1.6rem;
  height: 1rem;
}

.menu-toggle__icon i {
  position: absolute;
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease;
}

.menu-toggle__icon i:first-child { top: 0.2rem; }
.menu-toggle__icon i:last-child { top: 0.72rem; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { top: 0.48rem; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { top: 0.48rem; transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.92fr);
  min-height: min(59rem, 100svh);
  padding: calc(var(--header-h) + 3rem) var(--page-pad) 3rem;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background: var(--coral);
  content: "";
}

.hero__copy,
.hero__media {
  min-width: 0;
}

.hero__copy {
  align-self: center;
  max-width: 58rem;
  padding: 2rem clamp(1rem, 5vw, 6rem) 2rem 0;
}

.eyebrow {
  margin: 0 0 1.7rem;
  font-size: 0.69rem;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4rem, 8.6vw, 9.5rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.hero h1 em {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 350;
  letter-spacing: -0.045em;
}

.hero__intro {
  max-width: 37rem;
  margin: clamp(2.4rem, 5vw, 4.75rem) 0 1.8rem;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  gap: 2rem;
  transition: gap 180ms ease;
}

.text-link:hover { gap: 2.6rem; }

.hero__media {
  position: relative;
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  background: #d6c9bb;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--blue);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__index {
  position: absolute;
  bottom: 2.2rem;
  left: var(--page-pad);
  margin: 0;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.signal-strip {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--blue);
  color: #fff;
}

.signal-strip p {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0.9rem var(--page-pad);
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 6rem);
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signal-strip b { color: var(--coral); }

.section-shell {
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.focus {
  padding-top: clamp(6rem, 11vw, 11rem);
  padding-bottom: clamp(6rem, 11vw, 11rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(9rem, 0.65fr) minmax(0, 1.65fr) minmax(15rem, 0.7fr);
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
  gap: clamp(1.5rem, 4vw, 5rem);
}

.section-heading > * { min-width: 0; }

.section-heading h2,
.method h2,
.momentum h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6.2vw, 7.2rem);
  font-weight: 660;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.section-heading > p:last-child {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.focus-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.focus-row {
  display: grid;
  grid-template-columns: minmax(3rem, 0.5fr) minmax(11rem, 1fr) minmax(16rem, 1.3fr) auto;
  align-items: center;
  min-height: 8.5rem;
  border-bottom: 1px solid var(--ink);
  gap: 1.5rem;
}

.focus-row > * { min-width: 0; }

.focus-row__number,
.focus-row p {
  margin: 0;
}

.focus-row__number {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.focus-row h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 420;
  letter-spacing: -0.035em;
}

.focus-row p:not(.focus-row__number) {
  max-width: 37rem;
  color: var(--muted);
}

.focus-row > span {
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.focus-row:hover > span { transform: translateX(0.4rem); }

.campaign-break {
  position: relative;
  min-height: clamp(30rem, 66vw, 58rem);
  overflow: hidden;
  background: #111;
}

.campaign-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-break__stamp {
  position: absolute;
  bottom: var(--page-pad);
  left: var(--page-pad);
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.4rem 1.35rem;
  color: #fff;
  background: var(--blue);
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.82;
  transform: rotate(-3deg);
}

.campaign-break__stamp span:nth-child(2) {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 320;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.65fr);
  padding-top: clamp(6rem, 11vw, 11rem);
  padding-bottom: clamp(6rem, 11vw, 11rem);
  gap: clamp(3rem, 7vw, 8rem);
}

.method > * { min-width: 0; }

.method__title .eyebrow { color: var(--blue); }

.method__body {
  align-self: end;
  max-width: 32rem;
}

.method__body p { margin: 0; }

.method__lead {
  margin-bottom: 1.5rem !important;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  line-height: 1.08;
}

.method__body p:last-child { color: var(--muted); }

.method__steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(2.5rem, 5vw, 5rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.method__steps li {
  min-width: 0;
  min-height: 13rem;
  padding: 1.5rem 2.2rem 1.5rem 0;
  border-right: 1px solid var(--ink);
}

.method__steps li + li { padding-left: 2.2rem; }
.method__steps li:last-child { border-right: 0; }

.method__steps span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method__steps p {
  max-width: 24rem;
  margin: 3.6rem 0 0;
  font-size: 1.05rem;
}

.momentum {
  position: relative;
  display: grid;
  min-height: min(54rem, 92svh);
  overflow: hidden;
  color: #fff;
  background: #12100f;
  isolation: isolate;
}

.momentum__image,
.momentum__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.momentum__image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.momentum__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 6, 6, 0.25) 0%, rgba(8, 6, 6, 0.34) 43%, rgba(8, 6, 6, 0.9) 78%, #080606 100%);
}

.momentum__copy {
  align-self: center;
  width: min(46rem, 52vw);
  margin-left: auto;
  padding: 5rem var(--page-pad) 5rem 3rem;
}

.momentum__copy .eyebrow { color: var(--coral); }

.momentum__copy p:not(.eyebrow) {
  max-width: 35rem;
  margin: 2.2rem 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.text-link--light { color: #fff; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) minmax(16rem, 1fr) minmax(11rem, 1fr);
  align-items: end;
  padding: clamp(4rem, 8vw, 7.5rem) var(--page-pad) 2rem;
  color: #fff;
  background: var(--blue);
  gap: clamp(2rem, 5vw, 5rem);
}

.site-footer > * { min-width: 0; }
.brand--footer { align-self: start; }

.site-footer address {
  font-size: clamp(0.83rem, 1.1vw, 0.98rem);
  font-style: normal;
  line-height: 1.75;
}

.site-footer address strong { letter-spacing: 0.05em; }

.site-footer__end {
  text-align: right;
}

.site-footer__end a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__end p {
  margin: 3rem 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.82fr);
    min-height: 50rem;
  }

  .hero h1 { font-size: clamp(4rem, 9vw, 7rem); }

  .section-heading {
    grid-template-columns: minmax(8rem, 0.45fr) minmax(0, 1.55fr);
  }

  .section-heading > p:last-child {
    grid-column: 2;
    max-width: 34rem;
  }

  .focus-row {
    grid-template-columns: 3rem minmax(9rem, 0.7fr) minmax(0, 1fr) auto;
  }

  .method { grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.65fr); }
}

@media (max-width: 760px) {
  :root { --header-h: 4.8rem; }

  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    color: var(--ink);
  }

  .brand__mark { width: 2.25rem; }

  .menu-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-h) + 4rem) var(--page-pad) 3rem;
    color: #fff;
    background: var(--blue);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    gap: 0;
  }

  .site-nav::before {
    margin-bottom: 2.5rem;
    color: var(--coral);
    content: "Navigate";
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .site-nav a {
    width: 100%;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(2.8rem, 14vw, 5rem);
    font-weight: 320;
    letter-spacing: -0.045em;
    text-transform: none;
  }

  .site-nav a::after { display: none; }

  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .menu-open .site-header { color: #fff; }
  .menu-open .brand__tech { color: var(--coral); }

  .hero {
    display: flex;
    min-height: 0;
    padding: calc(var(--header-h) + 1rem) var(--page-pad) 4.5rem;
    flex-direction: column;
  }

  .hero::before {
    top: 0;
    width: 35%;
    height: calc(var(--header-h) + 18rem);
  }

  .hero__media {
    order: 1;
    width: calc(100% + var(--page-pad));
    min-height: clamp(22rem, 112vw, 34rem);
    margin-left: 0;
  }

  .hero__copy {
    order: 2;
    padding: 3.2rem 0 0;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 6.4rem);
    line-height: 0.8;
  }

  .hero__intro { margin-top: 2.6rem; }
  .hero__index { display: none; }

  .signal-strip p { justify-content: flex-start; }
  .signal-strip p span:nth-of-type(n + 3),
  .signal-strip p b:nth-of-type(n + 3) { display: none; }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow { margin-bottom: 2rem; }

  .section-heading > p:last-child {
    max-width: 32rem;
    margin-top: 2rem;
  }

  .focus-row {
    grid-template-columns: 2.4rem minmax(0, 1fr) auto;
    align-items: start;
    padding: 1.8rem 0;
  }

  .focus-row h3 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .focus-row p:not(.focus-row__number) { grid-column: 2 / -1; }
  .focus-row > span { grid-column: 3; grid-row: 1; }

  .campaign-break { min-height: 34rem; }
  .campaign-break img { object-position: 62% center; }

  .method { display: block; }
  .method__body { margin-top: 3rem; }

  .method__steps {
    display: block;
    margin-top: 4rem;
  }

  .method__steps li,
  .method__steps li + li {
    min-height: 0;
    padding: 1.5rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .method__steps p { margin-top: 2rem; }

  .momentum {
    min-height: 48rem;
    align-items: end;
  }

  .momentum__image { object-position: 27% center; }

  .momentum__shade {
    background: linear-gradient(180deg, rgba(8, 6, 6, 0.12) 0%, rgba(8, 6, 6, 0.22) 35%, rgba(8, 6, 6, 0.95) 78%, #080606 100%);
  }

  .momentum__copy {
    width: 100%;
    margin: 0;
    padding: 13rem var(--page-pad) 4rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__end {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    text-align: left;
  }

  .site-footer__end p { margin-top: 1.5rem; }
}

@media (max-width: 390px) {
  .brand__name { font-size: 0.78rem; }
  .menu-toggle__label { display: none; }
}

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

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

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
