@font-face {
  font-family: Space;
  src: url('./fonts/space-grotesk.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: Plex;
  src: url('./fonts/ibm-plex-mono.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
:root {
  --void: #080d11;
  --paper: #f0f4ed;
  --ion: #bbffdf;
  --muted: #a0afb5;
  --line: #ffffff20;
  --panel: #0e171c;
  --mono: Plex, monospace;
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--void);
  color: var(--paper);
  font-family: Space, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
select {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
select:focus-visible {
  outline: 2px solid var(--ion);
  outline-offset: 7px;
}
::selection {
  background: var(--ion);
  color: var(--void);
}
p {
  line-height: 1.65;
}
h1,
h2,
h3,
p {
  margin: 0;
}
em {
  font-style: normal;
  color: var(--ion);
}
[hidden] {
  display: none !important;
}
.mono,
.eyebrow,
.section-meta,
.core-coordinate,
.orbit-controls,
.mode-description,
.footer-bottom,
.footer-links > div > span,
.footer-note,
.network-readout > span,
.network-bottom,
.status-chip {
  font-family: var(--mono);
}
.header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 4.5%;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: 187px;
  height: 41px;
  object-fit: contain;
}
.header nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  color: #c3cdce;
}
.header nav a:hover,
.footer-links a:hover {
  color: var(--ion);
}
.header-contact {
  display: flex;
  gap: 27px;
  align-items: center;
  font-size: 13px;
}
.header-contact > span {
  display: grid;
  place-items: center;
  border: 1px solid #647473;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: var(--ion);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
}
.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  background: var(--ion);
  color: var(--void);
  padding: 15px;
  z-index: 100;
}
.skip:focus {
  top: 15px;
}
.hero {
  position: relative;
  min-height: 790px;
  height: calc(100svh - 100px);
  max-height: 1050px;
  padding: 78px 4.5% 135px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff04 1px, transparent 1px),
    linear-gradient(90deg, #ffffff04 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: linear-gradient(90deg, transparent, #000);
}
.hero:after {
  content: '';
  position: absolute;
  width: 40%;
  height: 70%;
  right: 10%;
  top: 12%;
  border-radius: 50%;
  background: #1b56431c;
  filter: blur(100px);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 58%;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.6;
}
.eyebrow i,
.signal-dot {
  height: 6px;
  width: 6px;
  display: inline-block;
  background: var(--ion);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 13px #bbffdf66;
}
.hero h1 {
  font-size: clamp(70px, 7.5vw, 126px);
  line-height: 0.97;
  letter-spacing: -0.065em;
  font-weight: 500;
  margin: 31px 0 27px;
}
.hero h1 em {
  font-weight: 400;
}
.hero-copy > p {
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.2px;
  color: #b6c3c6;
}
.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}
.button {
  background: var(--ion);
  color: var(--void);
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
  font-size: 13px;
  font-weight: 600;
  padding: 18px 22px;
  min-height: 54px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #d9ffed;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 13px;
}
.text-link:hover {
  color: var(--ion);
}
.hero-footnote {
  font: 9px/1.9 var(--mono);
  letter-spacing: 1px;
  margin-top: 36px;
  color: #9aaeb2;
  position: relative;
  padding-left: 23px;
}
.hero-footnote > span:not(.tiny-cross) {
  color: #71858c;
}
.tiny-cross {
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 18px;
  color: var(--ion);
}
.core-stage {
  position: absolute;
  z-index: 2;
  right: -5%;
  width: 68%;
  height: 94%;
  top: 0;
  touch-action: pan-y;
}
.core-stage canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 1s;
}
.core-stage.ready canvas {
  opacity: 1;
}
.core-stage.ready .core-fallback {
  opacity: 0;
}
.core-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 1.2s;
  pointer-events: none;
}
.core-coordinate {
  position: absolute;
  z-index: 4;
  font-size: 9px;
  letter-spacing: 1px;
  color: #a1b8bc;
  pointer-events: none;
}
.coord-top {
  top: 36px;
  right: 14%;
  text-align: right;
}
.coord-top b {
  display: block;
  color: var(--paper);
  font-weight: 400;
  font-size: 24px;
  margin-top: 8px;
  letter-spacing: -1px;
}
.coord-top b span {
  font-size: 10px;
  letter-spacing: 1px;
  color: #8d9d9f;
}
.coord-side {
  right: 10%;
  top: 39%;
  writing-mode: vertical-rl;
}
.core-tag {
  position: absolute;
  bottom: 18%;
  right: 21%;
  display: flex;
  gap: 12px;
  align-items: center;
  font: 9px/1.7 var(--mono);
  letter-spacing: 1px;
  color: #c5d6d5;
}
.core-tag small {
  display: block;
  color: #93a7ab;
  font-size: 9px;
  letter-spacing: 0;
}
.target-icon {
  border: 1px solid #83a49e;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: relative;
}
.target-icon:after {
  content: '+';
  position: absolute;
  left: 7px;
  top: 3px;
  color: var(--ion);
}
.orbit-controls {
  position: absolute;
  left: 4.5%;
  right: 4.5%;
  bottom: 27px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 18px 22px;
  border: 1px solid #ffffff26;
  background: #0c1319d9;
  backdrop-filter: blur(14px);
}
.control-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9px;
}
.control-label small {
  font-size: 8px;
  color: #a5b6bd;
  margin-left: 15px;
}
.mode-buttons {
  display: flex;
  gap: 8px;
}
.mode-buttons button {
  border: 1px solid transparent;
  background: transparent;
  padding: 12px 16px;
  font: 11px var(--mono);
  color: #a6b5b8;
  min-height: 42px;
}
.mode-buttons button span {
  color: #688782;
  margin-right: 9px;
  font-size: 9px;
}
.mode-buttons button[aria-pressed='true'] {
  background: #baffdf0c;
  color: var(--ion);
  border-color: #baffdf44;
}
.motion-toggle {
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
}
.icon-motion {
  border: 1px solid #ffffff2b;
  width: 42px;
  height: 42px;
  font-size: 14px;
}
.mode-description {
  padding: 0 4.5% 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 8px;
  letter-spacing: 0.4px;
  color: #8da3a9;
}
.section-pad {
  padding: 88px 7.5%;
}
.section-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #acbcbc;
  font-size: 9px;
  letter-spacing: 1.5px;
  line-height: 1.7;
}
.platform-intro {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12%;
  margin: 70px 0 55px;
  align-items: end;
}
h2 {
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.052em;
  font-weight: 500;
}
.platform-intro h2 span {
  color: #73888d;
}
.platform-intro p {
  font-size: 16px;
  color: #b5c3c6;
  max-width: 380px;
  margin-bottom: 27px;
}
.system-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  padding: 32px 0;
  margin-bottom: 70px;
}
.system-strip > div {
  padding: 0 20px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.system-strip > div:first-child {
  padding-left: 0;
  border: 0;
}
.system-strip b {
  font-size: 49px;
  letter-spacing: -3px;
  line-height: 1;
  font-weight: 400;
}
.system-strip span {
  font-size: 10px;
  font-family: var(--mono);
  color: #aab7b9;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar {
  position: relative;
  padding-bottom: 65px;
  border-bottom: 1px solid var(--line);
  transition: border 0.2s;
}
.pillar:hover {
  border-color: var(--ion);
}
.pillar .mono {
  color: #9caead;
  font-size: 9px;
  letter-spacing: 1px;
}
.pillar h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin: 24px 0 16px;
}
.pillar p {
  font-size: 13px;
  color: #a0afb5;
  max-width: 310px;
}
.pillar-arrow {
  position: absolute;
  bottom: 18px;
  right: 0;
  font-size: 22px;
  color: var(--ion);
}
.pillar-symbol {
  height: 145px;
  position: relative;
  width: 130px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
}
.pillar-symbol i {
  position: absolute;
  width: 93px;
  height: 93px;
  border: 1px solid #91c9b5;
}
.symbol-media i {
  transform: rotate(45deg);
}
.symbol-media i:nth-child(2) {
  width: 64px;
  height: 64px;
  border-color: #bbffdf88;
}
.symbol-media i:nth-child(3) {
  width: 32px;
  height: 32px;
  background: #bbffdf20;
}
.symbol-commerce i {
  border-radius: 50%;
  width: 85px;
  height: 85px;
  left: 0;
}
.symbol-commerce i:nth-child(2) {
  left: 27px;
}
.symbol-commerce i:nth-child(3) {
  left: 54px;
  border-color: #7ea4a4;
}
.symbol-intelligence i {
  width: 108px;
  height: 47px;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.symbol-intelligence i:nth-child(2) {
  transform: rotate(45deg);
}
.symbol-intelligence i:nth-child(3) {
  transform: rotate(90deg);
  width: 85px;
  height: 85px;
  border-color: #badbca44;
}
.intelligence {
  background: linear-gradient(120deg, #101d22, #0b1318);
  border-block: 1px solid var(--line);
}
.status-chip {
  font-size: 8px;
  color: var(--ion);
}
.intelligence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
  margin-top: 70px;
}
.intelligence-copy > .eyebrow {
  font-size: 8px;
  letter-spacing: 1px;
  color: #a4b7ba;
}
.intelligence h2 {
  font-size: clamp(48px, 5.3vw, 85px);
  margin: 24px 0 32px;
}
.intelligence-copy > p {
  font-size: 14px;
  color: #c5d1d2;
  max-width: 390px;
  margin-bottom: 15px;
}
.intelligence-copy > p.muted {
  font-size: 12px;
  color: #94a7ae;
  margin-bottom: 30px;
}
.button-outline {
  background: none;
  color: var(--paper);
  border: 1px solid #809991;
  font-size: 12px;
}
.button-outline:hover {
  color: var(--void);
}
.signal-console {
  border: 1px solid #36514e;
  background: #081014;
  position: relative;
  box-shadow: 0 0 80px #72ffc90a;
  font-family: var(--mono);
}
.signal-console:before,
.signal-console:after {
  content: '+';
  position: absolute;
  color: var(--ion);
  font-size: 17px;
  top: -11px;
  left: -6px;
}
.signal-console:after {
  left: auto;
  right: -6px;
  top: auto;
  bottom: -10px;
}
.console-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid #ffffff17;
  font-size: 9px;
}
.console-top b {
  font-weight: 400;
  letter-spacing: 1px;
  flex: 1;
}
.console-top > span:last-child {
  color: #efb88a;
  font-size: 8px;
  border: 1px solid #b08d6244;
  padding: 4px 7px;
}
.signal-input {
  padding: 28px 24px 12px;
}
.signal-input label {
  font-size: 8px;
  color: #7f9e9e;
  display: block;
  margin-bottom: 11px;
  letter-spacing: 1.2px;
}
.signal-input select {
  width: 100%;
  background: #112024;
  color: #d8e8e3;
  border: 1px solid #354a4b;
  padding: 14px 12px;
  font-size: 11px;
  min-height: 46px;
  border-radius: 0;
}
.flow-track {
  margin: 20px 27px;
  position: relative;
}
.flow-track:before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 45px;
  left: 14px;
  border-left: 1px solid #42635a;
}
.flow-track > div {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 7px 18px;
  margin-bottom: 27px;
  position: relative;
}
.flow-track > div > span {
  grid-row: span 2;
  background: #172723;
  display: grid;
  place-items: center;
  border: 1px solid #4a6b5a;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  font-size: 9px;
  color: var(--ion);
}
.flow-track b {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 3px;
  color: var(--ion);
}
.flow-track small {
  font-size: 10px;
  line-height: 1.7;
  color: #a2b5ba;
}
.console-output {
  padding: 22px;
  margin: 0 22px 23px;
  background: #bbffdf08;
  border: 1px solid #bbffdf25;
}
.console-output > span {
  font-size: 8px;
  letter-spacing: 1px;
  color: #bdffdf;
}
.console-output p {
  font-family: Space, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 13px 0 20px;
}
.console-output > div {
  font-size: 7px;
  letter-spacing: 0.4px;
  color: #b1b6a9;
  display: flex;
  gap: 7px;
  align-items: center;
}
.review-dot {
  width: 5px;
  height: 5px;
  display: block;
  background: #efb88a;
  border-radius: 50%;
}
.console-bottom {
  font-size: 7px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 20px;
  border-top: 1px solid #ffffff17;
  color: #839c9f;
}
.network {
  overflow: hidden;
  padding-bottom: 65px;
}
.network-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-top: 65px;
}
.network-heading p {
  font-size: 14px;
  color: #adbfc0;
}
.constellation {
  height: 570px;
  position: relative;
  margin-top: 40px;
}
.constellation-rings {
  position: absolute;
  inset: 20px 17%;
  display: grid;
  place-items: center;
  transform: rotate(-15deg);
}
.constellation-rings i {
  border: 1px solid #46655c66;
  border-radius: 50%;
  position: absolute;
  width: 100%;
  height: 78%;
  box-shadow: 0 0 100px #9cffd604;
}
.constellation-rings i:nth-child(2) {
  width: 73%;
  height: 60%;
  transform: rotate(36deg);
}
.constellation-rings i:nth-child(3) {
  width: 40%;
  height: 36%;
  border-style: dashed;
  transform: rotate(65deg);
}
.network-center {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  gap: 16px;
}
.network-center span {
  font: 9px var(--mono);
  letter-spacing: 3px;
  color: #a4c1b5;
}
.network-node {
  position: absolute;
  background: #101c21;
  color: #c2d4ce;
  border: 1px solid #344b48;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 15px 18px;
  font-size: 12px;
  transition:
    background 0.2s,
    border 0.2s,
    box-shadow 0.2s;
  min-width: 143px;
}
.network-node:hover,
.network-node[aria-pressed='true'] {
  border-color: #bbffdf88;
  background: #172c2a;
  box-shadow: 0 0 30px #bbffdf0c;
  color: var(--ion);
}
.network-node i {
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}
.network-node small {
  font: 8px var(--mono);
  opacity: 0.65;
}
.node-0 {
  top: 13%;
  left: 15%;
}
.node-1 {
  top: 2%;
  left: 50%;
}
.node-2 {
  top: 25%;
  right: 6%;
}
.node-3 {
  top: 56%;
  right: 3%;
}
.node-4 {
  bottom: 11%;
  right: 22%;
}
.node-5 {
  bottom: 7%;
  left: 28%;
}
.node-6 {
  top: 63%;
  left: 1%;
}
.node-7 {
  top: 36%;
  left: 0;
}
.network-readout {
  position: absolute;
  bottom: 37%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 270px;
}
.network-readout > span {
  font-size: 8px;
  color: var(--ion);
  letter-spacing: 1px;
}
.network-readout p {
  font-size: 11px;
  color: #95abae;
  line-height: 1.6;
  margin-top: 8px;
}
.network-bottom {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 9px;
  color: #a8baba;
}
.network-bottom .signal-dot {
  margin-right: 10px;
}
.network-bottom a {
  font-family: Space, sans-serif;
  color: var(--paper);
}
.manifesto {
  position: relative;
  overflow: hidden;
  background: #bdffdf;
  color: #0a201a;
  min-height: 700px;
  padding-block: 92px;
}
.manifesto h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(52px, 6.9vw, 110px);
  max-width: 1000px;
  margin: 50px 0 48px;
  letter-spacing: -0.058em;
}
.manifesto h2 em {
  color: #487969;
}
.manifesto-bottom {
  display: flex;
  align-items: end;
  gap: 120px;
  position: relative;
  z-index: 1;
}
.manifesto p {
  font-size: 13px;
  color: #355e50;
}
.round-link {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid #4b7e6a;
  border-radius: 50%;
  font-size: 29px;
}
.round-link:hover {
  background: #a6e8cb;
}
.manifesto-mark {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -175px;
  bottom: -80px;
  filter: brightness(0);
  opacity: 0.08;
  transform: rotate(-22deg);
}
.closing {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  padding-block: 115px;
  border-bottom: 1px solid var(--line);
}
.closing .eyebrow {
  font-size: 9px;
  color: #a0b7b4;
  margin-bottom: 28px;
}
.closing h2 {
  font-size: clamp(36px, 4vw, 60px);
}
footer {
  padding: 60px 7.5% 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-top p {
  font-size: 13px;
  color: #9db1b4;
}
.back-top {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 35px;
}
.back-top span {
  border: 1px solid #45625d;
  padding: 10px 14px;
  font-size: 17px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.4fr;
  gap: 30px;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 13px;
  font-size: 11px;
  color: #becccb;
}
.footer-links > div > span {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #728c90;
  margin-bottom: 8px;
}
.footer-note {
  font-size: 9px;
  line-height: 1.9;
  color: #7e9698;
  text-align: right;
}
.footer-note b {
  font-weight: 400;
  color: #c6d9d0;
}
.footer-note small {
  font-size: 8px;
  display: block;
  margin-top: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: #7f999c;
  font-size: 8px;
  line-height: 1.8;
}
.footer-bottom > div {
  display: flex;
  gap: 20px;
}
.mobile-menu {
  position: absolute;
  top: 79px;
  left: 0;
  right: 0;
  z-index: 50;
  background: #101c21;
  border-bottom: 1px solid #45625d;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.detail-hero {
  min-height: 660px;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}
.detail-hero > .eyebrow {
  margin: 60px 0 30px;
}
.detail h1 {
  font-size: clamp(50px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 500;
  max-width: 850px;
  position: relative;
  z-index: 2;
}
.detail-lead {
  font-size: 21px;
  max-width: 660px;
  color: #bed1cd;
  position: relative;
  z-index: 2;
  margin-top: 35px;
}
.detail-orbit {
  position: absolute;
  right: -200px;
  bottom: -220px;
  width: 800px;
  opacity: 0.23;
}
.detail-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12%;
  background: #101b20;
  border-block: 1px solid var(--line);
}
.detail-body > .mono {
  font-size: 9px;
  letter-spacing: 1px;
  line-height: 2;
}
.detail-body h2 {
  font-size: 44px;
  margin-bottom: 30px;
}
.detail-body p {
  font-size: 17px;
  color: #b2c5c5;
  max-width: 760px;
}
.detail-body .button {
  margin-top: 35px;
}
@media (min-width: 1700px) {
  .hero {
    padding-top: 110px;
  }
  .hero-copy > p {
    font-size: 20px;
  }
  .hero-actions {
    margin-top: 40px;
  }
  .hero-footnote {
    margin-top: 42px;
  }
}
@media (max-width: 1100px) {
  .header nav {
    gap: 22px;
  }
  .hero {
    min-height: 780px;
  }
  .hero h1 {
    font-size: 88px;
  }
  .hero-actions {
    gap: 22px;
  }
  .hero-copy {
    max-width: 60%;
  }
  .core-stage {
    right: -15%;
    width: 80%;
  }
  .control-label small {
    display: none;
  }
  .section-pad {
    padding-inline: 5%;
  }
  .intelligence-layout {
    gap: 6%;
  }
  .pillar-grid {
    gap: 25px;
  }
  .pillar h3 {
    font-size: 22px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .network-readout {
    width: 220px;
  }
  .network-readout p {
    font-size: 10px;
  }
}
@media (max-width: 760px) {
  .header {
    height: 80px;
    padding-inline: 6%;
  }
  .brand img {
    width: 164px;
    height: 34px;
  }
  .header nav,
  .header-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--paper);
  }
  .hero {
    height: auto;
    max-height: none;
    min-height: 1000px;
    padding: 44px 6% 520px;
  }
  .hero-copy {
    max-width: none;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero h1 {
    font-size: clamp(65px, 13vw, 100px);
    line-height: 0.98;
    margin: 28px 0 24px;
  }
  .hero h1 br:nth-child(2) {
    display: none;
  }
  .hero h1 em:before {
    content: ' ';
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .hero-actions {
    gap: 23px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 16px 18px;
    gap: 20px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 12px;
  }
  .hero-footnote {
    display: none;
  }
  .core-stage {
    width: 118%;
    height: 570px;
    top: 390px;
    right: -9%;
  }
  .coord-top {
    top: 48px;
    right: 15%;
    font-size: 7px;
  }
  .coord-top b {
    font-size: 18px;
  }
  .coord-top b span {
    font-size: 8px;
  }
  .coord-side {
    display: none;
  }
  .core-tag {
    bottom: 17%;
    right: 14%;
    font-size: 7px;
  }
  .core-tag small {
    font-size: 8px;
  }
  .orbit-controls {
    left: 6%;
    right: 6%;
    bottom: 22px;
    padding: 12px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .control-label {
    width: calc(100% - 48px);
    flex: auto;
    font-size: 8px;
    padding: 3px 3px 8px;
  }
  .control-label small {
    display: inline;
    font-size: 7px;
    margin-left: auto;
  }
  .mode-buttons {
    order: 3;
    justify-content: space-between;
    width: 100%;
    gap: 3px;
  }
  .mode-buttons button {
    padding: 10px;
    font-size: 10px;
    flex: 1;
  }
  .mode-buttons button span {
    font-size: 8px;
    margin-right: 5px;
  }
  .icon-motion {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  .mode-description {
    padding: 0 6% 20px;
    flex-direction: column;
    gap: 10px;
    font-size: 7px;
  }
  .section-pad {
    padding: 65px 6%;
  }
  .section-meta {
    font-size: 8px;
    gap: 22px;
    letter-spacing: 0.8px;
  }
  .section-meta > span:last-child {
    text-align: right;
    max-width: 45%;
  }
  .platform-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 43px 0 35px;
  }
  h2 {
    font-size: 43px;
  }
  .platform-intro p {
    max-width: 100%;
    font-size: 15px;
  }
  .system-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    padding-block: 28px;
    margin-bottom: 35px;
  }
  .system-strip > div:nth-child(3) {
    border: 0;
    padding-left: 0;
  }
  .system-strip b {
    font-size: 42px;
  }
  .system-strip span {
    font-size: 9px;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pillar {
    padding: 22px 0 32px 97px;
    min-height: 203px;
  }
  .pillar-symbol {
    position: absolute;
    top: 25px;
    left: 0;
    transform: scale(0.56);
    transform-origin: top left;
    margin: 0;
  }
  .pillar h3 {
    font-size: 22px;
    margin: 17px 0 12px;
  }
  .pillar p {
    font-size: 12px;
    max-width: 300px;
  }
  .pillar-arrow {
    bottom: 25px;
    right: 0;
    font-size: 18px;
  }
  .pillar .mono {
    font-size: 8px;
  }
  .intelligence-layout {
    grid-template-columns: 1fr;
    gap: 43px;
    margin-top: 45px;
  }
  .intelligence h2 {
    font-size: 64px;
  }
  .intelligence-copy > p {
    max-width: none;
  }
  .signal-console {
    max-width: 520px;
  }
  .console-top {
    padding: 18px;
  }
  .signal-input {
    padding: 23px 18px 10px;
  }
  .console-bottom {
    font-size: 6px;
    padding-inline: 15px;
  }
  .network-heading {
    flex-direction: column;
    align-items: start;
    gap: 25px;
    margin-top: 40px;
  }
  .network-heading p {
    font-size: 13px;
  }
  .constellation {
    height: 610px;
    margin-top: 20px;
  }
  .constellation-rings {
    inset: 65px -5%;
    transform: rotate(-40deg);
  }
  .network-node {
    min-width: 120px;
    padding: 12px;
    font-size: 10px;
    gap: 8px;
    min-height: 44px;
  }
  .network-node small {
    font-size: 7px;
  }
  .node-0 {
    top: 7%;
    left: 3%;
  }
  .node-1 {
    top: 12%;
    left: auto;
    right: 0;
  }
  .node-2 {
    top: 29%;
    right: 0;
  }
  .node-3 {
    top: 65%;
    right: 0;
  }
  .node-4 {
    bottom: 12%;
    right: 1%;
  }
  .node-5 {
    bottom: 5%;
    left: 6%;
  }
  .node-6 {
    top: 70%;
    left: 0;
  }
  .node-7 {
    top: 27%;
    left: 0;
  }
  .network-center {
    top: 44%;
  }
  .network-center img {
    width: 60px;
    height: 60px;
  }
  .network-center span {
    font-size: 8px;
  }
  .network-readout {
    bottom: 39%;
    width: 210px;
  }
  .network-bottom {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    font-size: 8px;
  }
  .manifesto {
    min-height: 600px;
  }
  .manifesto h2 {
    font-size: clamp(45px, 9vw, 66px);
    margin-top: 40px;
  }
  .manifesto-bottom {
    gap: 35px;
    justify-content: space-between;
  }
  .manifesto p {
    font-size: 11px;
  }
  .manifesto-mark {
    width: 400px;
    bottom: -110px;
    right: -180px;
  }
  .closing {
    align-items: start;
    flex-direction: column;
    gap: 35px;
  }
  .closing h2 {
    font-size: 42px;
  }
  footer {
    padding: 42px 6% 25px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 25px;
  }
  .footer-top p {
    font-size: 11px;
  }
  .back-top {
    display: none;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
    padding: 42px 0;
  }
  .footer-note {
    text-align: left;
    font-size: 8px;
    align-self: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 13px;
    font-size: 8px;
  }
  .footer-bottom > div {
    gap: 22px;
    flex-wrap: wrap;
  }
  .detail-hero {
    min-height: 650px;
    padding-top: 40px;
  }
  .detail-hero > .eyebrow {
    margin-top: 65px;
  }
  .detail h1 {
    font-size: 61px;
  }
  .detail-lead {
    font-size: 17px;
  }
  .detail-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .detail-body h2 {
    font-size: 40px;
  }
  .detail-body p {
    font-size: 15px;
  }
  .detail-orbit {
    right: -370px;
    bottom: -180px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
body.motion-paused {
  scroll-behavior: auto;
}
/* Preserve intrinsic sizing on narrow viewports. */
.intelligence-layout > * {
  min-width: 0;
}
.signal-input select {
  min-width: 0;
}
.signal-console {
  width: 100%;
  min-width: 0;
}
.core-stage.static-field[data-field-mode='expand'] .core-fallback {
  transform: scale(1.08);
}
.core-stage.static-field[data-field-mode='connect'] .core-fallback {
  transform: scale(0.94);
}
@media (max-width: 760px) {
  .intelligence h2 {
    font-size: clamp(44px, 13.5vw, 64px);
  }
}
@media(max-width:760px){.detail h1{font-size:clamp(42px,11vw,61px);overflow-wrap:break-word}}
