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

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b1824;
  --ink-soft: #182837;
  --teal: #087b70;
  --teal-dark: #075e58;
  --teal-light: #dcefeb;
  --paper: #f7faf9;
  --white: #ffffff;
  --mist: #e8efed;
  --sage: #a8bbb5;
  --coral: #d2705f;
  --text: #162431;
  --muted: #5d6c75;
  --line: #cdd9d5;
  --shell: min(100% - 40px, 1240px);
  --serif: "Bodoni Moda", "Bodoni 72", Didot, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: rgb(247 250 249 / 0.94);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgb(11 24 36 / 0.05);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-endorsement {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1;
}

.brand-endorsement img {
  width: 49px;
  height: auto;
  opacity: 0.66;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: #344551;
  font-size: 13px;
  font-weight: 500;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 13px;
}

.button-ink {
  background: var(--ink);
  color: var(--white);
}

.button-ink:hover {
  background: var(--teal-dark);
}

.button-primary {
  background: var(--teal);
  color: var(--white);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translate(2px, -2px);
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 76px;
  overflow: hidden;
  background: var(--paper);
}

.hero-grid {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 76px;
  right: max(20px, calc((100vw - 1240px) / 2));
  width: 1px;
  height: calc(100% - 142px);
  background: var(--sage);
}

.hero-inner {
  position: relative;
  min-height: 618px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  gap: 80px;
  align-items: center;
  padding-block: 74px 64px;
}

.hero-copy {
  max-width: 810px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow-light {
  color: #77c7bc;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(96px, 13vw, 188px);
  font-weight: 500;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero-statement {
  max-width: 730px;
  margin: 38px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

.hero-description {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.hero-index {
  align-self: end;
  margin-bottom: 34px;
  border-top: 1px solid var(--ink);
}

.index-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 26px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-index ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-index li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 60px;
  border-top: 1px solid var(--line);
}

.hero-index li span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 18px;
}

.hero-index li strong {
  font-size: 13px;
  font-weight: 500;
}

.hero-proof {
  position: relative;
  background: var(--ink);
  color: var(--white);
}

.proof-grid {
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.proof-grid p {
  margin: 0;
  padding: 0 26px;
  border-right: 1px solid rgb(255 255 255 / 0.18);
  font-size: 12px;
}

.proof-grid p:first-child {
  padding-left: 0;
}

.proof-grid p:last-child {
  border-right: 0;
}

.proof-grid span {
  margin-right: 10px;
  color: #77c7bc;
  font-family: var(--serif);
  font-size: 16px;
}

.section {
  padding-block: 128px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 13%;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 500;
  line-height: 1.02;
}

.manifesto {
  background: var(--white);
}

.manifesto-copy {
  align-self: end;
  padding-top: 56px;
}

.manifesto-copy p {
  margin: 0 0 24px;
  color: var(--muted);
}

.manifesto-copy .lead {
  color: var(--text);
  font-size: 20px;
  line-height: 1.65;
}

.system-section {
  background: #eef4f2;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  column-gap: 12%;
  align-items: end;
  margin-bottom: 76px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading p:last-child {
  margin: 0 0 6px;
  color: var(--muted);
}

.system-list {
  border-top: 1px solid var(--ink);
}

.system-row {
  min-height: 152px;
  display: grid;
  grid-template-columns: 72px 0.75fr 1.25fr 0.75fr;
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.system-number {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 24px;
}

.system-row h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.system-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.system-meta {
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.context-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.context-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
  gap: 10%;
  align-items: center;
}

.context-copy h2,
.pilot-copy h2 {
  color: var(--white);
}

.context-copy p:last-child {
  max-width: 530px;
  margin: 32px 0 0;
  color: #b9c6cb;
}

.relationship-map {
  position: relative;
  min-height: 480px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.map-node {
  position: relative;
  z-index: 2;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: 4px;
  background: var(--ink-soft);
}

.map-node span {
  margin-bottom: 8px;
  color: #77c7bc;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.map-node strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.map-family {
  grid-column: 1 / -1;
  justify-self: center;
  width: 62%;
  border-color: #77c7bc;
  background: var(--teal-dark);
  text-align: center;
}

.map-family span {
  color: var(--white);
  opacity: 0.72;
}

.map-person,
.map-staff {
  grid-row: 2;
}

.map-member,
.map-advisor {
  grid-row: 3;
}

.map-line {
  position: absolute;
  z-index: 1;
  top: 104px;
  width: 34%;
  height: 210px;
  border-top: 1px solid #47736f;
  border-bottom: 1px solid #47736f;
}

.map-line-left {
  left: 16%;
  border-left: 1px solid #47736f;
}

.map-line-right {
  right: 16%;
  border-right: 1px solid #47736f;
}

.audience-section {
  background: var(--white);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(480px, 1.1fr);
  gap: 11%;
}

.audience-layout .section-heading {
  display: block;
  margin: 0;
}

.audience-list {
  border-top: 1px solid var(--ink);
}

.audience-item {
  min-height: 122px;
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) 1fr;
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.audience-item span {
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 25px;
}

.audience-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.security-section {
  background: var(--teal-light);
}

.security-heading {
  max-width: 930px;
}

.security-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--teal-dark);
}

.security-item {
  min-height: 290px;
  padding: 34px 42px 0 0;
  border-right: 1px solid #adcac3;
}

.security-item + .security-item {
  padding-left: 42px;
}

.security-item:last-child {
  border-right: 0;
}

.security-item > span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 42px;
}

.security-item h3 {
  margin: 42px 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
}

.security-item p {
  margin: 0;
  color: #466159;
  font-size: 14px;
}

.pilot-section {
  background: var(--ink);
  color: var(--white);
}

.pilot-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 11%;
  align-items: center;
}

.pilot-number {
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(190px, 26vw, 370px);
  font-weight: 500;
  line-height: 0.7;
  -webkit-text-stroke: 1px #42645f;
}

.pilot-copy p:not(.eyebrow) {
  margin: 30px 0 26px;
  color: #b9c6cb;
}

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

.closing-section {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding-block: 110px;
  background: var(--paper);
  text-align: center;
}

.closing-inner {
  max-width: 880px;
}

.closing-inner h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(70px, 9vw, 128px);
  font-weight: 500;
  line-height: 0.88;
}

.not-found-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(64px, 9vw, 118px);
  font-weight: 500;
  line-height: 0.94;
}

.closing-inner > p:not(.eyebrow) {
  margin: 34px 0 30px;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  padding: 74px 0 26px;
  background: #06121d;
  color: #d7e0e3;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.legal-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.legal-back svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-main {
  padding-block: 96px 128px;
}

.legal-hero {
  max-width: 920px;
  margin-bottom: 76px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--ink);
}

.legal-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(62px, 8vw, 112px);
  font-weight: 500;
  line-height: 0.92;
}

.legal-updated {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.legal-content {
  max-width: 820px;
  margin-left: min(16vw, 200px);
}

.legal-content section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  margin: 14px 0;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  margin-top: 30px;
  padding: 22px;
  border-left: 3px solid var(--teal);
  background: var(--teal-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.75fr) 1.1fr;
  gap: 48px;
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-endorsement {
  color: #a5b5bb;
}

.brand-footer .brand-endorsement img {
  filter: invert(1);
}

.footer-brand > p {
  max-width: 240px;
  margin: 22px 0 0;
  color: #93a5ac;
  font-size: 13px;
}

.footer-column,
.footer-company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2,
.footer-company h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-column a,
.footer-company a,
.footer-company p {
  margin: 0;
  color: #93a5ac;
  font-size: 12px;
  line-height: 1.6;
}

.footer-column a:hover,
.footer-company a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid #253540;
  color: #73868f;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

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

@media (max-width: 1000px) {
  .site-nav {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr 280px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(88px, 14vw, 140px);
  }

  .system-row {
    grid-template-columns: 52px 0.75fr 1.25fr;
  }

  .system-meta {
    grid-column: 2 / -1;
    margin-top: -28px;
    padding-bottom: 24px;
  }

  .context-layout,
  .audience-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .relationship-map {
    max-width: 700px;
    width: 100%;
    margin-inline: auto;
  }

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

  .footer-company {
    grid-column: 2 / -1;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 32px, 1240px);
  }

  .site-header {
    height: 68px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 23px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    height: calc(100dvh - 68px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 16px 40px;
    background: var(--paper);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 240ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav > a:not(.button) {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 28px;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 28px;
  }

  .hero {
    min-height: 780px;
    padding-top: 68px;
  }

  .hero-grid {
    inset: 68px 0 0;
    background-size: 48px 48px;
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    min-height: 646px;
    display: block;
    padding-block: 70px 54px;
  }

  .hero h1 {
    font-size: clamp(72px, 25vw, 118px);
    line-height: 0.8;
  }

  .hero-statement {
    margin-top: 30px;
    font-size: clamp(35px, 10vw, 50px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
  }

  .hero-index {
    margin-top: 54px;
    margin-bottom: 0;
  }

  .hero-proof {
    display: none;
  }

  .section {
    padding-block: 88px;
  }

  .section h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .split-layout,
  .section-heading,
  .pilot-layout {
    display: block;
  }

  .manifesto-copy {
    padding-top: 44px;
  }

  .manifesto-copy .lead {
    font-size: 18px;
  }

  .section-heading {
    margin-bottom: 52px;
  }

  .section-heading p:last-child {
    margin-top: 30px;
  }

  .system-row {
    min-height: auto;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px 18px;
    padding-block: 28px;
  }

  .system-row h3 {
    font-size: 29px;
  }

  .system-row p,
  .system-meta {
    grid-column: 2;
    margin: 0;
    padding: 0;
  }

  .context-layout,
  .audience-layout {
    gap: 58px;
  }

  .relationship-map {
    min-height: 520px;
    gap: 12px;
  }

  .map-node {
    min-height: 104px;
    padding: 16px;
  }

  .map-node strong {
    font-size: 21px;
  }

  .map-family {
    width: 82%;
  }

  .map-line {
    top: 98px;
    height: 228px;
  }

  .audience-item {
    min-height: auto;
    display: block;
    padding-block: 26px;
  }

  .audience-item p {
    margin-top: 10px;
  }

  .security-principles {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .security-item,
  .security-item + .security-item {
    min-height: auto;
    padding: 28px 0 38px;
    border-right: 0;
    border-bottom: 1px solid #adcac3;
  }

  .security-item h3 {
    margin-top: 22px;
  }

  .pilot-number {
    margin-bottom: 58px;
    font-size: 190px;
  }

  .closing-section {
    min-height: 560px;
    padding-block: 90px;
  }

  .closing-inner h2 {
    font-size: clamp(62px, 19vw, 90px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px 24px;
  }

  .footer-brand,
  .footer-company {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-header-inner {
    min-height: 68px;
  }

  .legal-main {
    padding-block: 70px 90px;
  }

  .legal-hero {
    margin-bottom: 48px;
    padding-bottom: 38px;
  }

  .legal-content {
    margin-left: 0;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(66px, 23vw, 94px);
  }

  .hero-statement {
    font-size: 35px;
  }

  .relationship-map {
    min-height: auto;
    display: block;
  }

  .map-node {
    width: 100%;
    min-height: 92px;
    margin-bottom: 10px;
    text-align: left;
  }

  .map-line {
    display: none;
  }

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

  .footer-brand,
  .footer-company {
    grid-column: auto;
  }
}

@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;
  }

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