:root {
  --sc-canvas: #06182b;
  --sc-surface: #0b2135;
  --sc-ink: #fbf7f1;
  --sc-ink-soft: #c7cdd1;
  --sc-accent: #d6a559;
  --sc-accent-ink: #06182b;
  --sc-font-display: "Aptos Display", "Arial", sans-serif;
  --sc-font-text: "Aptos", "Arial", sans-serif;
  --ivory: #fbf7f1;
  --ivory-deep: #f1ebe2;
  --navy: #06182b;
  --navy-deep: #03101e;
  --navy-raised: #0b2135;
  --gold: #d6a559;
  --gold-deep: #a2722b;
  --steel: #515b66;
  --ink: #06182b;
  --ink-soft: #515b66;
  --white-soft: #edf0ef;
  --focus: #f2bd69;
  --page-gutter: clamp(1.5rem, 5vw, 5rem);
  --header-height: 6rem;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--navy);
  color: var(--white-soft);
  font-family: var(--sc-font-text);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: clip;
}

body::selection {
  background: var(--gold);
  color: var(--navy);
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
}

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

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  background: var(--ivory);
  color: var(--navy);
  transform: translateY(-180%);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

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

.sc-grain {
  position: fixed;
  z-index: 120;
  opacity: 0.035;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 110;
  inset: 0 0 auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  padding: 1rem var(--page-gutter) 1rem clamp(13rem, 19vw, 16rem);
  color: var(--ivory);
  pointer-events: none;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3, 16, 30, 0.72), rgba(3, 16, 30, 0));
  opacity: 0.72;
  transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1), background-color 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.site-header.is-light {
  color: var(--navy);
}

.site-header.is-light::before {
  background: rgba(251, 247, 241, 0.94);
  border-bottom: 1px solid rgba(6, 24, 43, 0.08);
  opacity: 1;
}

.site-header > * {
  pointer-events: auto;
}

.brand-signature {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.site-header > .brand-signature {
  position: absolute;
  top: 1.15rem;
  left: var(--page-gutter);
  min-height: 3.7rem;
}

.brand-signature__mark {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  overflow: visible;
  filter: drop-shadow(0 8px 18px rgba(3, 16, 30, 0.24));
}

.brand-signature__ring {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0.48;
}

.brand-signature__star {
  fill: var(--gold);
}

.brand-signature__core {
  fill: currentColor;
}

.brand-signature__name {
  display: grid;
  gap: 0.08rem;
  font-family: var(--sc-font-text);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  line-height: 0.96;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2vw, 2.3rem);
}

.primary-nav a {
  position: relative;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

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

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 1px;
  background: transparent;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.115em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 140ms cubic-bezier(0.23, 1, 0.32, 1), background-color 140ms cubic-bezier(0.23, 1, 0.32, 1), color 140ms cubic-bezier(0.23, 1, 0.32, 1), border-color 140ms cubic-bezier(0.23, 1, 0.32, 1);
}

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

.button:active {
  transform: translateY(1px);
}

.button--header {
  min-width: 12rem;
  min-height: 2.85rem;
  border-color: rgba(214, 165, 89, 0.8);
  background: rgba(6, 24, 43, 0.3);
  color: var(--ivory);
}

.site-header.is-light .button--header {
  background: var(--navy);
  color: var(--ivory);
}

.button--header:hover,
.button--primary {
  background: var(--gold);
  color: var(--navy);
}

.button--primary {
  min-width: 14rem;
  box-shadow: 0 14px 34px rgba(3, 16, 30, 0.24);
}

.button--primary:hover {
  background: #e0b46f;
}

.button--outline {
  border-color: rgba(6, 24, 43, 0.42);
  color: var(--navy);
}

.button--outline:hover {
  background: var(--navy);
  color: var(--ivory);
}

.bearing-rail {
  position: fixed;
  z-index: 90;
  top: 50%;
  right: 1.4rem;
  color: var(--ivory);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0.75rem, -50%, 0);
  transition: color 180ms cubic-bezier(0.23, 1, 0.32, 1), opacity 180ms cubic-bezier(0.23, 1, 0.32, 1), transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.site-header.is-past-hero + .bearing-rail {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0);
}

.bearing-rail.is-light {
  color: var(--navy);
}

.bearing-rail > p {
  margin: 0 0 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.bearing-rail ol {
  position: relative;
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bearing-rail ol::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  right: 0.25rem;
  width: 1px;
  background: currentColor;
  opacity: 0.24;
}

.bearing-rail a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  color: inherit;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.bearing-rail a span {
  opacity: 0;
  transform: translateX(0.45rem);
  transition: opacity 150ms cubic-bezier(0.23, 1, 0.32, 1), transform 150ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bearing-rail a i {
  position: relative;
  z-index: 1;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--navy);
  transition: background-color 150ms cubic-bezier(0.23, 1, 0.32, 1), transform 150ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bearing-rail.is-light a i {
  background: var(--ivory);
}

.bearing-rail a:hover span,
.bearing-rail a:focus-visible span,
.bearing-rail a[aria-current="step"] span {
  opacity: 1;
  transform: translateX(0);
}

.bearing-rail a[aria-current="step"] i {
  border-color: var(--gold);
  background: var(--gold);
  transform: scale(1.35);
}

.lodestar-guide {
  --guide-angle: 90deg;
  --guide-scale: 1;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform, opacity;
}

.lodestar-guide__core {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ivory);
  border-radius: 50%;
  background: var(--gold);
  transform: scale(var(--guide-scale));
}

.lodestar-guide__ring {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(214, 165, 89, 0.58);
  border-radius: 50%;
  opacity: 0.85;
  transform: scale(var(--guide-scale));
}

.lodestar-guide__ring::before,
.lodestar-guide__ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(214, 165, 89, 0.72);
  transform: translate(-50%, -50%);
}

.lodestar-guide__ring::before {
  width: 46px;
  height: 1px;
}

.lodestar-guide__ring::after {
  width: 1px;
  height: 46px;
}

.lodestar-guide__beam {
  position: absolute;
  top: -1px;
  right: 9px;
  width: 78px;
  height: 2px;
  background: linear-gradient(to left, rgba(214, 165, 89, 0.82), rgba(214, 165, 89, 0));
  transform: rotate(calc(var(--guide-angle) + 180deg));
  transform-origin: right center;
}

.section-label {
  margin: 0 0 1.2rem;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  background: var(--navy-deep);
}

.hero__stage {
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
  transform-origin: 50% 55%;
}

.hero__media picture,
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
}

.hero__media picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media video {
  object-fit: cover;
  object-position: 50% 52%;
  filter: none;
}

.hero__media .sc-stage__poster,
.hero__video {
  transition: opacity 380ms var(--sc-ease-out);
  will-change: opacity;
}

.hero__media .sc-stage__poster {
  opacity: 1;
}

.hero__video {
  z-index: 1;
  opacity: 0;
}

.hero.sc-has-clip .hero__media .sc-stage__poster {
  opacity: 0;
}

.hero.sc-has-clip .hero__video {
  opacity: 1;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 12, 23, 0.78) 0%, rgba(2, 12, 23, 0.6) 25%, rgba(2, 12, 23, 0.22) 46%, rgba(2, 12, 23, 0) 64%);
}

.hero__sun-anchor {
  position: absolute;
  top: 26.7%;
  left: 50.7%;
  width: 2px;
  height: 2px;
}

.hero__copy {
  position: absolute;
  z-index: 2;
  top: 38%;
  left: var(--page-gutter);
  width: min(43rem, 50vw);
}

.hero__copy h1 {
  margin: 0;
  color: var(--ivory);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(3.65rem, 5.1vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero__copy > p {
  max-width: 31rem;
  margin: 1.8rem 0 2.2rem;
  color: rgba(251, 247, 241, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.purpose {
  position: relative;
  z-index: 2;
  padding-block: clamp(10rem, 14vw, 13rem) clamp(7rem, 9vw, 9rem);
  background: var(--ivory);
  color: var(--navy);
}

.purpose__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 8rem minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.purpose__statement {
  max-width: 31rem;
}

.purpose__statement h2 {
  margin: 0;
  font-family: var(--sc-font-display);
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-wrap: balance;
}

.purpose__statement h2::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 2px;
  margin: 1.45rem 0 1.2rem;
  background: var(--gold);
}

.purpose__statement > p:last-child {
  max-width: 48ch;
  margin: 0;
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.purpose__statement--vision {
  justify-self: end;
}

.purpose__bearing {
  height: 15rem;
  display: grid;
  place-items: center;
}

.purpose__bearing svg {
  width: 6.5rem;
  height: 13rem;
  overflow: visible;
  fill: none;
  stroke: rgba(162, 114, 43, 0.6);
  stroke-width: 1.2;
}

.purpose__bearing .purpose__route {
  stroke-dasharray: 240;
  stroke-dashoffset: 0;
}

.purpose__bearing .purpose__needle {
  fill: rgba(214, 165, 89, 0.22);
  stroke: var(--gold-deep);
}

.purpose__intro {
  display: grid;
  grid-template-columns: minmax(12rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 6vw, 8rem);
  margin-top: clamp(6rem, 9vw, 9rem);
  padding-top: 2.2rem;
  border-top: 1px solid rgba(6, 24, 43, 0.16);
}

.purpose__intro p {
  margin: 0;
}

.purpose__intro-label {
  color: var(--gold-deep);
  font-family: var(--sc-font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.purpose__intro p:last-child {
  max-width: 68ch;
  color: var(--steel);
  font-size: 1.08rem;
  line-height: 1.72;
}

.threshold {
  position: relative;
  min-height: 112vh;
  overflow: hidden;
  background: var(--ivory);
  color: var(--navy);
}

.threshold__paper,
.threshold__navy {
  display: grid;
  place-items: center;
  min-height: 56vh;
  padding: var(--page-gutter);
}

.threshold__paper p,
.threshold__navy p {
  max-width: 16ch;
  margin: 0;
  font-family: var(--sc-font-display);
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
}

.threshold__paper span {
  position: absolute;
  top: 52vh;
  left: 50%;
  width: 1px;
  height: 14vh;
  background: linear-gradient(to bottom, var(--gold), rgba(214, 165, 89, 0));
}

.threshold__navy {
  position: relative;
  min-height: 64vh;
  background: var(--navy);
  color: var(--ivory);
}

.threshold__navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(214, 165, 89, 0.34) 0 1px, transparent 1.2px);
  background-size: 28px 28px;
  opacity: 0.16;
  mask-image: linear-gradient(to bottom, transparent, #000 45%, transparent);
}

.threshold__anchor {
  position: absolute;
  bottom: 16%;
  left: 50%;
  width: 1px;
  height: 1px;
}

.capabilities {
  background: var(--navy);
}

.capabilities__stage {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 54%, rgba(27, 59, 85, 0.78) 0%, rgba(6, 24, 43, 0.92) 36%, var(--navy-deep) 84%);
}

.capabilities__field {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
}

.capabilities__field::before,
.capabilities__field::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(214, 165, 89, 0.1);
  border-radius: 50%;
}

.capabilities__field::before {
  width: 74vw;
  height: 74vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.capabilities__field::after {
  width: 42vw;
  height: 42vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.capabilities__field span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(251, 247, 241, 0.58);
}

.capabilities__field span:nth-child(1) { top: 12%; left: 18%; }
.capabilities__field span:nth-child(2) { top: 27%; left: 71%; }
.capabilities__field span:nth-child(3) { top: 74%; left: 11%; }
.capabilities__field span:nth-child(4) { top: 86%; left: 79%; }
.capabilities__field span:nth-child(5) { top: 48%; left: 91%; }
.capabilities__field span:nth-child(6) { top: 61%; left: 35%; }

.capabilities__heading {
  position: absolute;
  z-index: 3;
  top: clamp(6rem, 10vh, 8rem);
  left: var(--page-gutter);
  max-width: 34rem;
  opacity: var(--cap-heading-opacity, 1);
  transform: translateY(var(--cap-heading-y, 0));
}

.capabilities__heading .section-label {
  color: var(--gold);
}

.capabilities__heading h2 {
  margin: 0;
  font-family: var(--sc-font-display);
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.capability-system {
  position: absolute;
  z-index: 2;
  inset: 12% 7% 8%;
}

.capability-system__orbits {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
}

.orbit {
  stroke: rgba(214, 165, 89, 0.58);
  stroke-width: 1.1;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  vector-effect: non-scaling-stroke;
}

.orbit--wide,
.orbit--tall {
  stroke: rgba(251, 247, 241, 0.2);
}

.orbit-node {
  fill: var(--gold);
  opacity: var(--orbit-node-opacity, 0);
}

.capability-system__globe {
  --globe-scale: 0.72;
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: clamp(10rem, 17vw, 15rem);
  aspect-ratio: 1;
  opacity: var(--globe-opacity, 0.14);
  transform: translate(-50%, -50%) scale(var(--globe-scale));
  will-change: transform, opacity;
}

.capability-system__globe svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.globe__edge,
.globe__line {
  fill: none;
  stroke: rgba(251, 247, 241, 0.36);
  stroke-width: 1;
}

.globe__dots {
  color: rgba(214, 165, 89, 0.8);
}

#dotGrid circle {
  fill: currentColor;
}

.capability-system__dock {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ivory);
  border-radius: 50%;
  background: var(--gold);
  opacity: var(--dock-opacity, 0);
  transform: translate(-50%, -50%);
}

.cap-panel {
  --panel-opacity: 0;
  --panel-scale: 0.95;
  --panel-x: 0px;
  --panel-y: 22px;
  position: absolute;
  z-index: 5;
  width: clamp(18rem, 25vw, 23rem);
  min-height: 10.6rem;
  display: grid;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  border: 1px solid rgba(251, 247, 241, 0.16);
  border-radius: 2px;
  background: rgba(8, 31, 50, 0.97);
  box-shadow: 0 28px 64px rgba(1, 8, 16, 0.38), inset 0 1px rgba(251, 247, 241, 0.1);
  opacity: var(--panel-opacity);
  transform: translate3d(var(--panel-x), var(--panel-y), 0) scale(var(--panel-scale));
  transform-origin: center;
  will-change: transform, opacity;
}

.cap-panel picture,
.cap-panel img {
  width: 100%;
  height: 100%;
}

.cap-panel img {
  object-fit: cover;
  filter: saturate(0.68) contrast(1.05) brightness(0.72);
}

.cap-panel > div {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.15rem;
}

.cap-panel p {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cap-panel h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--sc-font-display);
  font-size: clamp(1rem, 1.22vw, 1.28rem);
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 1.1;
  text-wrap: balance;
}

.cap-panel span {
  display: block;
  margin-top: 0.75rem;
  color: rgba(237, 240, 239, 0.72);
  font-size: 0.72rem;
  line-height: 1.45;
  text-wrap: pretty;
}

.cap-panel--systems {
  top: 1%;
  left: 0;
}

.cap-panel--studio {
  top: 1%;
  right: 0;
}

.cap-panel--learning {
  bottom: 0;
  left: 2%;
}

.cap-panel--products {
  right: 2%;
  bottom: 0;
}

.capabilities__progress {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 1.7rem;
  left: 0;
  margin: 0;
  color: rgba(251, 247, 241, 0.52);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.approach {
  background: var(--ivory);
  color: var(--navy);
}

.approach__stage {
  overflow: hidden;
  background: var(--ivory);
}

@media (min-width: 901px) {
  .approach__stage::after {
    content: "";
    position: absolute;
    z-index: 7;
    top: 0;
    right: 0;
    bottom: 0;
    width: clamp(5.5rem, 8vw, 8rem);
    background: linear-gradient(90deg, rgba(251, 247, 241, 0), var(--ivory) 76%);
    pointer-events: none;
  }
}

.approach__rail {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: clamp(3rem, 5vw, 6rem);
  padding: clamp(7rem, 14vh, 9rem) 12vw clamp(5rem, 10vh, 7rem) 8vw;
}

.approach__lead {
  width: min(44vw, 39rem);
  flex: 0 0 min(44vw, 39rem);
  align-self: center;
}

.approach__lead h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--sc-font-display);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.approach__lead > p:last-child {
  max-width: 50ch;
  margin: 1.8rem 0 0;
  color: var(--steel);
  font-size: 1.05rem;
  line-height: 1.7;
}

.principle {
  --principle-opacity: 0.58;
  --principle-y: 26px;
  position: relative;
  width: clamp(21rem, 30vw, 28rem);
  flex: 0 0 clamp(21rem, 30vw, 28rem);
  align-self: center;
  padding: 1.8rem 0 0;
  border-top: 1px solid rgba(6, 24, 43, 0.24);
  opacity: var(--principle-opacity);
  transform: translateY(var(--principle-y));
  will-change: transform, opacity;
}

.principle::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.principle > span {
  color: rgba(6, 24, 43, 0.08);
  font-family: var(--sc-font-display);
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.principle h3 {
  max-width: 13ch;
  margin: 1.8rem 0 0.85rem;
  font-family: var(--sc-font-display);
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.03;
  text-wrap: balance;
}

.principle p {
  max-width: 34ch;
  margin: 0;
  color: var(--steel);
  font-size: 1rem;
}

.approach__arrival {
  position: relative;
  width: min(35vw, 31rem);
  flex: 0 0 min(35vw, 31rem);
  align-self: center;
  padding-left: 5rem;
}

.approach__arrival::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3rem;
  height: 1px;
  background: var(--gold-deep);
}

.approach__arrival p {
  margin: 0;
  font-family: var(--sc-font-display);
  font-size: clamp(2.1rem, 3.5vw, 3.7rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.approach__arrival p:last-child {
  color: var(--gold-deep);
}

.contact {
  background: var(--navy-deep);
}

.contact__stage {
  overflow: hidden;
  background: var(--navy-deep);
}

.contact__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 66% 44%, rgba(214, 165, 89, 0.1), transparent 36%);
}

.contact__contours {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(214, 165, 89, 0.11);
  stroke-width: 1;
}

.contact__copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--page-gutter);
  max-width: 40rem;
  transform: translateY(-50%);
}

.contact__copy .section-label {
  color: var(--gold);
}

.contact__copy h2 {
  margin: 0;
  font-family: var(--sc-font-display);
  font-size: clamp(3.2rem, 5.6vw, 6rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.contact__copy > p:not(.section-label) {
  max-width: 46ch;
  margin: 1.6rem 0 2.1rem;
  color: rgba(237, 240, 239, 0.74);
  font-size: 1.08rem;
}

.contact__brand {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(7rem, 11vw, 12rem);
  width: 20rem;
  transform: translateY(-50%);
}

.contact__logo-field {
  width: 100%;
  min-height: 7rem;
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.brand-signature--contact {
  gap: 1.15rem;
}

.brand-signature--contact .brand-signature__mark {
  width: 4.5rem;
  height: 4.5rem;
}

.brand-signature--contact .brand-signature__name {
  font-size: 1.12rem;
  letter-spacing: 0.23em;
  line-height: 1;
}

.contact__brand > p {
  margin: 1.35rem 0 0;
  color: rgba(237, 240, 239, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.contact__arrival {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 57%;
  width: 1px;
  height: 1px;
}

.contact__arrival::before {
  content: "";
  position: absolute;
  top: 0;
  left: -7rem;
  width: 7rem;
  height: 1px;
  background: linear-gradient(to right, rgba(214, 165, 89, 0), var(--gold));
}

.contact__arrival span {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.site-footer {
  position: absolute;
  z-index: 2;
  right: var(--page-gutter);
  bottom: 1.45rem;
  left: var(--page-gutter);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(251, 247, 241, 0.12);
  color: rgba(237, 240, 239, 0.46);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.contact-dialog {
  width: min(36rem, calc(100vw - 2rem));
  padding: 0;
  border: 1px solid rgba(6, 24, 43, 0.18);
  border-radius: 2px;
  background: var(--ivory);
  color: var(--navy);
  box-shadow: 0 30px 90px rgba(1, 8, 16, 0.42);
}

.contact-dialog::backdrop {
  background: rgba(3, 16, 30, 0.76);
}

.contact-dialog form {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
}

.contact-dialog h2 {
  margin: 0;
  font-family: var(--sc-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.contact-dialog form > p:not(.section-label) {
  margin: 1.35rem 0 2rem;
  color: var(--steel);
}

.contact-dialog__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(6, 24, 43, 0.2);
  background: transparent;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 140ms cubic-bezier(0.23, 1, 0.32, 1), color 140ms cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-dialog__close:hover {
  background: var(--navy);
  color: var(--ivory);
}

@media (max-width: 1180px) {
  .site-header {
    gap: 1.4rem;
    padding-left: 12.5rem;
  }

  .primary-nav {
    gap: 1.2rem;
  }

  .capability-system {
    inset-inline: 4.5%;
  }

  .cap-panel {
    width: 19rem;
  }

  .cap-panel span {
    display: none;
  }

  .contact__brand {
    right: 6rem;
    width: 16rem;
  }

  .contact__logo-field {
    min-height: 6rem;
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: 1.25rem;
  }

  .site-header {
    min-height: 4.7rem;
    justify-content: flex-end;
    padding: 0.75rem var(--page-gutter) 0.75rem 11.25rem;
    background: rgba(3, 16, 30, 0.9);
  }

  .site-header.is-light {
    background: rgba(251, 247, 241, 0.96);
  }

  .primary-nav,
  .bearing-rail {
    display: none;
  }

  .site-header > .brand-signature {
    top: 0.55rem;
  }

  .site-header > .brand-signature .brand-signature__mark {
    width: 2.2rem;
    height: 2.2rem;
  }

  .site-header > .brand-signature .brand-signature__name {
    font-size: 0.68rem;
    letter-spacing: 0.17em;
  }

  .button--header {
    min-width: auto;
    min-height: 2.65rem;
    padding-inline: 0.9rem;
    font-size: 0.62rem;
  }

  .hero__copy {
    top: 35%;
    width: calc(100% - 2.5rem);
  }

  .hero__copy h1 {
    font-size: clamp(3rem, 10vw, 4.35rem);
  }

  .hero__media img,
  .hero__media video {
    object-position: 56% 50%;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(2, 12, 23, 0.15) 0%, rgba(2, 12, 23, 0.22) 22%, rgba(2, 12, 23, 0.7) 36%, rgba(2, 12, 23, 0.72) 64%, rgba(2, 12, 23, 0.24) 83%, rgba(2, 12, 23, 0.32) 100%),
      linear-gradient(90deg, rgba(2, 12, 23, 0.36), rgba(2, 12, 23, 0.02));
  }

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

  .purpose__statement,
  .purpose__statement--vision {
    max-width: 44rem;
    justify-self: start;
  }

  .purpose__bearing {
    height: 8rem;
  }

  .purpose__bearing svg {
    height: 9rem;
  }

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

  .capability-system {
    inset: 17% 3% 8%;
  }

  .cap-panel {
    width: min(19rem, 42vw);
    grid-template-columns: 1fr;
  }

  .cap-panel picture {
    display: none;
  }

  .contact__copy {
    top: 42%;
    width: calc(100% - 2.5rem);
  }

  .contact__brand {
    top: 73%;
    right: var(--page-gutter);
    width: 14rem;
  }

  .contact__logo-field {
    min-height: 5rem;
  }

  .brand-signature--contact .brand-signature__mark {
    width: 3.5rem;
    height: 3.5rem;
  }

  .brand-signature--contact .brand-signature__name {
    font-size: 0.86rem;
  }

  .contact__arrival {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-left: 10.25rem;
  }

  .site-header > .brand-signature {
    gap: 0.58rem;
  }

  .site-header > .brand-signature .brand-signature__mark {
    width: 1.95rem;
    height: 1.95rem;
  }

  .site-header > .brand-signature .brand-signature__name {
    font-size: 0.61rem;
  }

  .hero__copy > p {
    max-width: 28ch;
  }

  .hero__copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.25rem);
    text-shadow: 0 2px 18px rgba(0, 8, 18, 0.68), 0 1px 3px rgba(0, 8, 18, 0.8);
  }

  .purpose {
    padding-top: 8rem;
  }

  .threshold__paper p,
  .threshold__navy p {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .capabilities {
    height: auto !important;
  }

  .capabilities__stage {
    position: relative !important;
    min-height: auto;
    height: auto !important;
    padding: 8rem 1.25rem 5rem;
  }

  .capabilities__heading {
    position: relative;
    top: auto;
    left: auto;
    max-width: 24rem;
    margin-bottom: 4rem;
    opacity: 1;
    transform: none;
  }

  .capability-system {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .capability-system__orbits {
    display: none;
  }

  .capability-system__globe {
    position: relative;
    top: auto;
    left: auto;
    width: 10rem;
    margin: 0 auto 2rem;
    opacity: 1;
    transform: none;
  }

  .cap-panel {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 9.5rem;
    grid-template-columns: 36% 64%;
    opacity: 1;
    transform: none;
  }

  .cap-panel picture {
    display: block;
  }

  .cap-panel span {
    display: block;
  }

  .capabilities__progress {
    display: none;
  }

  .approach__rail {
    gap: 2rem;
    padding-inline: 1.25rem 6rem;
  }

  .approach__lead {
    width: 82vw;
    flex-basis: 82vw;
  }

  .principle {
    width: 78vw;
    flex-basis: 78vw;
  }

  .approach__arrival {
    width: 74vw;
    flex-basis: 74vw;
  }

  .contact__copy {
    top: 35%;
  }

  .contact__copy h2 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .contact__brand {
    top: auto;
    right: auto;
    bottom: 5.5rem;
    left: var(--page-gutter);
    width: 14rem;
    transform: none;
  }

  .contact__brand > p {
    width: 14rem;
    text-align: left;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 0.35rem;
  }
}

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

  .lodestar-guide {
    display: none;
  }

  .hero__media,
  .cap-panel,
  .principle {
    opacity: 1 !important;
    transform: none !important;
  }

  .capability-system__globe {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }

  .capabilities__heading {
    opacity: var(--cap-heading-opacity, 1) !important;
    transform: none !important;
  }

  .orbit {
    stroke-dashoffset: 0 !important;
  }

  .orbit-node {
    opacity: 1;
  }

  .primary-nav a::after,
  .bearing-rail a span,
  .button,
  .site-header,
  .skip-link {
    transition-duration: 1ms;
  }
}
