@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/dm-sans-latin-variable.woff2") format("woff2");
}
:root {
  --sans: "DM Sans",Arial,Helvetica,sans-serif;
  --ink: #151916;
  --paper: #efefe6;
  --white: #f4f4ea;
  --lime: #d5f584;
  --muted: #9a9e92;
  --line: rgba(235,242,223,.15);
  --serif: Georgia,"Times New Roman",serif;
  --ease: cubic-bezier(.2,.75,.2,1);
  --gutter: clamp(24px,4.5vw,80px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scroll-padding-top: 100px;
  overflow-x: clip;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.modal-open {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
select,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  color: inherit;
  border: 0;
}
button:disabled {
  cursor: wait;
  opacity: .6;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
select:focus-visible,
summary:focus-visible,
canvas:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 6px;
}
.light-section :focus-visible,
.contact-section :focus-visible {
  outline-color: var(--ink);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
em {
  font-family: var(--serif);
  font-weight: 400;
}
svg {
  display: block;
}
.icon-glyph {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: none;
  vertical-align: -.12em;
  overflow: visible;
  color: inherit;
}
.play-icon .icon-glyph {
  width: 11px;
  height: 11px;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
[hidden] {
  display: none!important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--lime);
  color: var(--ink);
  padding: 14px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 80;
  pointer-events: none;
}
.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  box-shadow: 0 0 14px #d5f58488;
  transform: scaleX(0);
  transform-origin: left;
}
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.7px;
  line-height: 1.6;
}
.small-cross {
  color: var(--lime);
  font-size: 23px;
  vertical-align: middle;
  margin-right: 12px;
}
.muted {
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-height: 50px;
  padding: 0 23px;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -.01em;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 3px;
  transition: background .25s,transform .25s var(--ease);
}
.button:hover {
  transform: translateY(-3px);
}
.button span {
  font-size: 22px;
  font-weight: 400;
}
.button-lime {
  background: var(--lime);
  color: var(--ink);
}
.button-lime:hover {
  background: #e4ffa4;
}
.button-dark {
  background: var(--ink);
  color: var(--white);
}
.button-dark:hover {
  background: #2b3529;
}
.text-link {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: none;
  font-size: 12px;
}
.text-link > span:last-child {
  transition: transform .3s;
}
.text-link:hover > span:last-child {
  transform: translate(3px,-2px);
}
.site-header {
  height: 100px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ink);
  transition: background .35s,border-color .35s,box-shadow .35s;
}
.site-header.is-scrolled {
  background: rgba(21,25,22,.94);
  border-bottom-color: rgba(213,245,132,.2);
  box-shadow: 0 12px 35px rgba(0,0,0,.16);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-logo {
  display: block;
  width: clamp(130px,11vw,158px);
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-left: auto;
  margin-right: 30px;
}
.desktop-nav a {
  font-size: 12px;
  color: #d1d4c9;
  transition: color .2s;
}
.desktop-nav a:hover {
  color: var(--lime);
}
.header-cta {
  background: var(--paper);
  color: var(--ink);
  min-height: 42px;
  gap: 31px;
  padding: 0 20px;
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.hero {
  position: relative;
  padding: 0 var(--gutter);
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  background-image: linear-gradient(to right,rgba(155,173,133,.08) 1px,transparent 1px);
  background-size: 25% 100%;
  background-position-y: calc(var(--hero-progress,0) * -80px);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 54px;
  width: 48%;
  pointer-events: none;
}
.hero-copy > * {
  pointer-events: auto;
}
.hero-copy > .eyebrow {
  font-size: 9px;
  letter-spacing: 1.65px;
  display: flex;
  align-items: center;
}
.hero-copy .small-cross {
  font-size: 22px;
  margin-right: 12px;
}
.hero h1 {
  font-size: clamp(72px,6.7vw,108px);
  line-height: .99;
  letter-spacing: -5px;
  margin: 26px 0 24px;
}
.hero h1 em {
  color: var(--lime);
  letter-spacing: -5.5px;
}
.hero-description {
  font-size: 13px;
  line-height: 1.85;
  color: #adb3a5;
  margin-bottom: 29px;
  max-width: 390px;
}
.hero-copy > .button {
  min-height: 51px;
}
.hero-secondary {
  display: flex;
  width: max-content;
  color: #c5c9bc;
  margin-top: 22px;
  font-size: 10px;
  gap: 9px;
}
.play-icon {
  border: 1px solid #646e5c;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.universe {
  position: absolute;
  right: 0;
  top: 15px;
  width: 58%;
  height: 610px;
  z-index: 1;
  transform: translate3d(0,calc(var(--hero-progress,0) * -22px),0)
    scale(calc(1 - var(--hero-progress,0) * .025));
  transform-origin: 55% 45%;
}
.universe-heading {
  position: absolute;
  top: 25px;
  left: 14%;
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  gap: 14px;
}
.universe-heading .eyebrow {
  font-size: 8px;
  letter-spacing: 1.2px;
  color: #a5ab98;
}
.live-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 7px;
  letter-spacing: 1px;
  color: #b7c2a7;
  white-space: nowrap;
}
.live-label i,
.stage-status i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px #d5f55580;
}
.live-label i {
  animation: live-pulse 3s infinite;
}
#network-canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: pan-y;
  cursor: grab;
}
#network-canvas:active {
  cursor: grabbing;
}
.coordinate {
  position: absolute;
  font: 8px/1.8 monospace;
  color: #77816e;
  pointer-events: none;
  letter-spacing: .5px;
}
.coordinate-top {
  top: 91px;
  right: var(--gutter);
}
.coordinate-bottom {
  bottom: 113px;
  left: 14%;
  font-size: 7px;
}
.orbital-label {
  position: absolute;
  font-size: 7px;
  letter-spacing: 1.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  color: #b9c99f;
}
.orbital-label-one {
  top: 142px;
  left: 20%;
  padding: 7px 10px;
  background: #20271dbf;
  border: 1px solid #58654b80;
  border-radius: 20px;
  transform: rotate(-10deg);
}
.radar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}
.floating-prospect {
  position: absolute;
  bottom: 166px;
  right: 10%;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  text-align: left;
  border-radius: 5px;
  background: rgba(37,46,31,.88);
  border: 1px solid #71825566;
  backdrop-filter: blur(15px);
  box-shadow: 0 16px 50px #0003;
  transform: rotate(-3deg);
  transition: transform .4s,border-color .3s;
  z-index: 4;
}
.floating-prospect:hover {
  transform: rotate(0) translateY(-5px);
  border-color: var(--lime);
}
.avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ccdcaf;
  color: #303e27;
  font-family: var(--serif);
  font-size: 15px;
}
.floating-prospect > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.floating-prospect small {
  font-size: 6px;
  letter-spacing: .9px;
  color: var(--lime);
}
.floating-prospect strong {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  gap: 25px;
  justify-content: space-between;
}
.floating-prospect strong span {
  color: var(--lime);
}
.floating-prospect > span > span {
  font-size: 8px;
  color: #a5b494;
}
.prospect-light {
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  position: absolute;
  right: 13px;
  top: 12px;
}
.scene-toolbar {
  position: absolute;
  left: 14%;
  right: var(--gutter);
  bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.drag-hint {
  font-size: 7px;
  letter-spacing: 1.1px;
  color: #929c87;
  display: flex;
  align-items: center;
  gap: 8px;
}
.scene-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}
.scene-actions select {
  border: 1px solid #46503f;
  color: #bac5ad;
  background: var(--ink);
  border-radius: 3px;
  padding: 7px 6px;
  font-size: 9px;
  max-width: 125px;
}
.icon-button {
  height: 28px;
  width: 28px;
  border: 1px solid #46503f;
  background: transparent;
  color: #bbc7ac;
  display: grid;
  place-items: center;
  border-radius: 3px;
  font-size: 14px;
}
.icon-button:hover {
  background: #39442c;
  color: var(--lime);
}
.scene-disclaimer {
  position: absolute;
  right: var(--gutter);
  bottom: 22px;
  color: #707b67;
  font-size: 8px;
  letter-spacing: .2px;
}
.scene-fallback {
  position: absolute;
  top: 45%;
  left: 22%;
  right: 15%;
  font-size: 13px;
  line-height: 1.8;
  color: var(--lime);
}
.journey {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 24% 76%;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding: 28px 0 0;
  scroll-margin-top: 30px;
}
.journey-intro {
  padding-top: 4px;
}
.journey-intro > .eyebrow {
  font-size: 7px;
  letter-spacing: 1.3px;
  color: #a4ae98;
}
.journey-intro > p {
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.4px;
  margin-top: 12px;
}
.journey-note {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 9px;
  color: #8f9a84;
  margin-top: 16px;
}
.journey-note > span {
  font-size: 19px;
  color: var(--lime);
}
.stage-tabs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.stage-tab {
  position: relative;
  background: transparent;
  text-align: left;
  padding: 8px 14px 23px;
  color: #858f7c;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  transition: color .3s,background .3s;
}
.stage-tab:hover {
  background: #23291e;
  color: var(--paper);
}
.stage-index {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
  font-size: 10px;
  margin-bottom: 26px;
}
.stage-index svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.2;
}
.stage-tab strong {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -.3px;
  margin-bottom: 7px;
  white-space: nowrap;
}
.stage-tab > span:not(.stage-index) {
  font-size: 9px;
}
.stage-tab i {
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 0;
  height: 1px;
  background: #414a37;
  transition: background .3s;
}
.stage-tab i:before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  background: #414a37;
  border-radius: 50%;
}
.stage-tab.is-active {
  color: var(--paper);
}
.stage-tab.is-active .stage-index {
  color: var(--lime);
}
.stage-tab.is-active i,
.stage-tab.is-active i:before {
  background: var(--lime);
}
.stage-tab.is-active i:before {
  box-shadow: 0 0 12px #d5f58588;
}
.stage-description {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 22px 0 24px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .42s var(--ease),transform .42s var(--ease);
}
.stage-description.stage-shown {
  opacity: 1;
  transform: translateY(0);
}
.stage-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 7px;
  letter-spacing: 1px;
  white-space: nowrap;
  color: var(--lime);
  min-width: 205px;
}
.stage-description > p {
  font-size: 10px;
  color: #9fa894;
  line-height: 1.7;
  max-width: 515px;
}
.stage-description > .text-link {
  font-size: 10px;
  flex-shrink: 0;
}
.stage-description > .text-link span {
  color: var(--lime);
}
.sector-strip {
  padding: 30px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #1c211b;
}
.sector-strip > span:first-child {
  font-size: 8px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #99a58c;
}
.sector-strip p {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #cad0c0;
  font-size: 12px;
  letter-spacing: -.2px;
}
.sector-strip svg {
  width: 23px;
  height: 25px;
  fill: none;
  stroke: #aebba0;
  stroke-width: 1.1;
}
.strip-footnote {
  font-size: 9px;
  color: #828e77;
  line-height: 1.7;
  text-align: right;
}
.light-section {
  background: var(--paper);
  color: var(--ink);
}
.section-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 37px;
}
.section-topline .eyebrow {
  font-size: 8px;
  letter-spacing: 1.4px;
}
.light-section .muted {
  color: #7d8573;
}
.approach {
  padding: 65px var(--gutter) 80px;
}
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}
h2 {
  font-size: clamp(42px,4.4vw,66px);
  line-height: 1.06;
  letter-spacing: -2.8px;
}
.approach-intro > p {
  max-width: 338px;
  font-size: 13px;
  line-height: 1.85;
  color: #697060;
  margin-top: 26px;
}
.connection-map {
  position: relative;
  max-width: 410px;
  height: 220px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid #d5d9ca;
  border-radius: 4px;
  background: #e8ebdf;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#aeb9a2 1px,transparent 1px);
  background-size: 15px 15px;
  opacity: .4;
}
.connection-map > svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 3px;
  left: 0;
}
.map-orbit {
  stroke: #b9c2aa;
  stroke-width: 1;
  stroke-dasharray: 3 4;
  opacity: .7;
}
.second-orbit {
  opacity: .4;
}
.map-route {
  stroke: #4d6430;
  stroke-width: 1.5;
  stroke-dasharray: 430;
  stroke-dashoffset: var(--route-offset,430px);
  transition: stroke-dashoffset .08s linear;
}
.map-point {
  fill: #d5f584;
  stroke: #5d753d;
  stroke-width: 1.5;
}
.map-halo {
  fill: #bcd99844;
  stroke: #759655;
  stroke-width: 1;
  transition: cx .7s var(--ease),cy .7s var(--ease);
}
.map-caption {
  position: absolute;
  top: 20px;
  left: 18px;
  font-size: 6px;
  letter-spacing: .85px;
  z-index: 1;
  color: #6f7d5d;
}
.map-start,
.map-end {
  position: absolute;
  bottom: 18px;
  font-size: 6px;
  letter-spacing: .6px;
  color: #7b886a;
}
.map-start {
  left: 18px;
}
.map-end {
  right: 18px;
  color: #364b26;
}
.approach-steps {
  padding-top: 1px;
}
.approach-step {
  border-top: 1px solid #cbd0bf;
}
.approach-step:last-of-type {
  border-bottom: 1px solid #cbd0bf;
}
summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.approach-step summary {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 28px 0;
}
.approach-step summary > span {
  font-family: monospace;
  font-size: 10px;
  color: #828d74;
}
.approach-step h3 {
  font-size: 21px;
  letter-spacing: -.6px;
}
.approach-step summary > i {
  margin-left: auto;
  font-style: normal;
  font-size: 22px;
  font-weight: 300;
  color: #6b755c;
  transition: transform .3s;
}
.approach-step[open] summary > i {
  transform: rotate(45deg);
}
.step-body {
  padding: 0 26px 29px 34px;
}
.step-body > p {
  font-size: 12px;
  line-height: 1.9;
  color: #6e7664;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 21px;
}
.tag-row > span {
  font-size: 8px;
  color: #697658;
  border: 1px solid #c9d2bd;
  border-radius: 3px;
  padding: 7px 9px;
}
.approach-signoff {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 12px;
}
.approach-signoff .small-cross {
  font-size: 29px;
  color: #778f51;
}
.approach-signoff p {
  font-size: 10px;
  line-height: 1.8;
  color: #76806a;
}
.approach-signoff strong {
  font-weight: 400;
  color: #39472e;
}
.difference {
  padding: 67px var(--gutter) 83px;
  background: #191e18;
}
.difference-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 45px;
}
.difference-heading h2 em {
  color: var(--lime);
}
.difference-heading > p {
  font-size: 12px;
  line-height: 1.85;
  color: #9ca790;
  margin-right: 9%;
}
.difference-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 21px;
}
.difference-card {
  border: 1px solid #3a4432;
  border-radius: 3px;
  padding: 0 26px 31px;
  transition: border-color .3s,transform .3s;
  background: linear-gradient(145deg,#252c2099,transparent);
}
.difference-card:hover {
  border-color: #6d8254;
  transform: translateY(-5px);
}
.card-art {
  height: 195px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 27px;
}
.card-art > svg {
  width: 100%;
  max-width: 280px;
  max-height: 155px;
  stroke: #7a8964;
  stroke-width: 1;
}
.card-art > span {
  font-size: 6px;
  letter-spacing: 1.5px;
  color: #808f70;
  position: absolute;
  bottom: 16px;
}
.art-accent {
  stroke: var(--lime);
  fill: var(--lime);
}
.hollow {
  fill: none;
}
.art-dashed {
  stroke-dasharray: 3 4;
  opacity: .5;
}
.card-number {
  font: 8px monospace;
  color: #94a27f;
  letter-spacing: 1px;
}
.difference-card h3 {
  font-size: 21px;
  letter-spacing: -.6px;
  margin: 13px 0 17px;
}
.difference-card p {
  font-size: 11px;
  line-height: 1.9;
  color: #9ca790;
  max-width: 285px;
}
.questions {
  padding: 65px var(--gutter) 83px;
}
.questions-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8%;
}
.questions-layout > div > p {
  font-size: 11px;
  color: #7b8371;
  margin: 30px 0 14px;
}
.dark-link {
  font-size: 11px;
  border-bottom: 1px solid #9aa98a;
  padding-bottom: 8px;
}
.faq-list {
  border-top: 1px solid #cbd0bf;
}
.faq-list details {
  border-bottom: 1px solid #cbd0bf;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 13px;
  line-height: 1.5;
}
.faq-list summary > span {
  font-size: 18px;
  color: #7c886b;
  transition: transform .3s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 12px;
  line-height: 1.9;
  color: #6e7664;
  padding: 0 30px 24px 0;
  max-width: 570px;
}
.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
  padding: 70px var(--gutter) 77px;
}
.contact-content {
  position: relative;
  z-index: 1;
}
.contact-content > .eyebrow {
  font-size: 8px;
  letter-spacing: 1.2px;
}
.contact-content h2 {
  font-size: clamp(64px,7vw,106px);
  letter-spacing: -5px;
  margin: 25px 0;
}
.contact-content > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.8;
  color: #52643a;
}
.contact-content > .button {
  margin-top: 28px;
}
.contact-orbits {
  position: absolute;
  width: 550px;
  height: 550px;
  right: 1%;
  top: 10px;
  transform: translate3d(0,calc((.5 - var(--contact-progress,0)) * 55px),0)
    rotate(calc(-34deg + var(--contact-progress,0) * 42deg))
    scale(calc(.92 + var(--contact-progress,0) * .12));
  transform-origin: center;
}
.contact-orbits i {
  position: absolute;
  inset: 10%;
  border: 1px solid #7a994969;
  border-radius: 50%;
  transform: rotateX(40deg);
}
.contact-orbits i:nth-child(2) {
  transform: rotateY(60deg) rotateX(10deg);
  inset: 0;
}
.contact-orbits i:nth-child(3) {
  transform: rotateY(-30deg) rotateX(60deg);
  inset: 0;
}
.contact-orbits:before,
.contact-orbits:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: #526c30;
  border-radius: 50%;
  top: 30%;
  left: 16%;
}
.contact-orbits:after {
  top: 66%;
  left: 85%;
  width: 5px;
  height: 5px;
}
.contact-orbits > span {
  position: absolute;
  top: 35%;
  left: 39%;
  font-size: 140px;
  font-weight: 400;
  color: #46632b;
  animation: orbit-spin 80s linear infinite;
}
.contact-corner {
  position: absolute;
  bottom: 33px;
  right: var(--gutter);
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #52643a;
}
.site-footer {
  padding: 45px var(--gutter) 25px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 40px;
}
.footer-top > p {
  font-size: 10px;
  line-height: 1.8;
  color: #939e87;
}
.back-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-size: 10px;
  color: #bcc4b2;
}
.back-top span {
  font-size: 20px;
  color: var(--lime);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  color: #7f8b72;
  font-size: 8px;
}
.footer-bottom button {
  font-size: 8px;
  color: #aab59f;
  background: none;
  padding: 0;
}
dialog {
  position: fixed;
  background: #1d241b;
  color: var(--paper);
  border: 1px solid #4a583d;
  padding: 42px;
  border-radius: 7px;
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 48px);
  box-shadow: 0 30px 150px #0008;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #10160fba;
  backdrop-filter: blur(9px);
}
dialog[open] {
  animation: dialog-in .3s var(--ease);
}
.dialog-close {
  position: absolute;
  right: 17px;
  top: 12px;
  padding: 6px;
  background: none;
  color: #aab79d;
  font-size: 27px;
  line-height: 1;
}
.dialog-close:hover {
  color: var(--lime);
}
dialog > .eyebrow,
.contact-dialog .eyebrow {
  color: #9eaf8b;
  font-size: 8px;
}
.prospect-dialog {
  width: 480px;
}
.prospect-heading {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 30px 0 20px;
}
.large-avatar {
  width: 57px;
  height: 57px;
  font-size: 22px;
}
.prospect-heading h2 {
  font-size: 31px;
  letter-spacing: -1px;
}
.prospect-heading p {
  margin-top: 7px;
  font-size: 11px;
  color: #a5b397;
}
.prospect-company {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 15px;
}
.prospect-company > span:last-child {
  color: #9fb18a;
  font-size: 10px;
}
.prospect-example {
  font-size: 6px;
  letter-spacing: 1px;
  color: #81946f;
  margin: 17px 0 25px;
}
.prospect-story-step {
  position: relative;
  padding: 0 0 25px 28px;
  border-left: 1px solid #4e613d;
  margin-left: 5px;
}
.prospect-story-step:before {
  content: "";
  position: absolute;
  top: 3px;
  left: -4px;
  background: #50623d;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.prospect-story-step.is-reached:before {
  background: var(--lime);
}
.prospect-story-step:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}
.prospect-story-step > span {
  font-size: 7px;
  letter-spacing: 1px;
  color: #a8be8e;
}
.prospect-story-step > p {
  margin-top: 9px;
  font-size: 11px;
  line-height: 1.8;
  color: #aab59f;
}
.prospect-story-step.is-future {
  opacity: .4;
}
.prospect-dialog-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  margin-top: 25px;
  border-top: 1px solid var(--line);
}
.prospect-dialog-bottom > span {
  font: 9px monospace;
  color: #81946f;
}
.prospect-dialog-bottom button {
  font-size: 11px;
}
.contact-dialog {
  width: 560px;
}
.contact-dialog h2 {
  font-size: 58px;
  letter-spacing: -2.5px;
  margin: 18px 0;
}
.contact-dialog h2 em {
  color: var(--lime);
}
.form-intro {
  font-size: 12px;
  color: #a0ad93;
  line-height: 1.8;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
form label {
  font-size: 10px;
  color: #c2cdb5;
  display: block;
  margin-bottom: 17px;
}
form input:not([type=checkbox]),
form select,
form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #4a563e;
  background: #171e15;
  border-radius: 3px;
  color: var(--paper);
  padding: 12px;
  font-size: 12px;
  outline: none;
}
form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--lime);
}
form input::placeholder,
form textarea::placeholder {
  color: #738168;
}
form textarea {
  resize: vertical;
  min-height: 85px;
}
form select {
  color: #b8c6a7;
}
form .optional {
  color: #7d8d70;
  font-size: 9px;
}
form .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 9px;
  line-height: 1.7;
  color: #97a98a;
}
.consent-label input {
  margin: 2px 0 0;
  accent-color: var(--lime);
  flex-shrink: 0;
}
.inline-privacy {
  background: none;
  color: #c4d6b0;
  text-decoration: underline;
  font-size: 9px;
  padding: 0;
}
.form-submit {
  width: 100%;
  margin-top: 3px;
}
.download-brief {
  display: block;
  background: none;
  color: #95a685;
  font-size: 9px;
  margin: 19px auto 0;
  padding: 5px;
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  font-size: 11px;
  color: #ffcfaa;
  line-height: 1.6;
  margin-bottom: 18px;
}
.success-symbol {
  font-size: 80px;
  color: var(--lime);
  display: block;
  margin: 5px 0 35px;
}
#contact-success > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.9;
  color: #aaba9b;
}
.enquiry-reference {
  font-family: monospace;
  padding: 14px 0;
  margin: 14px 0 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.privacy-dialog {
  width: 560px;
}
.privacy-dialog h2 {
  font-size: 35px;
  letter-spacing: -1.5px;
  margin: 23px 0;
}
.privacy-dialog h3 {
  font-size: 16px;
  margin: 24px 0 10px;
}
.privacy-dialog p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.9;
  color: #abb99d;
}
.privacy-dialog .privacy-note {
  border-top: 1px solid var(--line);
  padding-top: 17px;
  margin-top: 25px;
  font-size: 10px!important;
  color: #d3d5a1!important;
}
.noscript-notice {
  padding: 20px;
  background: var(--lime);
  color: var(--ink);
  font-size: 13px;
  text-align: center;
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease),transform .75s var(--ease);
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.motion-ready .hero-copy > .eyebrow,
.motion-ready .hero h1,
.motion-ready .hero-description,
.motion-ready .hero-copy > .button,
.motion-ready .hero-secondary,
.motion-ready .universe {
  opacity: 0;
  transition-property: opacity,transform;
  transition-duration: .8s;
  transition-timing-function: var(--ease);
}
.motion-ready .hero-copy > .eyebrow {
  transform: translateX(-22px);
}
.motion-ready .hero h1 {
  clip-path: inset(0 0 100% 0);
  transform: translateY(28px);
  transition-property: opacity,transform,clip-path;
  transition-duration: 1s;
}
.motion-ready .hero-description,
.motion-ready .hero-copy > .button,
.motion-ready .hero-secondary {
  transform: translateY(20px);
}
.motion-ready .universe {
  transform: translate3d(30px,calc(var(--hero-progress,0) * -22px),0) scale(.94);
}
.motion-ready body.is-loaded .hero-copy > .eyebrow,
.motion-ready body.is-loaded .hero h1,
.motion-ready body.is-loaded .hero-description,
.motion-ready body.is-loaded .hero-copy > .button,
.motion-ready body.is-loaded .hero-secondary,
.motion-ready body.is-loaded .universe {
  opacity: 1;
}
.motion-ready body.is-loaded .hero-copy > .eyebrow {
  transform: translateX(0);
  transition-delay: .08s;
}
.motion-ready body.is-loaded .hero h1 {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
  transition-delay: .14s;
}
.motion-ready body.is-loaded .hero-description {
  transform: translateY(0);
  transition-delay: .28s;
}
.motion-ready body.is-loaded .hero-copy > .button {
  transform: translateY(0);
  transition-delay: .36s;
}
.motion-ready body.is-loaded .hero-secondary {
  transform: translateY(0);
  transition-delay: .42s;
}
.motion-ready body.is-loaded .universe {
  transform: translate3d(0,calc(var(--hero-progress,0) * -22px),0)
    scale(calc(1 - var(--hero-progress,0) * .025));
  transition-delay: .2s;
  transition-duration: 1.25s;
}
.motion-ready .motion-item {
  --motion-delay: calc(var(--motion-order,0) * 75ms);
  opacity: 0;
  transition: opacity .75s var(--ease) var(--motion-delay),
    transform .9s var(--ease) var(--motion-delay),
    border-color .3s;
}
.motion-ready .motion-rise {
  transform: translateY(34px);
}
.motion-ready .motion-from-left {
  transform: translateX(-42px);
}
.motion-ready .motion-from-right {
  transform: translateX(42px);
}
.motion-ready .motion-depth {
  transform: translateY(40px) scale(.965);
}
.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
}
.motion-ready .difference-card.motion-item.is-visible:hover {
  transform: translateY(-7px) scale(1.012);
}
.motion-ready .contact-content > .motion-item {
  transition-delay: calc(var(--motion-order,0) * 95ms);
}
.form-intro a,
.privacy-dialog a,
.noscript-notice a {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.form-handoff {
  color: #aeb6a7;
  font-size: 10px;
  line-height: 1.7;
  margin: 4px 0 18px;
}
.form-handoff .inline-privacy {
  color: var(--white);
}
.contact-email,
.footer-email {
  display: inline-flex;
  width: max-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: color .2s,border-color .2s;
}
.contact-email {
  margin: 18px 0 0 18px;
  color: #3b4934;
  font-size: 11px;
}
.contact-email:hover {
  color: var(--ink);
}
.footer-email {
  color: #b8beb0;
  font-size: 10px;
}
.footer-email:hover {
  color: var(--lime);
}
.difference-card:nth-child(2) {
  transition-delay: .07s;
}
.difference-card:nth-child(3) {
  transition-delay: .14s;
}
@keyframes live-pulse {
  50% {
    opacity: .35;
  }
}
@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (min-width:1500px) {
  .hero-copy {
    padding-top: 82px;
  }
  .universe {
    height: 710px;
  }
  .hero h1 {
    margin-top: 37px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-secondary {
    margin-top: 27px;
  }
  .journey {
    margin-top: 87px;
  }
  .stage-tab strong {
    font-size: 17px;
  }
  .stage-index {
    margin-bottom: 32px;
  }
  .universe-heading {
    top: 38px;
  }
  .floating-prospect {
    bottom: 185px;
    right: 14%;
    transform: rotate(-3deg) scale(1.1);
  }
  .scene-toolbar {
    bottom: 54px;
  }
  .scene-disclaimer {
    bottom: 26px;
  }
  .sector-strip {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .approach,
  .difference,
  .questions {
    padding-top: 85px;
    padding-bottom: 100px;
  }
  .card-art {
    height: 235px;
  }
  .difference-card h3 {
    font-size: 25px;
  }
  .difference-card p {
    font-size: 13px;
  }
  .step-body > p {
    font-size: 14px;
  }
  .approach-step summary {
    padding: 31px 0;
  }
  .approach-step h3 {
    font-size: 24px;
  }
}
@media (max-width:1100px) {
  .desktop-nav {
    gap: 24px;
    margin-right: 8px;
  }
  .hero h1 {
    font-size: 83px;
  }
  .hero-copy {
    width: 49%;
  }
  .hero-description {
    font-size: 12px;
  }
  .universe {
    width: 59%;
    height: 605px;
    right: -2%;
  }
  .universe-heading {
    left: 17%;
  }
  .universe-heading .eyebrow {
    font-size: 7px;
  }
  .live-label {
    font-size: 6px;
  }
  .floating-prospect {
    min-width: 230px;
    right: 11%;
    bottom: 167px;
    padding: 12px;
  }
  .scene-toolbar {
    left: 19%;
    right: 11%;
    gap: 9px;
  }
  .drag-hint {
    font-size: 6px;
  }
  .scene-actions select {
    max-width: 96px;
  }
  .stage-tabs {
    gap: 4px;
  }
  .stage-tab {
    padding-left: 11px;
  }
  .stage-tab strong {
    font-size: 12px;
  }
  .stage-tab > span:not(.stage-index) {
    font-size: 8px;
  }
  .stage-tab i {
    left: 11px;
  }
  .journey-intro > .eyebrow {
    font-size: 6px;
  }
  .stage-status {
    min-width: 170px;
    font-size: 6px;
  }
  .stage-description {
    gap: 17px;
  }
  .stage-description > p {
    font-size: 9px;
  }
  .stage-description > .text-link {
    font-size: 9px;
  }
  .sector-strip {
    gap: 15px;
  }
  .sector-strip p {
    font-size: 10px;
    gap: 8px;
  }
  .strip-footnote {
    display: none;
  }
  .approach-layout {
    gap: 7%;
  }
  .approach-step h3 {
    font-size: 19px;
  }
  .difference-card {
    padding: 0 20px 26px;
  }
  .difference-card h3 {
    font-size: 18px;
  }
  .difference-heading > p {
    margin-right: 4%;
  }
  .contact-orbits {
    right: -10%;
  }
}
@media (max-width:800px) {
  :root {
    --gutter: 28px;
  }
  .site-header {
    height: 82px;
    gap: 20px;
  }
  .brand-logo {
    width: 134px;
  }
  .desktop-nav {
    gap: 21px;
    margin-right: 0;
  }
  .desktop-nav a {
    font-size: 10px;
  }
  .header-cta {
    font-size: 12px;
    gap: 19px;
    padding: 0 15px;
    min-height: 38px;
  }
  .hero-copy {
    padding-top: 45px;
    width: 52%;
  }
  .hero h1 {
    font-size: 68px;
    letter-spacing: -3.6px;
    margin-top: 25px;
  }
  .hero h1 em {
    letter-spacing: -3.9px;
  }
  .hero-copy > .eyebrow {
    font-size: 7px;
  }
  .hero-description {
    font-size: 11px;
    max-width: 290px;
  }
  .desktop-break {
    display: none;
  }
  .hero-copy > .button {
    min-height: 47px;
    font-size: 12px;
    padding: 0 17px;
    gap: 20px;
  }
  .hero-secondary {
    font-size: 9px;
  }
  .universe {
    height: 520px;
    top: 10px;
    right: -5%;
    width: 61%;
  }
  .universe-heading {
    left: 25%;
    right: 13%;
    top: 24px;
  }
  .universe-heading .eyebrow {
    font-size: 6px;
  }
  .live-label {
    display: none;
  }
  .coordinate-top {
    right: 13%;
    font-size: 6px;
  }
  .coordinate-bottom {
    left: 27%;
    bottom: 107px;
    font-size: 6px;
  }
  .orbital-label-one {
    top: 112px;
    left: 26%;
    font-size: 5px;
  }
  .floating-prospect {
    right: 16%;
    bottom: 137px;
    min-width: 205px;
    gap: 8px;
    padding: 11px;
    transform: rotate(-3deg) scale(.93);
    transform-origin: right center;
  }
  .floating-prospect strong {
    font-size: 13px;
  }
  .floating-prospect small {
    font-size: 5px;
  }
  .floating-prospect > span > span {
    font-size: 7px;
  }
  .floating-prospect .avatar {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .scene-toolbar {
    left: 27%;
    right: 14%;
    bottom: 49px;
  }
  .drag-hint {
    font-size: 0;
    gap: 0;
  }
  .scene-actions {
    gap: 5px;
  }
  .scene-disclaimer {
    right: 14%;
    font-size: 6px;
  }
  .journey {
    margin-top: 49px;
    grid-template-columns: 21% 79%;
    padding-top: 25px;
  }
  .journey-intro > .eyebrow {
    font-size: 5px;
    letter-spacing: .7px;
  }
  .journey-intro > p {
    font-size: 17px;
  }
  .journey-note {
    font-size: 7px;
    gap: 8px;
  }
  .stage-tab strong {
    font-size: 10px;
  }
  .stage-tab > span:not(.stage-index) {
    font-size: 7px;
  }
  .stage-index {
    margin-bottom: 21px;
    font-size: 9px;
  }
  .stage-index svg {
    width: 19px;
    height: 19px;
  }
  .stage-description > p {
    font-size: 8px;
  }
  .stage-status {
    min-width: 135px;
    font-size: 5px;
    letter-spacing: .6px;
  }
  .stage-description > .text-link {
    font-size: 8px;
    gap: 8px;
  }
  .sector-strip > span:first-child {
    font-size: 6px;
  }
  .sector-strip p {
    font-size: 9px;
  }
  .sector-strip svg {
    width: 20px;
  }
  .section-topline .eyebrow {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .approach,
  .difference,
  .questions {
    padding-top: 45px;
    padding-bottom: 55px;
  }
  h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }
  .approach-layout {
    gap: 5%;
  }
  .approach-intro > p {
    font-size: 11px;
  }
  .approach-step h3 {
    font-size: 16px;
  }
  .approach-step summary {
    gap: 12px;
    padding: 23px 0;
  }
  .step-body {
    padding-left: 25px;
    padding-right: 0;
  }
  .step-body > p {
    font-size: 10px;
  }
  .tag-row > span {
    font-size: 7px;
    padding: 6px;
  }
  .approach-signoff {
    gap: 3px;
  }
  .approach-signoff p {
    font-size: 8px;
  }
  .connection-map {
    height: 190px;
    margin-top: 29px;
  }
  .map-caption,
  .map-start,
  .map-end {
    font-size: 5px;
  }
  .difference-heading > p {
    font-size: 10px;
    margin-right: 0;
  }
  .difference-cards {
    gap: 12px;
  }
  .difference-card {
    padding: 0 15px 24px;
  }
  .difference-card h3 {
    font-size: 16px;
    line-height: 1.3;
    min-height: 41px;
  }
  .difference-card p {
    font-size: 10px;
  }
  .card-art {
    height: 160px;
  }
  .card-art > span {
    font-size: 5px;
    letter-spacing: .8px;
  }
  .card-number {
    font-size: 6px;
  }
  .questions-layout {
    gap: 5%;
    grid-template-columns: 1fr 1.4fr;
  }
  .faq-list summary {
    font-size: 11px;
    padding: 20px 0;
  }
  .faq-list details p {
    font-size: 11px;
  }
  .contact-content h2 {
    font-size: 80px;
    letter-spacing: -4px;
  }
  .contact-orbits {
    width: 430px;
    height: 430px;
    right: -17%;
    top: 40px;
  }
  .contact-orbits > span {
    font-size: 110px;
  }
  .contact-content > p:not(.eyebrow) {
    font-size: 11px;
  }
  .footer-top {
    gap: 36px;
  }
}
@media (max-width:600px) {
  :root {
    --gutter: 22px;
  }
  html {
    scroll-padding-top: 25px;
  }
  .site-header {
    height: 78px;
    padding-left: max(var(--gutter),env(safe-area-inset-left));
    padding-right: max(var(--gutter),env(safe-area-inset-right));
    background: rgba(21,25,22,.94);
    backdrop-filter: blur(12px);
  }
  .brand-logo {
    width: 124px;
  }
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
    min-height: 44px;
    gap: 18px;
    font-size: 12px;
  }
  .header-cta span {
    font-size: 18px;
  }
  .menu-toggle {
    background: none;
    padding: 8px 0 8px 4px;
    width: 44px;
    height: 44px;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--paper);
    transition: transform .2s;
  }
  .menu-toggle[aria-expanded=true] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .mobile-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    z-index: 15;
    background: #1c2418;
    padding: 25px max(var(--gutter),env(safe-area-inset-right)) calc(30px + env(safe-area-inset-bottom)) max(var(--gutter),env(safe-area-inset-left));
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #657a4b;
    box-shadow: 0 15px 35px #0005;
  }
  .mobile-nav > a {
    padding: 17px 0;
    font-size: 19px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
  }
  .mobile-nav > a > span {
    font: 9px monospace;
    color: #a8b596;
  }
  .mobile-nav > button {
    background: var(--lime);
    color: var(--ink);
    padding: 15px;
    margin-top: 20px;
    text-align: left;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: -.01em;
    font-weight: 500;
  }
  .hero-copy {
    width: 100%;
    padding-top: 34px;
  }
  .hero-copy > .eyebrow {
    font-size: 7px;
    letter-spacing: 1.3px;
  }
  .hero-copy .small-cross {
    font-size: 19px;
  }
  .hero h1 {
    font-size: clamp(58px,16.8vw,82px);
    line-height: .97;
    letter-spacing: -3.7px;
    margin: 25px 0 23px;
  }
  .hero h1 br:nth-child(2) {
    display: none;
  }
  .hero h1 em {
    display: inline;
    letter-spacing: -4px;
  }
  .hero h1 em:before {
    content: " ";
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.8;
    max-width: 355px;
    margin-bottom: 24px;
  }
  .hero-copy > .button {
    min-height: 47px;
    font-size: 13px;
    padding: 0 19px;
    gap: 31px;
  }
  .hero-secondary {
    display: inline-flex;
    margin-top: 17px;
    font-size: 9px;
  }
  .universe {
    position: relative;
    height: clamp(390px,112vw,440px);
    top: auto;
    right: auto;
    width: calc(100% + 44px);
    margin: 8px -22px 0;
    transform-origin: 50% 45%;
  }
  .universe-heading {
    left: var(--gutter);
    right: var(--gutter);
    top: 15px;
  }
  .universe-heading .eyebrow {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .live-label {
    display: flex;
    font-size: 5px;
  }
  .coordinate-top {
    top: 55px;
    right: var(--gutter);
    font-size: 6px;
  }
  .coordinate-bottom {
    left: var(--gutter);
    bottom: 99px;
    font-size: 5px;
  }
  .orbital-label-one {
    top: 72px;
    left: 13%;
    font-size: 5px;
  }
  .floating-prospect {
    right: 9%;
    bottom: 102px;
    min-width: 218px;
    transform: rotate(-3deg);
    padding: 12px;
  }
  .scene-toolbar {
    left: var(--gutter);
    right: var(--gutter);
    bottom: 33px;
  }
  .drag-hint {
    font-size: 6px;
    gap: 7px;
  }
  .scene-actions select {
    max-width: 110px;
    font-size: 9px;
    padding: 10px 7px;
    min-height: 44px;
  }
  .scene-actions .icon-button {
    min-width: 44px;
    min-height: 44px;
  }
  .scene-disclaimer {
    right: var(--gutter);
    bottom: 11px;
    font-size: 6px;
  }
  .journey {
    margin-top: 16px;
    display: block;
    padding-top: 24px;
  }
  .journey-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 26px;
    flex-wrap: wrap;
  }
  .journey-intro > .eyebrow {
    width: 100%;
    font-size: 7px;
    letter-spacing: 1px;
  }
  .journey-intro > p {
    font-size: 22px;
    margin: 0;
    line-height: 1.15;
  }
  .journey-intro > p > br {
    display: block;
  }
  .journey-note {
    font-size: 7px;
    margin: 1px 0 0;
    gap: 8px;
  }
  .stage-tabs {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 1px;
    background: var(--line);
  }
  .stage-tab {
    min-height: 132px;
    padding: 15px 14px 20px;
    background: var(--ink);
  }
  .stage-tab:first-child {
    padding-left: 14px;
    border: 0;
  }
  .stage-tab:first-child i {
    left: 14px;
  }
  .stage-tab strong {
    font-size: 12px;
    line-height: 1.4;
    white-space: normal;
    max-width: 120px;
    margin-bottom: 7px;
    min-height: 28px;
  }
  .stage-tab > span:not(.stage-index) {
    font-size: 8px;
    line-height: 1.6;
    min-height: 20px;
  }
  .stage-index {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .stage-index svg {
    width: 18px;
    height: 18px;
  }
  .stage-tab i {
    left: 14px;
  }
  .stage-description {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-top: 22px;
    padding: 0 0 23px;
    border: 0;
  }
  .stage-status {
    font-size: 6px;
    letter-spacing: .7px;
    min-width: 0;
  }
  .stage-description > p {
    font-size: 10px;
    line-height: 1.8;
    grid-row: 2;
    grid-column: 1/-1;
    max-width: none;
  }
  .stage-description > .text-link {
    font-size: 8px;
    gap: 7px;
  }
  .sector-strip {
    padding: 23px var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 10px;
  }
  .sector-strip > span:first-child {
    font-size: 6px;
    letter-spacing: .8px;
  }
  .sector-strip p {
    font-size: 9px;
    gap: 9px;
  }
  .sector-strip svg {
    width: 20px;
    height: 23px;
  }
  .approach,
  .difference,
  .questions {
    padding: 40px var(--gutter) 48px;
  }
  .section-topline {
    padding-bottom: 29px;
  }
  .section-topline .eyebrow {
    font-size: 7px;
    letter-spacing: 1.1px;
  }
  .section-topline .muted {
    display: none;
  }
  .approach-layout,
  .questions-layout {
    display: block;
  }
  h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .approach-intro > p {
    font-size: 12px;
    line-height: 1.85;
    max-width: 320px;
    margin-top: 23px;
  }
  .connection-map {
    max-width: none;
    height: 210px;
    margin-top: 28px;
  }
  .map-caption,
  .map-start,
  .map-end {
    font-size: 6px;
  }
  .approach-steps {
    margin-top: 35px;
  }
  .approach-step summary {
    padding: 25px 0;
    gap: 18px;
  }
  .approach-step h3 {
    font-size: 20px;
  }
  .approach-step summary > span {
    font-size: 9px;
  }
  .step-body {
    padding-left: 30px;
    padding-right: 8px;
  }
  .step-body > p {
    font-size: 12px;
    line-height: 1.9;
  }
  .tag-row > span {
    font-size: 8px;
    padding: 7px;
  }
  .approach-signoff {
    margin-top: 26px;
    gap: 10px;
  }
  .approach-signoff p {
    font-size: 10px;
  }
  .difference-heading {
    display: block;
    margin-bottom: 30px;
  }
  .difference-heading > p {
    font-size: 12px;
    margin-top: 24px;
    max-width: 275px;
  }
  .difference-heading > p br {
    display: none;
  }
  .difference-cards {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .difference-card {
    padding: 0 25px 30px;
  }
  .card-art {
    height: 180px;
    margin-bottom: 24px;
  }
  .card-art > svg {
    max-width: 280px;
  }
  .card-art > span {
    font-size: 6px;
    letter-spacing: 1.3px;
  }
  .card-number {
    font-size: 8px;
  }
  .difference-card h3 {
    font-size: 23px;
    min-height: 0;
    margin-top: 15px;
  }
  .difference-card p {
    font-size: 12px;
    max-width: none;
    line-height: 1.85;
  }
  .questions-layout > div > p {
    font-size: 11px;
    margin-top: 24px;
  }
  .questions .dark-link {
    font-size: 11px;
  }
  .faq-list {
    margin-top: 31px;
  }
  .faq-list summary {
    font-size: 12px;
    padding: 23px 0;
    gap: 20px;
  }
  .faq-list details p {
    font-size: 12px;
    line-height: 1.9;
    padding-right: 12px;
  }
  .contact-section {
    padding: 43px var(--gutter) 53px;
    min-height: 500px;
  }
  .contact-content > .eyebrow {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .contact-content h2 {
    font-size: 74px;
    letter-spacing: -4px;
    margin: 28px 0 22px;
  }
  .contact-content > p:not(.eyebrow) {
    font-size: 12px;
    max-width: 270px;
  }
  .contact-content > .button {
    min-height: 48px;
    font-size: 13px;
    margin-top: 27px;
  }
  .contact-email {
    margin-left: 0;
  }
  .contact-orbits {
    width: 320px;
    height: 320px;
    right: -46%;
    top: 115px;
    opacity: .5;
  }
  .contact-orbits > span {
    font-size: 85px;
  }
  .contact-corner {
    font-size: 6px;
    letter-spacing: 1px;
    bottom: 22px;
  }
  .site-footer {
    padding: 32px var(--gutter) 23px;
  }
  .footer-top {
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 28px;
  }
  .footer-email {
    width: 100%;
    border-bottom: 0;
    font-size: 10px;
    margin-top: 4px;
  }
  .footer-top > p {
    font-size: 9px;
    line-height: 1.9;
    margin-left: auto;
  }
  .back-top {
    font-size: 9px;
    gap: 10px;
    width: 100%;
    justify-content: flex-end;
    margin-top: -3px;
  }
  .back-top span {
    font-size: 17px;
  }
  .footer-bottom {
    font-size: 7px;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 21px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom button {
    font-size: 7px;
  }
  dialog {
    padding: 35px 24px;
    max-height: calc(100dvh - 24px);
    max-width: calc(100vw - 24px);
  }
  .contact-dialog h2 {
    font-size: 51px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-intro {
    font-size: 11px;
  }
  form input:not([type=checkbox]),
  form select,
  form textarea {
    font-size: 16px;
    padding: 11px;
  }
  form input::placeholder,
  form textarea::placeholder {
    font-size: 12px;
  }
  .prospect-heading h2 {
    font-size: 28px;
  }
  .prospect-company {
    font-size: 10px;
  }
  .prospect-company > span:last-child {
    font-size: 9px;
  }
  .prospect-story-step > p {
    font-size: 12px;
  }
  .privacy-dialog h2 {
    font-size: 30px;
  }
  .dialog-close {
    right: 12px;
    top: 10px;
  }
}
@media (max-width:360px) {
  :root {
    --gutter: 18px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-copy > .eyebrow {
    font-size: 6px;
  }
  .hero-secondary {
    display: flex;
  }
  .universe {
    margin-left: -18px;
    width: calc(100% + 36px);
    height: 390px;
  }
  .floating-prospect {
    right: 7%;
    min-width: 205px;
  }
  .stage-tab strong {
    font-size: 9px;
  }
  .journey-intro > p {
    font-size: 20px;
  }
  .journey-note {
    font-size: 6px;
  }
  .sector-strip p {
    font-size: 8px;
  }
  .header-cta {
    display: none;
  }
  .site-header {
    gap: 14px;
  }
  .brand-logo {
    width: 118px;
  }
  .contact-content h2 {
    font-size: 65px;
  }
  .footer-top {
    gap: 16px;
  }
  .footer-top > p {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: .01ms!important;
    animation-iteration-count: 1!important;
    transition-duration: .01ms!important;
  }
  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
  .scroll-progress,
  .motion-ready .motion-item,
  .motion-ready .hero-copy > .eyebrow,
  .motion-ready .hero h1,
  .motion-ready .hero-description,
  .motion-ready .hero-copy > .button,
  .motion-ready .hero-secondary,
  .motion-ready .universe,
  .stage-description {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
  .scroll-progress {
    display: none;
  }
  .contact-orbits {
    transform: rotate(-25deg);
  }
  .map-route {
    stroke-dashoffset: 0;
  }
}
