:root {
  --navy: #001329;
  --navy-2: #071b32;
  --black: #05070a;
  --white: #ffffff;
  --cream: #f1eee6;
  --paper: #f7f7f2;
  --blue: #4b8bff;
  --blue-deep: #28538e;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(0, 19, 41, 0.18);
  --muted-dark: #91a0b2;
  --muted-light: #4b5c70;
  --sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --container: min(100% - 40px, 1540px);
  --header-h: 92px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--navy);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
::selection { background: var(--blue); color: var(--navy); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--navy);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1001;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin-inline: auto;
  color: var(--white);
  transition: color .35s var(--ease), transform .35s var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: .18;
}
.site-header.is-hidden { transform: translateY(-110%); }
.site-header[data-current-theme="light"] { color: var(--navy); }
.site-header[data-current-theme="dark"] { color: var(--white); }

.brand { position: relative; z-index: 3; display: inline-flex; width: clamp(142px, 12vw, 190px); }
.brand-logo { width: 100%; height: auto; transition: opacity .25s ease; }
.brand-logo--dark { position: absolute; inset: 0; opacity: 0; }
.site-header[data-current-theme="light"] .brand-logo--light { opacity: 0; }
.site-header[data-current-theme="light"] .brand-logo--dark { opacity: 1; }

.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.desktop-nav a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: right .25s var(--ease);
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 11px 15px 11px 18px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-cta:hover, .nav-cta:focus-visible { background: currentColor; color: var(--navy); }
.site-header[data-current-theme="light"] .nav-cta:hover,
.site-header[data-current-theme="light"] .nav-cta:focus-visible { color: var(--white); }

.menu-button {
  display: none;
  position: relative;
  z-index: 102;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 1px;
  background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.menu-button span:first-child { top: 20px; }
.menu-button span:last-child { top: 28px; }
.menu-button[aria-expanded="true"] span:first-child { top: 24px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 24px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  opacity: 0;
  background: var(--blue);
  color: var(--navy);
  transition: opacity .35s var(--ease), visibility .35s;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu__inner {
  width: var(--container);
  min-height: 100%;
  margin-inline: auto;
  padding: calc(var(--header-h) + 54px) 0 40px;
  display: flex;
  flex-direction: column;
}
.mobile-menu nav { display: grid; margin-top: 40px; }
.mobile-menu nav a {
  display: flex;
  align-items: center;
  min-height: 1.16em;
  border-top: 1px solid rgba(0,19,41,.25);
  text-decoration: none;
  font-size: clamp(46px, 10vw, 92px);
  line-height: 1;
  letter-spacing: -.06em;
}
.mobile-menu nav a:last-child { border-bottom: 1px solid rgba(0,19,41,.25); }
.mobile-menu__note { margin-top: auto; max-width: 20ch; font-size: 18px; }

section { position: relative; }
.section-dark { background: var(--navy); color: var(--white); }
.section-light { background: var(--paper); color: var(--navy); }
.section-cream { background: var(--cream); color: var(--navy); }
.section-blue { background: var(--blue); color: var(--navy); }

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
}
.section-label {
  width: var(--container);
  margin-inline: auto;
  padding: 28px 0;
  border-bottom: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: .7;
}
.display-copy {
  margin: 0;
  font-size: clamp(52px, 7.3vw, 128px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 500;
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-h) + 54px) max(20px, calc((100vw - 1540px) / 2)) 34px;
  display: flex;
  flex-direction: column;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  opacity: .45;
}
.hero-topline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  color: rgba(255,255,255,.72);
}
.hero-copy {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vh 0 3vh;
}
.hero-copy > .eyebrow { margin-bottom: 22px; color: var(--blue); }
.hero-title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(72px, 11.1vw, 194px);
  line-height: .78;
  letter-spacing: -.078em;
  font-weight: 500;
}
.hero-title__line { display: block; }
.hero-title__line:not(.hero-title__line--long) { white-space: nowrap; }
.hero-title__line--accent { color: var(--blue); }
.hero-title__line--long {
  margin-top: .08em;
  font-size: .63em;
  line-height: .98;
  letter-spacing: -.06em;
}
.hero-bottom {
  margin-top: clamp(46px, 6vh, 84px);
  margin-left: min(25vw, 390px);
  display: grid;
  grid-template-columns: minmax(300px, 720px) minmax(260px, 390px);
  align-items: end;
  gap: 36px;
}
.hero-message { display: grid; gap: 20px; }
.hero-intro {
  margin: 0;
  max-width: 62ch;
  color: rgba(255,255,255,.76);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.45;
}
.hero-trust {
  margin: 0;
  max-width: 70ch;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.hero-actions {
  display: grid;
  gap: 12px;
  align-self: end;
}
.button {
  min-height: 55px;
  padding: 0 21px;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: transparent;
  color: inherit;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button--light { background: var(--white); color: var(--navy); border-color: var(--white); }
.button--light:hover, .button--light:focus-visible { background: var(--blue); border-color: var(--blue); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.4); }
.button--ghost:hover, .button--ghost:focus-visible { background: rgba(255,255,255,.08); border-color: var(--white); }
.hero-index {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1540px) / 2));
  bottom: 28px;
  display: flex;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .1em;
  opacity: .55;
}
.hero-orbit {
  position: absolute;
  right: -4vw;
  top: 13vh;
  width: clamp(260px, 38vw, 680px);
  aspect-ratio: 1;
  opacity: .82;
  pointer-events: none;
  transform: translate3d(var(--pointer-x, 0px), var(--pointer-y, 0px), 0);
  transition: transform .2s linear;
}
.hero-orbit::before, .hero-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(75,139,255,.25);
  transform: rotate(45deg);
}
.hero-orbit::after { inset: 26%; transform: rotate(0deg); }
.hero-orbit__mark {
  position: absolute;
  width: 27%;
  left: 36.5%;
  top: 36%;
  opacity: .13;
}
.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(75,139,255,.22);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}
.orbit::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 10%;
  left: 23%;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 12px rgba(75,139,255,.08);
}
.orbit--two { inset: 17%; animation-duration: 13s; animation-direction: reverse; }
.orbit--two::before { top: auto; bottom: 5%; left: 65%; width: 9px; height: 9px; }
.orbit--three { inset: 32%; animation-duration: 8s; }
.orbit--three::before { top: 48%; left: -5px; width: 7px; height: 7px; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.ticker {
  overflow: hidden;
  background: var(--blue);
  color: var(--navy);
  border-block: 1px solid var(--navy);
}
.ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 16px 0;
  animation: ticker 28s linear infinite;
  font-size: clamp(28px, 3.7vw, 64px);
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 700;
}
.ticker__track i { width: 11px; height: 11px; border-radius: 50%; background: var(--navy); }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

.manifesto { min-height: 100svh; overflow: hidden; padding-bottom: clamp(100px, 11vw, 180px); }
.manifesto-grid {
  width: var(--container);
  margin-inline: auto;
  padding: clamp(80px, 11vw, 180px) 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 31%);
  align-items: end;
  gap: 8vw;
}
.manifesto-grid .display-copy { max-width: 13ch; }
.manifesto-aside { font-size: clamp(18px, 1.4vw, 23px); line-height: 1.45; }
.manifesto-aside p { margin: 0 0 1.4em; }
.manifesto-aside p:last-child { margin-bottom: 0; }
.threshold-wrap {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
}
.threshold-line {
  position: relative;
  height: 2px;
  margin-bottom: 28px;
  background: rgba(0,19,41,.15);
}
.threshold-line::before,
.threshold-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--navy);
}
.threshold-line::before { left: 0; }
.threshold-line::after { right: 0; }
.threshold-line span {
  position: absolute;
  left: 33.333%;
  right: 33.333%;
  top: -3px;
  height: 8px;
  background: var(--blue);
}
.threshold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.threshold-card {
  min-height: 290px;
  padding: 28px 30px 34px 0;
  border-right: 1px solid var(--line-light);
}
.threshold-card + .threshold-card { padding-left: 30px; }
.threshold-card:last-child { border-right: 0; }
.threshold-card--active { background: var(--navy); color: var(--white); padding-right: 30px; }
.threshold-number {
  margin: 0 0 58px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .62;
}
.threshold-card h3 {
  max-width: 10ch;
  margin: 0 0 20px;
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 500;
}
.threshold-card > p:last-child {
  max-width: 36ch;
  margin: 0;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.5;
}
.threshold-card--active > p:last-child { color: rgba(255,255,255,.7); }

.manifesto-stamp {
  position: absolute;
  right: -1.5vw;
  bottom: -5.5vw;
  display: grid;
  grid-template-columns: repeat(4, auto);
  font-size: clamp(110px, 18vw, 330px);
  line-height: .7;
  letter-spacing: -.1em;
  color: rgba(0,19,41,.055);
  font-weight: 800;
  user-select: none;
}

.services { padding-bottom: 130px; }
.services-header {
  width: var(--container);
  margin-inline: auto;
  padding: clamp(80px, 10vw, 160px) 0 80px;
  display: grid;
  grid-template-columns: 1fr minmax(250px, 31%);
  align-items: end;
  gap: 8vw;
}
.services-intro { display: grid; gap: 22px; }
.services-intro p { margin: 0; font-size: clamp(18px, 1.35vw, 23px); line-height: 1.45; }
.services-intro p:last-child { color: var(--muted-light); }
.service-list { width: var(--container); margin-inline: auto; border-top: 1px solid var(--navy); }
.service-item { border-bottom: 1px solid var(--navy); }
.service-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: 90px 1fr 60px;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  cursor: pointer;
}
.service-item summary::-webkit-details-marker { display: none; }
.service-number { font-size: 12px; letter-spacing: .12em; }
.service-title { font-size: clamp(34px, 4.4vw, 78px); line-height: .92; letter-spacing: -.055em; }
.service-toggle { justify-self: end; font-size: 38px; font-weight: 300; transition: transform .3s var(--ease); }
.service-item[open] .service-toggle { transform: rotate(45deg); }
.service-body {
  display: grid;
  grid-template-columns: 90px minmax(260px, 1fr) minmax(240px, 42%);
  gap: 16px;
  padding: 12px 60px 44px 0;
}
.service-body::before { content: ""; }
.service-body p { margin: 0; max-width: 54ch; font-size: clamp(18px, 1.5vw, 24px); line-height: 1.4; }
.service-body ul { margin: 0; padding: 0; list-style: none; }
.service-body li { padding: 10px 0; border-top: 1px solid rgba(0,19,41,.22); font-size: 14px; }
.service-body li:last-child { border-bottom: 1px solid rgba(0,19,41,.22); }

.audiences { padding-bottom: clamp(100px, 10vw, 160px); }
.audiences-intro {
  width: var(--container);
  margin-inline: auto;
  padding: clamp(80px, 10vw, 150px) 0 70px;
  display: grid;
  grid-template-columns: 1fr minmax(250px, 31%);
  align-items: end;
  gap: 8vw;
}
.audiences-intro p { margin: 0; font-size: clamp(18px, 1.35vw, 23px); line-height: 1.45; color: rgba(255,255,255,.72); }
.audience-cards {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.audience-card {
  min-height: 690px;
  padding: clamp(26px, 3vw, 52px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.audience-card--blue { background: var(--blue); color: var(--navy); }
.audience-card--white { background: var(--paper); color: var(--navy); }
.audience-card__top { display: flex; align-items: center; justify-content: space-between; }
.audience-card__top > span:last-child { font-size: 32px; }
.audience-card h3 {
  max-width: 12ch;
  margin: 90px 0 28px;
  font-size: clamp(50px, 5vw, 84px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 500;
}
.audience-card p { position: relative; z-index: 2; max-width: 47ch; margin: 0; font-size: 17px; line-height: 1.5; }
.audience-card__list {
  position: relative;
  z-index: 2;
  margin: auto 0 0;
  padding: 28px 0 0;
  list-style: none;
  max-width: 48ch;
}
.audience-card__list li {
  padding: 13px 0;
  border-top: 1px solid rgba(0,19,41,.24);
  font-size: 14px;
}
.audience-card__list li:last-child { border-bottom: 1px solid rgba(0,19,41,.24); }
.audience-card__graphic {
  position: absolute;
  right: -10%;
  bottom: -14%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(0,19,41,.28);
}
.audience-card__graphic span {
  position: absolute;
  width: 16%;
  height: 72%;
  top: 13%;
  border-radius: 999px;
  background: rgba(0,19,41,.18);
  transform: rotate(45deg);
}
.audience-card__graphic span:nth-child(1) { left: 12%; }
.audience-card__graphic span:nth-child(2) { left: 31%; }
.audience-card__graphic span:nth-child(3) { left: 50%; }
.audience-card__graphic span:nth-child(4) { left: 69%; }
.audience-card__matrix {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.audience-card__matrix span {
  aspect-ratio: 1;
  border: 1px solid rgba(0,19,41,.2);
  display: grid;
  place-items: center;
  font-size: clamp(24px, 3.3vw, 58px);
  font-weight: 700;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.audience-card__matrix span:nth-child(3), .audience-card__matrix span:nth-child(4) { background: var(--navy); color: var(--white); transform: translateY(-14px); }
.audience-card:hover .audience-card__matrix span:nth-child(3), .audience-card:hover .audience-card__matrix span:nth-child(4) { transform: translateY(0); }

.approach { padding-bottom: 140px; }
.approach-layout {
  width: var(--container);
  margin-inline: auto;
  padding-top: clamp(80px, 10vw, 150px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 42%);
  gap: 8vw;
}
.approach-heading { position: sticky; top: 130px; align-self: start; }
.approach-heading .eyebrow { margin-bottom: 22px; }
.approach-heading .display-copy { max-width: 8ch; }
.approach-mark { width: 110px; margin-top: 70px; }
.approach-steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--navy); }
.approach-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 25px;
  padding: 35px 0 68px;
  border-bottom: 1px solid var(--navy);
}
.approach-steps > li > span { padding-top: 7px; font-size: 12px; letter-spacing: .12em; }
.approach-steps h3 { margin: 0 0 18px; font-size: clamp(40px, 4.5vw, 72px); line-height: .9; letter-spacing: -.055em; font-weight: 500; }
.approach-steps p { margin: 0; max-width: 42ch; color: var(--muted-light); font-size: 17px; line-height: 1.5; }

.statement { padding: 50px 0; }
.statement-grid {
  width: var(--container);
  min-height: 78svh;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 160px 1fr 90px;
  align-items: start;
  gap: 4vw;
  padding: clamp(70px, 9vw, 140px) 0;
  border-block: 1px solid rgba(0,19,41,.25);
}
.statement blockquote {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(58px, 8.3vw, 145px);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 500;
}
.statement-index { justify-self: end; font-size: 12px; letter-spacing: .12em; }


.proof { padding-bottom: clamp(95px, 10vw, 160px); }
.proof-header {
  width: var(--container);
  margin-inline: auto;
  padding: clamp(80px, 10vw, 150px) 0 75px;
  display: grid;
  grid-template-columns: 1fr minmax(250px, 31%);
  align-items: end;
  gap: 8vw;
}
.proof-header .display-copy { max-width: 12ch; }
.proof-header > p {
  margin: 0;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.45;
}
.proof-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.proof-card {
  min-height: 720px;
  padding: clamp(26px, 3.2vw, 54px);
  display: flex;
  flex-direction: column;
}
.proof-card--navy { background: var(--navy); color: var(--white); }
.proof-card--paper { background: var(--paper); color: var(--navy); }
.proof-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  opacity: .65;
}
.proof-card h3 {
  max-width: 11ch;
  margin: 80px 0 60px;
  font-size: clamp(48px, 5vw, 84px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 500;
}
.proof-stats {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.proof-stats > div {
  min-height: 180px;
  padding: 22px 18px 22px 0;
  border-right: 1px solid currentColor;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.proof-stats > div + div { padding-left: 18px; }
.proof-stats > div:last-child { border-right: 0; }
.proof-stats strong {
  font-size: clamp(38px, 4vw, 68px);
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 500;
}
.proof-stats span {
  max-width: 16ch;
  font-size: 12px;
  line-height: 1.35;
  opacity: .65;
}
.proof-copy {
  max-width: 56ch;
  margin: 30px 0 0;
  font-size: 15px;
  line-height: 1.5;
  opacity: .72;
}
.proof-quote {
  width: var(--container);
  max-width: 16ch;
  margin: clamp(90px, 10vw, 150px) auto 0;
  font-size: clamp(56px, 7.5vw, 126px);
  line-height: .89;
  letter-spacing: -.065em;
  font-weight: 500;
}

.fit { padding-bottom: clamp(100px, 11vw, 170px); }
.fit-header {
  width: var(--container);
  margin-inline: auto;
  padding: clamp(80px, 10vw, 150px) 0 75px;
  display: grid;
  grid-template-columns: 1fr minmax(250px, 31%);
  align-items: end;
  gap: 8vw;
}
.fit-header .display-copy { max-width: 11ch; }
.fit-header > p {
  margin: 0;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.45;
}
.fit-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}
.fit-panel {
  min-height: 570px;
  padding: 34px clamp(25px, 3vw, 52px) 50px 0;
}
.fit-panel + .fit-panel {
  border-left: 1px solid var(--navy);
  padding-left: clamp(25px, 3vw, 52px);
}
.fit-panel--yes .eyebrow::before,
.fit-panel--no .eyebrow::before {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-right: 11px;
  border-radius: 50%;
  vertical-align: middle;
  font-size: 13px;
}
.fit-panel--yes .eyebrow::before { content: "✓"; background: var(--blue); }
.fit-panel--no .eyebrow::before { content: "×"; border: 1px solid currentColor; }
.fit-panel ul {
  margin: 100px 0 0;
  padding: 0;
  list-style: none;
}
.fit-panel li {
  position: relative;
  padding: 17px 0 17px 30px;
  border-top: 1px solid var(--line-light);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.35;
}
.fit-panel li:last-child { border-bottom: 1px solid var(--line-light); }
.fit-panel li::before {
  content: "↳";
  position: absolute;
  left: 0;
  top: 17px;
  font-size: 15px;
}
.faq-block {
  width: var(--container);
  margin: clamp(100px, 11vw, 170px) auto 0;
  display: grid;
  grid-template-columns: minmax(250px, 31%) 1fr;
  gap: 8vw;
}
.faq-heading h3 {
  max-width: 9ch;
  margin: 22px 0 0;
  font-size: clamp(44px, 5vw, 80px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 500;
}
.faq-list { border-top: 1px solid var(--navy); }
.faq-item { border-bottom: 1px solid var(--navy); }
.faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  font-size: clamp(24px, 2.25vw, 38px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span:last-child {
  justify-self: end;
  font-size: 31px;
  font-weight: 300;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary span:last-child { transform: rotate(45deg); }
.faq-item > p {
  max-width: 68ch;
  margin: 0;
  padding: 0 60px 35px 0;
  color: var(--muted-light);
  font-size: 17px;
  line-height: 1.55;
}

.contact { padding-bottom: 50px; }
.contact-head {
  width: var(--container);
  margin-inline: auto;
  padding: clamp(90px, 10vw, 155px) 0 90px;
}
.contact-head .eyebrow { color: var(--blue); margin-bottom: 28px; }
.contact-head h2 {
  margin: 0;
  font-size: clamp(84px, 13vw, 220px);
  line-height: .76;
  letter-spacing: -.08em;
  font-weight: 500;
}
.contact-head h2 span { color: var(--blue); }
.contact-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(250px, 31%) 1fr;
  gap: 8vw;
  padding-top: 42px;
  border-top: 1px solid var(--line-dark);
}
.contact-intro { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,.76); }
.contact-intro p { margin: 0 0 24px; }
.contact-note { font-size: 12px; color: var(--muted-dark); }
.contact-form { display: grid; gap: 25px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: grid; gap: 10px; }
.contact-form label > span { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.58); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.35);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  padding: 12px 0 15px;
  outline: none;
  transition: border-color .2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.35); }
.contact-form select { color-scheme: dark; }
.contact-form textarea { resize: vertical; min-height: 115px; }
.form-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.form-status { margin: 0; max-width: 44ch; font-size: 13px; color: var(--muted-dark); }
.form-status.is-error { color: #ff9d9d; }
.form-status.is-success { color: #90e6c0; }

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 70px max(20px, calc((100vw - 1540px) / 2)) 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.site-footer__brand img { width: min(440px, 68vw); }
.site-footer__brand p { margin: 24px 0 0; color: var(--muted-dark); }
.site-footer__meta { justify-self: end; max-width: 370px; font-size: 17px; line-height: 1.45; }
.site-footer__meta p { margin: 0 0 30px; }
.site-footer__meta a { text-underline-offset: 5px; }
.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--muted-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { transition-delay: .06s; }
.hero .reveal:nth-child(3) { transition-delay: .12s; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
}

@media (max-width: 1024px) {
  :root { --header-h: 80px; --container: min(100% - 32px, 1540px); }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero-title { font-size: clamp(72px, 13vw, 132px); }
  .hero-bottom { margin-left: 0; grid-template-columns: 1fr minmax(250px, 340px); }
  .hero-orbit { right: -16vw; top: 21vh; opacity: .48; }
  .manifesto-grid, .services-header, .audiences-intro, .proof-header, .fit-header { grid-template-columns: 1fr; gap: 50px; }
  .manifesto-aside, .services-intro, .audiences-intro > p, .proof-header > p, .fit-header > p { max-width: 52ch; margin-left: 26%; }
  .audience-card { min-height: 650px; }
  .proof-card { min-height: 680px; }
  .proof-stats { grid-template-columns: 1fr; }
  .proof-stats > div { min-height: 125px; border-right: 0; border-bottom: 1px solid currentColor; }
  .proof-stats > div:last-child { border-bottom: 0; }
  .faq-block { grid-template-columns: 1fr; }
  .faq-heading h3 { max-width: 12ch; }
  .approach-layout { grid-template-columns: 1fr; }
  .approach-heading { position: relative; top: auto; padding-bottom: 30px; }
  .approach-heading .display-copy { max-width: 10ch; }
  .approach-mark { display: none; }
  .statement-grid { grid-template-columns: 110px 1fr; }
  .statement-index { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-intro { max-width: 55ch; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 24px, 1540px); --header-h: 74px; }
  .brand { width: 136px; }
  .site-header::after { opacity: .12; }
  .menu-button { width: 44px; height: 44px; }
  .menu-button span { left: 12px; right: 12px; }
  .menu-button span:first-child { top: 17px; }
  .menu-button span:last-child { top: 25px; }
  .menu-button[aria-expanded="true"] span:first-child,
  .menu-button[aria-expanded="true"] span:last-child { top: 21px; }
  .hero { min-height: 100svh; padding-top: calc(var(--header-h) + 28px); padding-bottom: 22px; }
  .hero-topline { grid-template-columns: 1fr auto; }
  .hero-topline span:nth-child(2) { display: none; }
  .hero-copy { padding: 5vh 0 3vh; }
  .hero-title { font-size: clamp(60px, 17vw, 78px); line-height: .8; max-width: none; }
  .hero-title__line--long { font-size: .66em; }
  .hero-bottom { margin-top: 34px; grid-template-columns: 1fr; gap: 24px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-intro { max-width: 38ch; font-size: 16px; }
  .hero-bottom .button { width: 100%; }
  .hero-index { display: none; }
  .hero-orbit { width: 82vw; right: -34vw; top: 25vh; opacity: .33; }
  .ticker__track { padding: 12px 0; gap: 20px; }
  .ticker__track i { width: 7px; height: 7px; }
  .section-label { padding: 20px 0; }
  .display-copy { font-size: clamp(50px, 16vw, 82px); }
  .manifesto-grid { padding: 72px 0 65px; }
  .threshold-line { display: none; }
  .threshold-grid { grid-template-columns: 1fr; }
  .threshold-card { min-height: 0; padding: 30px 0 36px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .threshold-card + .threshold-card { padding-left: 0; }
  .threshold-card:last-child { border-bottom: 0; }
  .threshold-card--active { margin-inline: -12px; padding-inline: 12px; }
  .threshold-number { margin-bottom: 38px; }
  .manifesto-aside, .services-intro, .audiences-intro > p, .proof-header > p, .fit-header > p { margin-left: 0; }
  .manifesto-stamp { font-size: 34vw; bottom: -5vw; }
  .services { padding-bottom: 90px; }
  .services-header { padding: 72px 0 55px; }
  .service-item summary { grid-template-columns: 42px 1fr 32px; padding: 22px 0; }
  .service-title { font-size: clamp(31px, 10vw, 54px); }
  .service-toggle { font-size: 30px; }
  .service-body { grid-template-columns: 1fr; padding: 8px 0 35px 42px; gap: 25px; }
  .service-body::before { display: none; }
  .audiences-intro { padding: 72px 0 50px; }
  .audience-cards { grid-template-columns: 1fr; }
  .audience-card { min-height: 610px; padding: 24px; }
  .audience-card h3 { margin-top: 70px; font-size: clamp(48px, 13vw, 72px); }
  .audience-card__matrix { gap: 2px; }
  .approach { padding-bottom: 90px; }
  .proof-header, .fit-header { padding: 72px 0 55px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: 650px; padding: 24px; }
  .proof-card h3 { margin: 65px 0 48px; }
  .proof-quote { margin-top: 75px; font-size: clamp(52px, 15vw, 84px); }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-panel { min-height: 0; padding: 30px 0 45px; }
  .fit-panel + .fit-panel { border-left: 0; border-top: 1px solid var(--navy); padding-left: 0; }
  .fit-panel ul { margin-top: 65px; }
  .faq-block { margin-top: 90px; }
  .faq-item summary { font-size: 25px; }
  .faq-item > p { padding-right: 0; }
  .approach-layout { padding-top: 72px; }
  .approach-steps li { grid-template-columns: 42px 1fr; gap: 12px; padding: 28px 0 48px; }
  .approach-steps h3 { font-size: 44px; }
  .statement { padding: 24px 0; }
  .statement-grid { min-height: 70svh; grid-template-columns: 1fr; gap: 50px; padding: 70px 0; }
  .statement blockquote { font-size: clamp(54px, 15vw, 84px); }
  .contact-head { padding: 100px 0 65px; }
  .contact-head h2 { font-size: clamp(76px, 21vw, 118px); }
  .field-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; padding-top: 55px; gap: 45px; }
  .site-footer__meta { justify-self: start; }
  .site-footer__bottom { flex-direction: column; gap: 10px; }
}

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