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

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --paper: #f3f0e9;
  --paper-deep: #e7e1d6;
  --paper-bright: #fbfaf6;
  --ink: #142332;
  --ink-soft: #52606a;
  --navy: #102c44;
  --navy-deep: #071a2a;
  --blue: #155582;
  --blue-bright: #2c75a8;
  --brass: #b57a2f;
  --line: rgba(20, 35, 50, 0.19);
  --line-light: rgba(251, 250, 246, 0.24);
  --serif: "Newsreader", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "Manrope", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --shell: min(91vw, 1500px);
  --header-height: 98px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

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

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

::selection {
  color: var(--paper-bright);
  background: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper-bright);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  width: var(--shell);
  min-height: var(--header-height);
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}

.site-header--static {
  position: relative;
  left: auto;
  grid-template-columns: 1fr auto;
  transform: none;
  margin-inline: auto;
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 450;
  line-height: 0.79;
  letter-spacing: -0.03em;
}

.wordmark span:last-child {
  margin-left: 0.55em;
  font-style: italic;
  color: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 44px);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.site-nav a,
.header-contact,
.site-footer a {
  position: relative;
}

.site-nav a::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 600;
}

.header-contact span:last-child {
  color: var(--brass);
  font-size: 16px;
  transition: transform 220ms ease;
}

.header-contact:hover span:last-child,
.header-contact:focus-visible span:last-child {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  width: var(--shell);
  min-height: 100svh;
  margin-inline: auto;
  padding-top: var(--header-height);
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(50px, 7vw, 130px);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 67%;
  border-left: 1px solid rgba(20, 35, 50, 0.09);
  content: "";
}

.hero__rule {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 32%;
  border-left: 1px solid rgba(20, 35, 50, 0.07);
}

.hero__copy {
  display: flex;
  max-width: 990px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(108px, 14vh, 180px) 0 clamp(60px, 8vh, 105px);
}

.eyebrow,
.section-kicker,
.section-meta,
.hero__footer,
.hero__visual-index,
.privacy-band__meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 25px;
  color: var(--blue);
}

.hero h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 7.6vw, 145px);
  font-weight: 300;
  line-height: 0.84;
  letter-spacing: -0.064em;
}

.hero h1 em,
.display-title em,
.privacy-band blockquote em {
  color: var(--blue);
  font-weight: 300;
}

.hero__intro {
  max-width: 640px;
  margin: clamp(32px, 4vw, 58px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  min-width: 235px;
  min-height: 56px;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 0 2px;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-align: left;
}

.text-link span:last-child {
  color: var(--brass);
  font-size: 17px;
  transition: transform 220ms ease;
}

.text-link:hover span:last-child,
.text-link:focus-visible span:last-child {
  transform: translate(4px, -4px);
}

.text-link--primary {
  color: var(--paper-bright);
  border-color: var(--navy);
  padding-inline: 20px;
  background: var(--navy);
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 610px;
  align-self: stretch;
  place-items: center;
  padding: 80px 0 40px;
}

.hero__visual::before {
  position: absolute;
  top: 13%;
  right: 10%;
  bottom: 14%;
  left: 8%;
  border: 1px solid rgba(20, 35, 50, 0.16);
  content: "";
}

.hero__visual-index {
  position: absolute;
  top: 13%;
  left: 0;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__visual > p {
  position: absolute;
  right: -3px;
  bottom: 13%;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  writing-mode: vertical-rl;
}

.vision-aperture {
  position: relative;
  overflow: hidden;
  width: min(100%, 30vw, 430px);
  aspect-ratio: 0.62;
  clip-path: polygon(0 0, 23% 0, 50% 74%, 77% 0, 100% 0, 61% 100%, 39% 100%);
  transform: translate3d(
    calc(var(--pointer-x, 0) * 8px),
    calc(var(--pointer-y, 0) * 8px),
    0
  );
  transition: transform 900ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.vision-aperture::after {
  position: absolute;
  inset: 0;
  background: rgba(6, 25, 41, 0.12);
  content: "";
}

.vision-aperture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.11);
}

.hero__footer {
  display: flex;
  min-height: 70px;
  grid-column: 1 / -1;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.hero__footer-line {
  width: 48px;
  height: 1px;
  background: var(--brass);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
  padding-block: clamp(105px, 12vw, 190px);
}

.section-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(75px, 9vw, 140px);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.section-meta span:first-child {
  color: var(--blue);
}

.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.4vw, 96px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.definition__content {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1.55fr);
  column-gap: clamp(40px, 8vw, 150px);
}

.definition__content .section-kicker {
  padding-top: 12px;
}

.definition__body {
  display: grid;
  margin-top: 48px;
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 72px);
  color: var(--ink-soft);
}

.definition__body p {
  margin: 0;
}

.opportunity-ledger {
  display: grid;
  margin-top: clamp(72px, 9vw, 138px);
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.opportunity-ledger span {
  display: flex;
  min-height: 94px;
  align-items: center;
  padding: 20px 22px 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 25px);
}

.opportunity-ledger span:not(:nth-child(4n + 1)) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.process {
  padding-top: 0;
}

.process__heading,
.standards__heading {
  display: grid;
  margin-bottom: clamp(68px, 8vw, 125px);
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(40px, 8vw, 150px);
}

.process__heading .section-kicker,
.standards__heading .section-kicker {
  padding-top: 12px;
}

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

.process-list li {
  display: grid;
  min-height: 150px;
  padding: 33px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(72px, 0.22fr) minmax(0, 1.78fr);
  align-items: start;
}

.process-list li > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 110px);
}

.process-list__number,
.path-card__index,
.standard > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-list h3,
.path-card h3,
.standard h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 43px);
  font-weight: 350;
  line-height: 1;
}

.process-list p {
  max-width: 610px;
  margin: 3px 0 0;
  color: var(--ink-soft);
}

.process__note {
  max-width: 720px;
  margin: 35px 0 0 auto;
  color: var(--ink-soft);
  font-size: 13px;
}

.paths {
  width: 100%;
  max-width: none;
  padding-right: max(4.5vw, calc((100vw - 1500px) / 2));
  padding-left: max(4.5vw, calc((100vw - 1500px) / 2));
  color: var(--paper-bright);
  background: var(--navy);
}

.section-meta--light {
  border-color: var(--line-light);
  color: rgba(251, 250, 246, 0.58);
}

.section-meta--light span:first-child,
.paths .section-kicker,
.paths .display-title em {
  color: #d6a762;
}

.paths__heading {
  display: grid;
  margin-bottom: clamp(70px, 9vw, 140px);
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(40px, 8vw, 150px);
}

.paths__heading .section-kicker {
  padding-top: 12px;
}

.paths-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-card {
  display: grid;
  min-height: 620px;
  grid-template-rows: auto 1fr auto;
  padding: 36px 5vw 0 0;
}

.path-card + .path-card {
  padding-right: 0;
  padding-left: 5vw;
  border-left: 1px solid var(--line-light);
}

.path-card__index {
  margin-bottom: 70px;
  color: #d6a762;
}

.path-card h3 {
  font-size: clamp(39px, 4vw, 68px);
}

.path-card p {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(251, 250, 246, 0.67);
}

.path-card ul {
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.path-card li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(251, 250, 246, 0.83);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.path-card__action {
  display: flex;
  min-height: 82px;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  border-top: 1px solid var(--line-light);
  color: var(--paper-bright);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-align: left;
}

.path-card__action span:last-child {
  color: #d6a762;
  font-size: 18px;
  transition: transform 220ms ease;
}

.path-card__action:hover span:last-child,
.path-card__action:focus-visible span:last-child {
  transform: translate(4px, -4px);
}

.privacy-band {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  align-content: center;
  padding: clamp(100px, 13vw, 205px) max(4.5vw, calc((100vw - 1500px) / 2));
  color: var(--paper-bright);
  background: var(--navy-deep);
}

.privacy-band::before,
.privacy-band::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.privacy-band::before {
  top: 0;
  bottom: 0;
  left: 34%;
  border-left: 1px solid rgba(251, 250, 246, 0.08);
}

.privacy-band::after {
  top: 0;
  right: 16%;
  bottom: 0;
  border-left: 1px solid rgba(251, 250, 246, 0.08);
}

.privacy-band__mark {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 4vw;
  color: rgba(44, 117, 168, 0.09);
  font-family: var(--serif);
  font-size: min(78vw, 1000px);
  font-weight: 300;
  line-height: 0.7;
  transform: translateY(-48%);
  user-select: none;
}

.privacy-band__meta {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 430px;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(251, 250, 246, 0.55);
}

.privacy-band blockquote {
  position: relative;
  z-index: 1;
  max-width: 1150px;
  margin: clamp(60px, 8vw, 115px) 0 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.2vw, 112px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.052em;
}

.privacy-band blockquote em {
  color: #d6a762;
}

.privacy-band > p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 52px 0 0 auto;
  color: rgba(251, 250, 246, 0.64);
}

.standards-grid {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.standard {
  min-height: 390px;
  padding: 35px 3.6vw 30px 0;
}

.standard + .standard {
  padding-left: 3.6vw;
  border-left: 1px solid var(--line);
}

.standard > span {
  display: block;
  margin-bottom: 96px;
}

.standard h3 {
  font-size: clamp(29px, 2.4vw, 42px);
}

.standard p {
  margin: 26px 0 0;
  color: var(--ink-soft);
}

.contact-section {
  padding-top: 20px;
}

.contact-section__line {
  width: 100%;
  height: 1px;
  margin-bottom: clamp(90px, 10vw, 155px);
  background: var(--line);
}

.contact-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.5fr);
  gap: clamp(50px, 10vw, 170px);
}

.contact-section__intro {
  align-self: end;
  margin: 0 0 8px;
  color: var(--ink-soft);
}

.contact-options {
  display: grid;
  margin-top: clamp(70px, 8vw, 125px);
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-options button {
  display: flex;
  min-height: 155px;
  justify-content: space-between;
  align-items: center;
  padding: 32px 38px 32px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 39px);
  text-align: left;
}

.contact-options button + button {
  padding-right: 0;
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.contact-options button small {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-options button > span:last-child {
  color: var(--brass);
  font-family: var(--sans);
  font-size: 19px;
  transition: transform 220ms ease;
}

.contact-options button:hover > span:last-child,
.contact-options button:focus-visible > span:last-child {
  transform: translate(5px, -5px);
}

.site-footer {
  padding: 80px max(4.5vw, calc((100vw - 1500px) / 2)) 35px;
  color: var(--paper-bright);
  background: var(--navy-deep);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__top {
  min-height: 160px;
  border-bottom: 1px solid var(--line-light);
}

.wordmark--footer {
  color: var(--paper-bright);
  font-size: clamp(31px, 3.2vw, 54px);
}

.wordmark--footer span:last-child {
  color: #d6a762;
}

.site-footer__top > a:last-child {
  font-size: 13px;
}

.site-footer__bottom {
  padding-top: 28px;
  color: rgba(251, 250, 246, 0.52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.application-dialog {
  width: min(100%, 790px);
  max-height: 100dvh;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper-bright);
}

.application-dialog[open] {
  animation: dialog-enter 500ms cubic-bezier(0.22, 0.75, 0.2, 1) both;
}

.application-dialog::backdrop {
  background: rgba(4, 17, 28, 0.72);
  backdrop-filter: blur(6px);
}

.dialog-shell {
  position: relative;
  min-height: 100dvh;
  padding: clamp(42px, 6vw, 82px);
}

.dialog-close {
  position: absolute;
  top: 26px;
  right: 30px;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.dialog-heading {
  max-width: 570px;
  margin-bottom: 58px;
}

.dialog-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.dialog-heading > p:last-child {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.application-form {
  display: grid;
  gap: 28px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.application-form label {
  display: grid;
  gap: 8px;
}

.application-form label > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.application-form label small {
  margin-left: 7px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 500;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  transition: border-color 180ms ease;
}

.application-form input,
.application-form select {
  min-height: 48px;
}

.application-form textarea {
  min-height: 100px;
  padding-block: 11px;
  resize: vertical;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--blue);
}

.application-form ::placeholder {
  color: rgba(82, 96, 106, 0.62);
}

.form-submit {
  display: flex;
  min-height: 64px;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 0 22px;
  color: var(--paper-bright);
  background: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.form-submit span:last-child {
  color: #d6a762;
  font-size: 18px;
}

.form-status {
  min-height: 22px;
  margin: -10px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.legal-page {
  width: var(--shell);
  min-height: 70vh;
  margin-inline: auto;
  padding: clamp(105px, 11vw, 170px) 0 clamp(110px, 12vw, 190px);
}

.legal-page .section-meta {
  margin-bottom: clamp(70px, 8vw, 120px);
}

.legal-page__heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(40px, 8vw, 150px);
}

.legal-page__heading .section-kicker {
  padding-top: 10px;
}

.legal-page__content {
  display: grid;
  max-width: 780px;
  gap: 0;
  margin: 90px 0 0 auto;
}

.legal-page__content section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.legal-page__content section:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-page__content h2 {
  margin: 0 0 17px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 350;
}

.legal-page__content p {
  color: var(--ink-soft);
}

.legal-page__content a {
  color: var(--blue);
  border-bottom: 1px solid currentColor;
}

.not-found {
  color: var(--paper-bright);
  background: var(--navy-deep);
}

.not-found main {
  display: grid;
  width: var(--shell);
  min-height: 100svh;
  margin-inline: auto;
  padding: 65px 0;
  grid-template-rows: auto 1fr;
}

.not-found__content {
  display: flex;
  max-width: 900px;
  flex-direction: column;
  justify-content: center;
}

.not-found__content > span {
  color: #d6a762;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.not-found h1 {
  margin: 30px 0 0;
  font-family: var(--serif);
  font-size: clamp(55px, 7vw, 118px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.not-found p {
  max-width: 520px;
  margin: 32px 0 0;
  color: rgba(251, 250, 246, 0.6);
}

.text-link--light {
  max-width: 320px;
  margin-top: 45px;
  color: var(--paper-bright);
  border-color: var(--line-light);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.65, 0.25, 1),
    transform 760ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.reveal--delay-1 {
  transition-delay: 90ms;
}

.reveal--delay-2 {
  transition-delay: 180ms;
}

.reveal--delay-3 {
  transition-delay: 270ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dialog-enter {
  from {
    opacity: 0;
    transform: translateX(4%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 1051px) and (max-height: 1100px) {
  :root {
    --header-height: 82px;
  }

  .hero {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .hero__copy {
    padding: clamp(42px, 6.5vh, 64px) 0 clamp(28px, 4vh, 42px);
  }

  .hero h1 {
    font-size: clamp(72px, min(6.2vw, 11.4vh), 120px);
    line-height: 0.86;
  }

  .hero__intro {
    max-width: 590px;
    margin-top: clamp(22px, 3.4vh, 32px);
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.58;
  }

  .hero__actions {
    margin-top: clamp(20px, 3vh, 28px);
  }

  .hero__actions .text-link {
    min-width: 210px;
    min-height: 52px;
  }

  .hero__visual {
    min-height: 0;
    padding: clamp(38px, 6vh, 54px) 0 clamp(26px, 4vh, 38px);
  }

  .vision-aperture {
    width: min(21.5vw, 340px);
  }

  .hero__footer {
    min-height: 58px;
  }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(92vw, 1500px);
    --header-height: 82px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: -4vw;
    left: -4vw;
    display: grid;
    overflow: hidden;
    max-height: 0;
    align-content: start;
    gap: 0;
    padding: 0 4vw;
    background: var(--paper-bright);
    opacity: 0;
    transition:
      max-height 350ms ease,
      padding 350ms ease,
      opacity 200ms ease;
  }

  .site-nav.is-open {
    max-height: 360px;
    padding-block: 20px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }

  .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-contact {
    display: none;
  }

  .site-header--static .header-contact {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 0;
    background: transparent;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .menu-toggle__label {
    transition: opacity 180ms ease;
  }

  .menu-toggle__line {
    position: relative;
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform 220ms ease;
  }

  .menu-toggle__line::after {
    position: absolute;
    top: 6px;
    right: 0;
    width: 15px;
    height: 1px;
    background: var(--ink);
    content: "";
    transition:
      top 220ms ease,
      width 220ms ease,
      transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__label {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line::after {
    top: 0;
    width: 22px;
    transform: rotate(-90deg);
  }

  .hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    column-gap: 34px;
  }

  .hero h1 {
    font-size: clamp(62px, 9vw, 105px);
  }

  .hero__visual {
    min-height: 520px;
  }

  .vision-aperture {
    width: min(34vw, 340px);
  }

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

  .opportunity-ledger span:not(:nth-child(4n + 1)) {
    padding-left: 22px;
    border-left: 1px solid var(--line);
  }

  .opportunity-ledger span:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .path-card {
    min-height: 680px;
  }

  .standards-grid {
    grid-template-columns: 1fr;
  }

  .standard {
    display: grid;
    min-height: 0;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 90px minmax(240px, 0.7fr) minmax(0, 1fr);
    gap: 25px;
  }

  .standard + .standard {
    padding-left: 0;
    border-left: 0;
  }

  .standard > span {
    margin: 8px 0 0;
  }

  .standard p {
    margin: 4px 0 0;
  }
}

@media (min-width: 761px) and (max-width: 1050px) and (max-height: 900px) {
  .hero {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .hero__copy {
    padding: clamp(38px, 5.5vh, 50px) 0 clamp(24px, 3.5vh, 34px);
  }

  .hero h1 {
    font-size: clamp(64px, min(7.2vw, 10.8vh), 82px);
    line-height: 0.87;
  }

  .hero__intro {
    margin-top: clamp(20px, 3vh, 28px);
    font-size: 15px;
    line-height: 1.55;
  }

  .hero__actions {
    margin-top: clamp(18px, 2.5vh, 24px);
  }

  .hero__actions .text-link {
    min-width: 190px;
    min-height: 50px;
  }

  .hero__visual {
    min-height: 0;
    padding: clamp(34px, 5vh, 44px) 0 clamp(22px, 3.5vh, 30px);
  }

  .vision-aperture {
    width: min(28vw, 270px);
  }

  .hero__footer {
    min-height: 58px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 40px);
    --header-height: 76px;
  }

  .site-header {
    width: var(--shell);
  }

  .site-header--static .header-contact {
    font-size: 10px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero::after,
  .hero__rule {
    display: none;
  }

  .hero__copy {
    min-height: 77svh;
    justify-content: flex-end;
    padding: 130px 0 64px;
  }

  .hero h1 {
    font-size: clamp(58px, 18.2vw, 74px);
    line-height: 0.87;
  }

  .hero__intro {
    margin-top: 32px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__actions {
    display: grid;
    margin-top: 26px;
    gap: 7px;
  }

  .text-link {
    width: 100%;
  }

  .hero__visual {
    min-height: 0;
    margin-inline: -20px;
    padding: 55px 20px;
    background: var(--paper-deep);
  }

  .hero__visual::before {
    top: 55px;
    right: 20px;
    bottom: 55px;
    left: 20px;
  }

  .hero__visual-index {
    top: 75px;
    left: 5px;
  }

  .hero__visual > p {
    right: 2px;
    bottom: 75px;
  }

  .vision-aperture {
    width: min(78vw, 365px);
    max-height: 590px;
  }

  .hero__footer {
    min-height: 62px;
  }

  .section-shell {
    padding-block: 100px;
  }

  .section-meta {
    margin-bottom: 72px;
  }

  .display-title {
    font-size: clamp(46px, 13.8vw, 73px);
    line-height: 0.98;
  }

  .definition__content,
  .process__heading,
  .standards__heading,
  .paths__heading,
  .legal-page__heading {
    display: block;
  }

  .definition__content .section-kicker,
  .process__heading .section-kicker,
  .standards__heading .section-kicker,
  .paths__heading .section-kicker,
  .legal-page__heading .section-kicker {
    padding-top: 0;
  }

  .definition__body {
    display: block;
    margin-top: 37px;
    grid-column: auto;
  }

  .definition__body p + p {
    margin-top: 18px;
  }

  .opportunity-ledger {
    margin-top: 68px;
    grid-template-columns: 1fr;
  }

  .opportunity-ledger span,
  .opportunity-ledger span:not(:nth-child(4n + 1)),
  .opportunity-ledger span:nth-child(odd) {
    min-height: 70px;
    padding: 14px 0;
    border-left: 0;
  }

  .process-list li {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .process-list li > div {
    display: block;
  }

  .process-list p {
    margin-top: 16px;
    font-size: 14px;
  }

  .process__note {
    margin-top: 28px;
    font-size: 12px;
  }

  .paths {
    padding-right: 20px;
    padding-left: 20px;
  }

  .paths-grid {
    grid-template-columns: 1fr;
  }

  .path-card,
  .path-card + .path-card {
    min-height: 0;
    padding: 32px 0 0;
    border-left: 0;
  }

  .path-card + .path-card {
    margin-top: 70px;
    border-top: 1px solid var(--line-light);
  }

  .path-card__index {
    margin-bottom: 52px;
  }

  .path-card h3 {
    font-size: 46px;
  }

  .privacy-band {
    min-height: 100svh;
    padding: 105px 20px;
  }

  .privacy-band::before {
    left: 50%;
  }

  .privacy-band::after {
    display: none;
  }

  .privacy-band__mark {
    right: -2vw;
    font-size: 135vw;
  }

  .privacy-band blockquote {
    margin-top: 62px;
    font-size: clamp(50px, 14.6vw, 79px);
  }

  .privacy-band > p {
    margin-top: 44px;
  }

  .standard {
    display: block;
    padding: 32px 0;
  }

  .standard > span {
    margin-bottom: 48px;
  }

  .standard p {
    margin-top: 19px;
  }

  .contact-section__content {
    display: block;
  }

  .contact-section__intro {
    margin-top: 34px;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-options button,
  .contact-options button + button {
    min-height: 128px;
    padding: 25px 0;
    border-left: 0;
  }

  .site-footer {
    padding: 65px 20px 27px;
  }

  .site-footer__top {
    display: grid;
    min-height: 205px;
    align-content: space-between;
    padding-bottom: 34px;
  }

  .site-footer__bottom {
    display: grid;
    gap: 12px;
  }

  .dialog-shell {
    padding: 76px 20px 45px;
  }

  .application-dialog {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .dialog-close {
    top: 20px;
    right: 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding-top: 90px;
  }

  .legal-page__content {
    margin-top: 70px;
  }

  .not-found main {
    padding: 35px 0;
  }
}

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

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

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