:root {
  --ink: #101d2d;
  --ink-soft: #253548;
  --paper: #f4f1e9;
  --paper-deep: #e7e1d6;
  --white: #fffdf8;
  --qsc-red: #ae1935;
  --qsc-red-dark: #7d1026;
  --qsc-blue: #306a91;
  --line: rgba(16, 29, 45, 0.22);
  --line-light: rgba(255, 253, 248, 0.22);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Aptos", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(5.5rem, 10vw, 10rem);
  --max-width: 96rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 6.4rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem var(--page-gutter);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand img {
  width: clamp(8.6rem, 12vw, 11.5rem);
  height: auto;
}

.brand span {
  max-width: 6.5rem;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--qsc-red);
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: clamp(8.5rem, 14vh, 11rem) var(--page-gutter) 4rem;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.96fr) minmax(28rem, 0.9fr);
  gap: clamp(2rem, 5vw, 7rem);
  align-items: center;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(16, 29, 45, 0.08) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(16, 29, 45, 0.08) 50%, transparent 50.1%),
    var(--paper);
  background-size: 9rem 9rem;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(10vw, 8rem);
  height: 100%;
  content: "";
  background: var(--qsc-red);
}

.hero__coordinates {
  position: absolute;
  right: 1.7rem;
  bottom: 4rem;
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  animation: enter-copy 700ms 80ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--qsc-red);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 0 0.4rem;
  color: var(--qsc-blue);
}

.hero h1,
.section h2,
.connect h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(4rem, 7vw, 7.8rem);
}

.hero h1::first-line {
  color: var(--ink);
}

.hero__lead {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  margin-top: 2.25rem;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button--primary {
  padding: 0.9rem 1.35rem;
  background: var(--ink);
  color: var(--white);
}

.button--primary:hover {
  background: var(--qsc-red);
}

.button--text {
  border-bottom: 1px solid currentColor;
}

.button--light {
  padding: 1rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button--light:hover {
  background: var(--white);
  color: var(--qsc-red-dark);
}

.hero__qualities {
  display: flex;
  margin: clamp(2.5rem, 6vh, 5rem) 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.hero__qualities li {
  padding: 0.25rem clamp(0.7rem, 1.2vw, 1.2rem);
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__qualities li:first-child {
  padding-left: 0;
}

.hero__qualities li:last-child {
  border-right: 0;
}

.system-map {
  position: relative;
  z-index: 1;
  width: min(100%, 38rem);
  margin: 0 max(3rem, 5vw) 0 auto;
  animation: enter-map 900ms 180ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.system-map__field {
  position: relative;
  aspect-ratio: 1;
}

.system-map__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.system-map__lines line {
  stroke: rgba(16, 29, 45, 0.42);
  stroke-dasharray: 4 7;
  stroke-width: 1;
}

.system-map__lines circle {
  fill: none;
  stroke: rgba(16, 29, 45, 0.13);
  stroke-width: 1;
}

.system-map__core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 28%;
  aspect-ratio: 1;
  padding: 1.5rem;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--ink);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  color: var(--white);
  text-align: center;
}

.system-map__core::after {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.27);
  content: "";
  clip-path: inherit;
}

.system-map__core span {
  color: #ef6d7d;
  font-family: var(--mono);
  font-size: clamp(0.55rem, 0.8vw, 0.7rem);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.system-map__core strong {
  margin-top: 0.35rem;
  font-family: var(--display);
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  font-weight: 500;
  line-height: 1.05;
}

.system-map__node {
  position: absolute;
  display: flex;
  min-width: 7rem;
  min-height: 2.75rem;
  padding: 0.6rem 0.85rem;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 29, 45, 0.42);
  background: rgba(244, 241, 233, 0.92);
  box-shadow: 0 0 0 5px rgba(244, 241, 233, 0.48);
  font-family: var(--mono);
  font-size: clamp(0.56rem, 0.9vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.system-map__node::before {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--qsc-red);
}

.system-map__node--applications { top: 12%; left: 50%; }
.system-map__node--compilation { top: 28%; left: 82%; }
.system-map__node--workflows { top: 55%; left: 88%; }
.system-map__node--resources { top: 83%; left: 75%; }
.system-map__node--engineering { top: 83%; left: 27%; }
.system-map__node--agents { top: 55%; left: 12%; }
.system-map__node--data { top: 28%; left: 18%; }

.system-map figcaption {
  display: grid;
  margin-top: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  grid-template-columns: auto 1fr;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.system-map figcaption span {
  color: var(--qsc-red);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-space) var(--page-gutter);
}

.section__marker {
  position: absolute;
  top: var(--section-space);
  left: var(--page-gutter);
  color: var(--qsc-red);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.aim {
  display: grid;
  grid-template-columns: minmax(15rem, 0.78fr) minmax(20rem, 1fr);
  gap: clamp(4rem, 9vw, 10rem);
}

.aim__statement {
  padding-left: 3.2rem;
}

.section h2 {
  font-size: clamp(3.2rem, 6vw, 6.7rem);
}

.aim__statement > p:last-child,
.section-heading > p:last-child,
.path__intro > p:last-child {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.principles {
  margin: 3.5rem 0 0;
  padding: 0;
  list-style: none;
}

.principles li {
  display: grid;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
}

.principles li:last-child {
  border-bottom: 1px solid var(--line);
}

.principles span,
.research-path > li > span {
  color: var(--qsc-red);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.principles h3,
.capability-index h3,
.research-path h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.025em;
}

.principles p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section--dark {
  max-width: none;
  background: var(--ink);
  color: var(--white);
}

.section--dark .section__marker,
.section--dark .eyebrow {
  color: #ef6d7d;
}

.section-heading {
  display: grid;
  max-width: calc(var(--max-width) - (2 * var(--page-gutter)));
  margin: 0 auto;
  padding-left: 3.2rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
  column-gap: clamp(3rem, 8vw, 9rem);
}

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

.section-heading h2 {
  max-width: 12ch;
}

.section-heading > p:last-child {
  margin-top: 0.25rem;
  color: rgba(255, 253, 248, 0.72);
  align-self: end;
}

.capability-index {
  max-width: calc(var(--max-width) - (2 * var(--page-gutter)));
  margin: clamp(4rem, 7vw, 7rem) auto 0;
  border-top: 1px solid var(--line-light);
}

.capability-index article {
  display: grid;
  min-height: 8rem;
  padding: 1.65rem 0;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 4rem minmax(15rem, 0.8fr) minmax(18rem, 1fr) 7rem;
  gap: 1rem;
}

.capability-index__number {
  color: #ef6d7d;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
}

.capability-index h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.capability-index p {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 253, 248, 0.67);
  font-size: 0.92rem;
}

.capability-index__tag {
  justify-self: end;
  color: rgba(255, 253, 248, 0.5);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system__foundation {
  display: flex;
  max-width: calc(var(--max-width) - (2 * var(--page-gutter)));
  margin: 2.5rem auto 0;
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  justify-content: space-between;
  gap: 2rem;
}

.system__foundation span {
  color: #ef6d7d;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path {
  padding-left: calc(var(--page-gutter) + 3.2rem);
}

.path__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr);
  column-gap: clamp(3rem, 8vw, 9rem);
}

.path__intro .eyebrow {
  grid-column: 1 / -1;
}

.path__intro h2 {
  max-width: 13ch;
}

.path__intro > p:last-child {
  margin-top: 0.2rem;
  align-self: end;
}

.research-path {
  position: relative;
  display: grid;
  margin: clamp(4rem, 8vw, 7rem) 0 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.research-path::before {
  position: absolute;
  top: 1.05rem;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.research-path li {
  position: relative;
  min-height: 13rem;
  padding: 3rem 1.4rem 1.2rem 0;
}

.research-path li::before {
  position: absolute;
  top: 0.76rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border: 2px solid var(--paper);
  border-radius: 50%;
  content: "";
  background: var(--qsc-red);
  box-shadow: 0 0 0 1px var(--qsc-red);
}

.research-path h3 {
  margin-top: 0.9rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 500;
}

.research-path p {
  max-width: 14rem;
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.connect {
  position: relative;
  display: grid;
  min-height: 40rem;
  padding: var(--section-space) var(--page-gutter);
  overflow: hidden;
  grid-template-columns: 0.5fr 1fr;
  align-items: end;
  background: var(--qsc-red);
  color: var(--white);
}

.connect::before,
.connect::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  transform: rotate(30deg);
}

.connect::before {
  top: -16rem;
  left: -4rem;
  width: 34rem;
  height: 34rem;
}

.connect::after {
  top: -8rem;
  left: 5rem;
  width: 34rem;
  height: 34rem;
}

.connect__index {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.connect__copy {
  position: relative;
  z-index: 1;
  max-width: 55rem;
}

.connect .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.connect h2 {
  max-width: 12ch;
  font-size: clamp(3.8rem, 7vw, 7.5rem);
}

.connect__copy > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 2rem 0 2.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.site-footer {
  display: grid;
  padding: 3rem var(--page-gutter);
  grid-template-columns: 1fr auto;
  gap: 2rem;
  background: #0b1522;
  color: var(--white);
}

.site-footer strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
}

.site-footer p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.78rem;
}

.site-footer__links {
  display: flex;
  gap: 1.5rem;
}

.site-footer__links a {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__links a:hover {
  color: #ef6d7d;
}

.site-footer .site-footer__meta {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-column: 1 / -1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes enter-copy {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes enter-map {
  from { opacity: 0; transform: scale(0.94) rotate(-2deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr minmax(24rem, 0.75fr);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 6.8vw, 6rem);
  }

  .system-map__node {
    min-width: 6rem;
  }

  .section-heading,
  .path__intro {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child,
  .path__intro > p:last-child {
    margin-top: 2rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    min-height: 5.5rem;
  }

  .brand img {
    width: 8rem;
  }

  .brand span {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: inline-flex;
    padding: 0.65rem 0;
    align-items: center;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .nav-toggle__mark {
    position: relative;
    width: 1.5rem;
    height: 1rem;
    margin-left: 0.7rem;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }

  .nav-toggle__mark::after {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 2px;
    content: "";
    transform: translateY(-50%);
    background: currentColor;
  }

  .nav-toggle[aria-expanded="true"] {
    color: var(--white);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__mark {
    border: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__mark::before,
  .nav-toggle[aria-expanded="true"] .nav-toggle__mark::after {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 2px;
    content: "";
    background: currentColor;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    padding: 8rem var(--page-gutter) 3rem;
    transform: translateX(100%);
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1.4rem;
    background: var(--ink);
    color: var(--white);
    visibility: hidden;
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), visibility 280ms;
  }

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

  .site-nav a {
    width: 100%;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
    padding-right: calc(var(--page-gutter) + 1.2rem);
    grid-template-columns: 1fr;
  }

  .hero::before {
    width: 0.55rem;
  }

  .hero__coordinates {
    display: none;
  }

  .system-map {
    width: min(100%, 36rem);
    margin: 1rem auto 0;
  }

  .aim {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .principles {
    margin-left: 3.2rem;
  }

  .capability-index article {
    grid-template-columns: 3rem minmax(12rem, 0.8fr) 1fr;
  }

  .capability-index__tag {
    display: none;
  }

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

  .research-path::before {
    display: none;
  }

  .research-path li {
    min-height: 11rem;
    padding: 1.5rem;
    border-top: 1px solid var(--line);
  }

  .research-path li::before {
    display: none;
  }

  .connect {
    grid-template-columns: 3rem 1fr;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__qualities {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__qualities li,
  .hero__qualities li:first-child {
    padding: 0.45rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .system-map__field {
    display: grid;
    aspect-ratio: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .system-map__lines {
    display: none;
  }

  .system-map__core,
  .system-map__node {
    position: static;
    width: auto;
    min-width: 0;
    min-height: 4.6rem;
    aspect-ratio: auto;
    transform: none;
    clip-path: none;
  }

  .system-map__core {
    grid-column: 1 / -1;
  }

  .system-map__core::after {
    inset: 0.5rem;
    clip-path: none;
  }

  .system-map__node--engineering {
    grid-column: 1 / -1;
  }

  .system-map figcaption {
    margin-top: 1rem;
  }

  .section__marker {
    position: static;
    margin-bottom: 2rem;
    writing-mode: horizontal-tb;
  }

  .aim,
  .path,
  .section--dark {
    display: block;
    padding-left: var(--page-gutter);
  }

  .aim__statement,
  .section-heading {
    padding-left: 0;
  }

  .section h2 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .principles {
    margin-left: 0;
  }

  .capability-index article {
    display: grid;
    min-height: auto;
    padding: 1.5rem 0;
    grid-template-columns: 2.2rem 1fr;
  }

  .capability-index article p {
    grid-column: 2;
  }

  .system__foundation {
    align-items: flex-start;
    flex-direction: column;
  }

  .research-path {
    grid-template-columns: 1fr;
  }

  .research-path li {
    min-height: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .connect {
    min-height: 38rem;
    padding-top: 6rem;
    padding-bottom: 5rem;
    grid-template-columns: 1fr;
  }

  .connect__index {
    margin-bottom: 3rem;
    writing-mode: horizontal-tb;
  }

  .connect h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

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

  .site-footer__links {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

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