:root {
  --bg: #02050b;
  --bg-deep: #010308;
  --panel: rgba(7, 18, 38, 0.84);
  --panel-soft: rgba(9, 22, 45, 0.66);
  --line: rgba(117, 185, 244, 0.24);
  --line-strong: rgba(83, 218, 255, 0.42);
  --text: #f3f8ff;
  --muted: #8190a8;
  --dim: #4d5c73;
  --cyan: #4ce7ff;
  --cyan-rgb: 76, 231, 255;
  --blue: #3377ff;
  --blue-rgb: 51, 119, 255;
  --violet: #895dff;
  --violet-rgb: 137, 93, 255;
  --magenta: #e34dff;
  --green: #42f5bd;
  --header-h: 72px;
  --footer-h: 0px;
  --screen-pad: clamp(22px, 2.6vw, 52px);
  --ease: cubic-bezier(.16, .82, .2, 1);
  --accent: var(--cyan);
  --accent-rgb: var(--cyan-rgb);
  --font-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI", "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", "Noto Sans SC", sans-serif;
  --font-data: ui-monospace, "Cascadia Mono", "Cascadia Code", Consolas, "SFMono-Regular", "Microsoft YaHei UI", "PingFang SC", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg-deep);
}

body {
  position: relative;
  isolation: isolate;
  color: var(--text);
  font-family: var(--font-ui);
  font-kerning: normal;
  -webkit-font-smoothing: auto;
  background:
    radial-gradient(circle at 76% 38%, rgba(37, 118, 224, .2), transparent 32%),
    radial-gradient(circle at 18% 72%, rgba(78, 55, 190, .17), transparent 36%),
    linear-gradient(145deg, #071121 0%, #020713 52%, #050d1c 100%);
}

body::before,
body::after {
  position: fixed;
  inset: -18vmax;
  z-index: 0;
  content: "";
  pointer-events: none;
}

body::before {
  opacity: .72;
  background-image:
    radial-gradient(circle, rgba(113, 231, 255, .7) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(111, 109, 255, .5) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, .28) 0 .7px, transparent 1.2px);
  background-position: 0 0, 41px 57px, 19px 31px;
  background-size: 89px 89px, 137px 137px, 61px 61px;
}

body::after {
  opacity: .74;
  background:
    radial-gradient(ellipse at 18% 32%, rgba(42, 91, 190, .19), transparent 31%),
    radial-gradient(ellipse at 78% 62%, rgba(82, 53, 208, .17), transparent 34%),
    radial-gradient(ellipse at 51% 48%, rgba(20, 146, 198, .1), transparent 42%),
    repeating-linear-gradient(90deg, transparent 0 159px, rgba(79, 172, 226, .025) 160px 161px);
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

button:focus-visible,
input:focus-visible {
  outline: 1px solid var(--cyan);
  outline-offset: 3px;
}

.app {
  position: fixed;
  left: 50%;
  top: 50%;
  width: var(--design-width, 1920px);
  height: var(--design-height, 1080px);
  container-type: size;
  isolation: isolate;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(var(--viewport-scale, 1));
  transform-origin: center;
  background:
    radial-gradient(circle at 76% 42%, rgba(var(--accent-rgb), .16), transparent 34%),
    radial-gradient(circle at 21% 92%, rgba(63, 92, 210, .18), transparent 37%),
    linear-gradient(145deg, #071121 0%, #030916 47%, #050d1c 100%);
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  transition: background 1.7s ease, opacity .2s ease;
  min-width: 0;
  min-height: 0;
  z-index: 1;
  box-shadow: 0 0 180px 72px rgba(4, 15, 35, .78);
}
.app.is-viewport-ready { opacity: 1; }

.app[data-scene="blue"] {
  --accent: #4b8dff;
  --accent-rgb: 75, 141, 255;
}

.app[data-scene="violet"] {
  --accent: var(--violet);
  --accent-rgb: var(--violet-rgb);
}

.app[data-scene="magenta"] {
  --accent: var(--magenta);
  --accent-rgb: 227, 77, 255;
}

.ambient-canvas,
.space-grid,
.space-vignette,
.noise-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ambient-canvas {
  z-index: -5;
}

.space-grid {
  z-index: -4;
  opacity: .43;
  background-image:
    linear-gradient(rgba(76, 158, 231, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 158, 231, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 58% 47%, #000 5%, transparent 78%);
  transform: perspective(650px) rotateX(58deg) scale(1.45) translateY(24%);
  transform-origin: 50% 80%;
}

.space-vignette {
  z-index: 80;
  border: 1px solid rgba(78, 137, 205, .1);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, .54), inset 0 0 220px rgba(0, 0, 0, .26);
}

.space-vignette::before,
.space-vignette::after {
  position: absolute;
  top: 0;
  width: 84px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent));
  box-shadow: 0 0 14px var(--accent);
}

.space-vignette::before { left: 22%; }
.space-vignette::after { right: 22%; transform: scaleX(-1); }

.noise-layer {
  z-index: 79;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.cursor-orb {
  position: fixed;
  z-index: 100;
  left: var(--pointer-x);
  top: var(--pointer-y);
  width: 34px;
  height: 34px;
  border: 1px solid rgba(var(--accent-rgb), .36);
  border-radius: 50%;
  pointer-events: none;
  opacity: .55;
  transform: translate(-50%, -50%);
  transition: width .24s, height .24s, border-color .24s, opacity .24s;
}

.cursor-orb i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent);
  transform: translate(-50%, -50%);
}

.cursor-orb.is-hovering {
  width: 54px;
  height: 54px;
  border-color: rgba(var(--accent-rgb), .7);
  opacity: .8;
}

.command-header {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  top: 0;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(185px, 1fr) auto minmax(185px, 1fr);
  align-items: stretch;
  padding: 0 clamp(22px, 2.5vw, 48px);
  border-bottom: 1px solid rgba(93, 150, 214, .15);
  background: linear-gradient(180deg, rgba(3, 7, 15, .96), rgba(3, 7, 15, .72));
  backdrop-filter: blur(18px);
}

.command-header::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), .8), transparent);
  animation: headerScan 7s ease-in-out infinite;
}

.brand {
  position: relative;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 8px 0 4px;
  background: none;
  color: var(--text);
  cursor: pointer;
}

.brand::before {
  position: absolute;
  z-index: 0;
  left: -2px;
  top: 50%;
  width: 58px;
  height: 58px;
  content: "";
  border: 1px solid rgba(var(--cyan-rgb), .16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 227, 255, .2), rgba(36, 107, 218, .1) 45%, transparent 72%);
  box-shadow: 0 0 28px rgba(var(--cyan-rgb), .12), inset 0 0 20px rgba(115, 215, 255, .08);
  transform: translateY(-50%);
  pointer-events: none;
}

.brand img {
  position: relative;
  z-index: 1;
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(2.15) contrast(1.08) saturate(1.22) drop-shadow(0 0 5px rgba(209, 247, 255, .7)) drop-shadow(0 0 15px rgba(var(--cyan-rgb), .42));
}

.brand > span {
  position: relative;
  display: grid;
  gap: 2px;
  padding-left: 12px;
}

.brand > span::before {
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 1px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--accent), transparent);
}

.brand b,
.brand small {
  font: 8px/1.1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .18em;
}

.brand small { color: #52647d; font-size: 6px; }

.deck-nav {
  display: flex;
  align-items: stretch;
  gap: clamp(4px, .7vw, 14px);
}

.deck-nav button {
  position: relative;
  min-width: clamp(66px, 5.4vw, 96px);
  padding: 14px 8px 9px;
  overflow: hidden;
  background: transparent;
  color: #74839a;
  text-align: left;
  cursor: pointer;
  transition: color .3s, background .3s;
}

.deck-nav button::before,
.deck-nav button::after {
  position: absolute;
  content: "";
  transition: transform .45s var(--ease), opacity .3s;
}

.deck-nav button::before {
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px var(--accent);
  transform: scaleX(0);
}

.deck-nav button::after {
  left: 50%;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  transform: translateX(-50%) rotate(45deg) scale(0);
}

.deck-nav small,
.deck-nav b {
  display: block;
  font: 6px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .15em;
}

.deck-nav small { margin-bottom: 3px; color: #40516b; }
.deck-nav span { display: block; font-size: 11px; font-weight: 600; letter-spacing: .08em; }
.deck-nav b { margin-top: 3px; color: #40516b; font-weight: 400; }

.deck-nav button:hover,
.deck-nav button.is-active {
  color: #f7fbff;
  background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb), .055));
}

.deck-nav button.is-active::before { transform: scaleX(1); }
.deck-nav button.is-active::after { transform: translateX(-50%) rotate(45deg) scale(1); }
.deck-nav button.is-active small { color: var(--accent); }

.header-telemetry {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 18px);
}

.header-quicklinks { display: flex; align-items: center; gap: 8px; }
.header-quicklinks a {
  padding: 10px 14px;
  border: 1px solid rgba(var(--accent-rgb), .3);
  color: #c4d5e5;
  font: 650 12px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .05em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s, border-color .25s, background .25s, box-shadow .25s;
}
.header-quicklinks a:hover { border-color: rgba(var(--accent-rgb), .62); background: rgba(var(--accent-rgb), .08); color: #f1f8ff; box-shadow: 0 0 18px rgba(var(--accent-rgb), .08); }

.header-telemetry > span {
  position: relative;
  display: grid;
  grid-template-columns: 8px auto;
  gap: 1px 7px;
  padding-left: 13px;
}

.header-telemetry > span::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 26px;
  content: "";
  background: rgba(93, 154, 217, .22);
  transform: translateY(-50%);
}

.header-telemetry i {
  grid-row: 1 / 3;
  align-self: center;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: statusPulse 2s ease-in-out infinite;
}

.header-telemetry b,
.header-telemetry small,
.header-telemetry em {
  font: 650 11px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .09em;
}

.header-telemetry small { color: var(--green); font-size: 10px; }
.header-telemetry em { color: #a8bbce; font-size: 11px; font-style: normal; }

.login-trigger {
  position: relative;
  min-width: 164px;
  height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 12px 4px 5px;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), .62);
  border-radius: 24px 5px 24px 24px;
  background: linear-gradient(110deg, rgba(var(--accent-rgb), .24), rgba(4, 11, 24, .9) 62%);
  color: #dfeeff;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(var(--accent-rgb), .1), inset 0 0 22px rgba(var(--accent-rgb), .075);
  transition: border-color .3s, background .3s, box-shadow .3s, transform .3s var(--ease);
}

.login-trigger::after {
  position: absolute;
  right: -12px;
  top: -18px;
  width: 52px;
  height: 52px;
  content: "";
  border: 1px solid rgba(var(--accent-rgb), .16);
  border-radius: 50%;
}

.login-trigger::before {
  position: absolute;
  left: 45px;
  right: 9px;
  bottom: 4px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: .7;
}

.login-trigger:hover,
.login-trigger[aria-expanded="true"] {
  border-color: rgba(var(--accent-rgb), .72);
  background: linear-gradient(110deg, rgba(var(--accent-rgb), .2), rgba(5, 17, 34, .94) 63%);
  box-shadow: 0 0 25px rgba(var(--accent-rgb), .12), inset 0 0 18px rgba(var(--accent-rgb), .08);
  transform: translateY(-1px);
}

.login-trigger-orb {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), .48);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 34%, rgba(205, 248, 255, .24), rgba(var(--cyan-rgb), .2) 35%, rgba(3, 10, 23, .94) 74%);
  box-shadow: 0 0 18px rgba(var(--cyan-rgb), .28), inset 0 0 13px rgba(177, 239, 255, .12);
}

.login-trigger-orb img {
  width: 96%;
  height: 96%;
  object-fit: contain;
  filter: brightness(2.18) contrast(1.08) saturate(1.22) drop-shadow(0 0 4px rgba(220, 250, 255, .68)) drop-shadow(0 0 9px rgba(var(--cyan-rgb), .48));
}

.login-trigger-copy { position: relative; z-index: 1; display: grid; gap: 2px; text-align: left; }
.login-trigger-copy b { font-size: 14px; line-height: 1.1; font-weight: 750; letter-spacing: .06em; }
.login-trigger-copy small { color: #a9bfd2; font: 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .08em; }
.login-trigger.is-authenticated .login-trigger-orb { border-color: var(--green); box-shadow: 0 0 17px rgba(66, 245, 189, .26); }
.login-trigger.is-authenticated .login-trigger-copy small { color: var(--green); }

.view-stack {
  position: fixed;
  z-index: 5;
  left: 0;
  right: 0;
  top: var(--header-h);
  bottom: var(--footer-h);
  overflow: hidden;
  perspective: 1500px;
  perspective-origin: 50% 48%;
}

.view-stack::after {
  position: absolute;
  z-index: 20;
  content: "";
  pointer-events: none;
  opacity: 0;
}

.view-stack::after {
  left: -65%;
  top: -30%;
  width: 48%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), .03) 32%, rgba(var(--accent-rgb), .32) 46%, rgba(255, 255, 255, .8) 50%, rgba(var(--accent-rgb), .18) 53%, transparent 70%);
  filter: drop-shadow(0 0 24px rgba(var(--accent-rgb), .58));
  transform: skewX(-15deg);
}

.view {
  position: absolute;
  inset: 0;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(.992) translateY(5px) translateZ(0);
  transform-origin: 50% 56%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  contain: layout paint style;
  transition:
    opacity 1.7s cubic-bezier(.2, .72, .22, 1),
    transform 1.7s cubic-bezier(.2, .72, .22, 1),
    visibility 0s 1.72s;
}

.home-view { overflow: hidden; }

.view:not(.is-active) * { animation-play-state: paused !important; }

.view.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0) translateZ(0);
  transition-delay: 0s;
}

.view.is-active.is-leaving {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  animation: deckDeparture 1.7s cubic-bezier(.3, .06, .3, 1) both;
  transition: none;
}

.view.is-active.is-entering {
  z-index: 3;
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  transform: translate3d(var(--entry-shift-x, 9vw), 30px, -620px) rotateX(12deg) rotateY(var(--entry-tilt-y, -13deg)) scale(.84);
}

.view.is-active.is-entering.is-entering-active {
  animation: deckArrival 1.7s cubic-bezier(.12, .74, .18, 1) both;
  transition: none;
}

.app.is-transition-forward {
  --entry-tilt-y: -13deg;
  --entry-mid-tilt-y: -4deg;
  --entry-shift-x: 9vw;
  --entry-mid-shift-x: 2.2vw;
  --exit-tilt-y: 7deg;
  --exit-mid-shift-x: -1vw;
  --exit-shift-x: -4vw;
  --entry-overshoot-y: .45deg;
}

.app.is-transition-backward {
  --entry-tilt-y: 13deg;
  --entry-mid-tilt-y: 4deg;
  --entry-shift-x: -9vw;
  --entry-mid-shift-x: -2.2vw;
  --exit-tilt-y: -7deg;
  --exit-mid-shift-x: 1vw;
  --exit-shift-x: 4vw;
  --entry-overshoot-y: -.45deg;
}

.app.is-crossfading .view-stack::after { animation: nexusLightSweep 1.7s cubic-bezier(.2, .64, .24, 1) both; }

.login-scrim {
  position: fixed;
  z-index: 108;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  visibility: hidden;
  border: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(var(--accent-rgb), .13), transparent 32%),
    rgba(1, 4, 11, .76);
  opacity: 0;
  cursor: default;
  backdrop-filter: blur(5px) saturate(.78);
  transition: opacity .35s ease, visibility 0s .42s;
}

.login-dock {
  position: fixed;
  z-index: 110;
  left: 50%;
  top: 50%;
  width: min(448px, calc(100vw - 36px));
  max-height: calc(100vh - 56px);
  padding: 30px 36px 32px;
  overflow: hidden;
  visibility: hidden;
  border: 1px solid rgba(var(--accent-rgb), .38);
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), .09), transparent 31%),
    linear-gradient(180deg, rgba(7, 18, 38, .98), rgba(2, 8, 19, .98));
  color: var(--text);
  opacity: 0;
  box-shadow: 0 36px 100px rgba(0, 0, 0, .65), 0 0 70px rgba(var(--accent-rgb), .12), inset 0 0 55px rgba(var(--accent-rgb), .035);
  clip-path: polygon(0 18px, 18px 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 48px 100%, 0 calc(100% - 48px));
  transform: translate(-50%, -47%) perspective(1200px) rotateX(4deg) rotateY(-7deg) scale(.965);
  transform-origin: center;
  transition: opacity .36s ease, transform .58s var(--ease), visibility 0s .62s;
}

.login-dock::before,
.login-dock::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.login-dock::before {
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), #fff, transparent);
  box-shadow: 0 0 15px var(--accent);
  animation: loginScan 3.8s ease-in-out infinite;
}

.login-dock::after {
  right: -120px;
  bottom: -145px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(var(--accent-rgb), .13);
  border-radius: 50%;
  box-shadow: inset 0 0 55px rgba(var(--accent-rgb), .04);
}

.app.is-login-open .login-scrim,
.app.is-login-open .login-dock {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.app.is-login-open .login-dock { transform: translate(-50%, -50%) perspective(1200px) rotateX(0) rotateY(0) scale(1); }
.app.is-login-open .cursor-orb { opacity: 0; }

.login-dock-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--accent-rgb), .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), .07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 38%, #000, transparent 71%);
}

.login-dock-close {
  position: absolute;
  z-index: 5;
  right: 20px;
  top: 17px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(var(--accent-rgb), .22);
  border-radius: 50%;
  background: rgba(3, 10, 23, .66);
  color: #8093aa;
  font: 16px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  cursor: pointer;
  transition: color .25s, border-color .25s, transform .25s;
}

.login-dock-close:hover { color: #fff; border-color: var(--accent); transform: rotate(90deg); }

.login-dock-header { position: relative; z-index: 2; text-align: center; }
.login-dock-header h2 { margin: 14px 0 0; font-size: 30px; font-weight: 620; line-height: 1.2; letter-spacing: -.035em; }

.login-emblem {
  position: relative;
  width: 102px;
  height: 102px;
  display: grid;
  place-items: center;
  margin: 4px auto 0;
  border: 1px solid rgba(var(--accent-rgb), .38);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), .18), rgba(3, 11, 25, .92) 66%);
  box-shadow: 0 0 42px rgba(var(--accent-rgb), .14), inset 0 0 25px rgba(var(--accent-rgb), .08);
}

.login-emblem i { position: absolute; border: 1px solid rgba(var(--accent-rgb), .24); border-radius: 50%; }
.login-emblem i:nth-child(1) { inset: -9px; border-style: dashed; animation: loginOrbit 12s linear infinite; }
.login-emblem i:nth-child(2) { inset: 12px; border-color: rgba(var(--accent-rgb), .42); animation: loginOrbit 8s linear infinite reverse; }
.login-emblem i:nth-child(3) { left: 50%; top: -4px; width: 7px; height: 7px; border: 0; background: var(--accent); box-shadow: 0 0 14px var(--accent); transform: translateX(-50%); }
.login-emblem img { width: 86%; height: 86%; object-fit: contain; filter: brightness(1.7) saturate(1.08) drop-shadow(0 0 12px rgba(var(--accent-rgb), .42)); }

.login-form { position: relative; z-index: 2; display: grid; gap: 14px; margin-top: 24px; }
.login-field { display: grid; gap: 7px; }
.login-field > span { display: flex; align-items: center; color: #b6c7d8; font: 600 12px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.login-field input {
  width: 100%;
  height: 47px;
  padding: 0 13px;
  border: 1px solid rgba(var(--accent-rgb), .2);
  border-radius: 0;
  background: rgba(2, 8, 19, .72);
  color: #edf7ff;
  font-size: 15px;
  letter-spacing: .06em;
  caret-color: var(--accent);
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.login-field input::placeholder { color: #52647a; }
.login-field input:focus { border-color: rgba(var(--accent-rgb), .7); background: rgba(5, 16, 33, .9); box-shadow: inset 3px 0 0 var(--accent), 0 0 20px rgba(var(--accent-rgb), .07); outline: 0; }

.login-channel { display: flex; align-items: center; color: #91a5bb; font: 500 11px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.login-channel span { display: flex; align-items: center; gap: 7px; }
.login-channel i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

.login-agreement {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #8296ad;
  font-size: 13px;
  line-height: 1.55;
  cursor: pointer;
}
.login-agreement input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--accent);
}
.login-agreement input:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 2px;
}
.login-agreement a {
  color: #bcefff;
  font-weight: 650;
  text-decoration: none;
}
.login-agreement a:hover,
.login-agreement a:focus-visible { text-decoration: underline; }

.login-submit {
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border: 1px solid rgba(var(--accent-rgb), .52);
  background: linear-gradient(90deg, rgba(var(--accent-rgb), .25), rgba(63, 85, 255, .18), rgba(var(--accent-rgb), .08));
  color: white;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  box-shadow: inset 0 0 24px rgba(var(--accent-rgb), .06), 0 0 22px rgba(var(--accent-rgb), .07);
  transition: border-color .25s, background .25s, box-shadow .25s, transform .25s;
}
.login-submit b { color: var(--accent); font: 600 11px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.login-submit:hover { border-color: var(--accent); background: linear-gradient(90deg, rgba(var(--accent-rgb), .36), rgba(79, 91, 255, .23), rgba(var(--accent-rgb), .13)); box-shadow: 0 0 32px rgba(var(--accent-rgb), .13); transform: translateY(-1px); }
.login-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.login-submit:disabled:hover { border-color: rgba(var(--accent-rgb), .52); background: linear-gradient(90deg, rgba(var(--accent-rgb), .25), rgba(63, 85, 255, .18), rgba(var(--accent-rgb), .08)); }

.login-register-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #8296ad;
  font-size: 13px;
}
.login-register-row a {
  position: relative;
  color: #bcefff;
  font-weight: 650;
  letter-spacing: .06em;
  text-decoration: none;
}
.login-register-row a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(.34);
  transform-origin: left;
  transition: transform .25s ease;
}
.login-register-row a:hover::after { transform: scaleX(1); }

.login-form-status { margin: 0; color: #91a5bb; font: 500 11px/1.35 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .08em; text-align: center; }
.login-form-status.is-error { color: #ff8eac; }
.login-form-status.is-success { color: var(--green); }

.app.is-crossfading .view-stack {
  isolation: isolate;
  animation: nexusViewportPulse 1.7s ease both;
}

.app.is-crossfading .command-header,
.app.is-crossfading .command-footer {
  transition: border-color .45s ease, background .45s ease;
}

.screen-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0 var(--screen-pad);
}

.view.is-active.is-entering.is-entering-active .screen-shell {
  animation: sceneMaterialize 1.7s cubic-bezier(.16, .78, .18, 1) both;
}

.view.is-active.is-entering.is-entering-active :is(
  .screen-heading,
  .spatial-index,
  .spatial-center-copy,
  .about-manifesto
) {
  animation: interfaceLockOn 1.35s .18s cubic-bezier(.16, .82, .2, 1) both;
}

.view.is-active.is-entering.is-entering-active :is(
  .intelligence-stage,
  .plaza-console,
  .spatial-route,
  .workspace-memory-flow,
  .solution-model-cloud,
  .about-spatial-core
) {
  animation: interfaceCoreRise 1.48s .12s cubic-bezier(.13, .8, .18, 1) both;
}

.view.is-active.is-entering.is-entering-active :is(
  .telemetry-strip,
  .spatial-protocols,
  .workspace-signal-rail,
  .spatial-solution-selector,
  .about-contact,
  .about-principles,
  .about-stats
) {
  animation: interfaceDataResolve 1.18s .46s cubic-bezier(.16, .82, .2, 1) both;
}

.screen-shell::before,
.screen-shell::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.screen-shell::before {
  left: var(--screen-pad);
  right: var(--screen-pad);
  top: 13px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), .4), transparent 19%, transparent 81%, rgba(var(--accent-rgb), .25));
}

.screen-shell::after {
  left: 50%;
  top: 0;
  width: 56px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
  transform: translateX(-50%);
}

.screen-coordinate {
  position: absolute;
  z-index: 2;
  top: 25px;
  color: #32435c;
  font: 6px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .16em;
}

.coordinate-left { left: var(--screen-pad); }
.coordinate-right { right: var(--screen-pad); }

.home-shell {
  display: grid;
  grid-template-columns: minmax(340px, .43fr) minmax(610px, .57fr);
  grid-template-rows: minmax(0, 1fr) clamp(72px, 9vh, 92px);
  gap: 0 clamp(8px, 1.2vw, 24px);
  padding-top: 14px;
  padding-bottom: 12px;
  min-height: 100%;
  scroll-snap-align: start;
}

.home-scroll-cue {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: clamp(91px, 11vh, 116px);
  display: grid;
  justify-items: center;
  gap: 1px;
  padding: 5px 10px;
  background: transparent;
  color: #6f839b;
  font: 7px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .13em;
  cursor: pointer;
  transform: translateX(-50%);
}
.home-scroll-cue::before { width: 45px; height: 1px; content: ""; background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: .5; }
.home-scroll-cue i { color: var(--cyan); font-size: 17px; font-style: normal; line-height: .75; animation: scrollCue 1.8s ease-in-out infinite; }

.hero-command {
  position: relative;
  z-index: 5;
  align-self: center;
  width: min(100%, 660px);
  padding-left: clamp(28px, 7vw, 136px);
  transform: translateY(-1vh);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(14px, 2.1vh, 23px);
  color: #6b7a91;
  font: 7px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .17em;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(var(--cyan-rgb), .35);
}

.eyebrow b { color: #3b4b62; font-weight: 400; }
.eyebrow::after { width: 44px; height: 1px; content: ""; background: linear-gradient(90deg, rgba(var(--cyan-rgb), .65), transparent); }

.hero-command h1 {
  margin: 0;
  color: #f5f8fe;
  font-size: clamp(48px, min(4.15vw, 7.3vh), 78px);
  font-weight: 650;
  line-height: .96;
  letter-spacing: -.062em;
  text-shadow: 0 12px 48px rgba(0, 0, 0, .58);
}

.hero-statement {
  display: grid;
  justify-items: start;
  gap: clamp(9px, 1.15vh, 14px);
}

.hero-statement > span,
.hero-statement > em {
  display: block;
}

.hero-statement > em {
  padding-right: .11em;
}

.hero-command h1 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, #4c8dff 4%, #48f0ef 84%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(var(--cyan-rgb), .16));
}

.hero-command > p {
  max-width: 548px;
  margin: clamp(20px, 2.8vh, 30px) 0 0;
  color: #a0aec0;
  font-size: clamp(11px, .78vw, 14px);
  line-height: 1.86;
  letter-spacing: .02em;
}

.hero-route-map {
  width: min(100%, 535px);
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr;
  align-items: center;
  gap: 5px;
  margin-top: clamp(13px, 1.9vh, 20px);
  padding: 10px 12px;
  border: 1px solid rgba(75, 159, 225, .2);
  background: linear-gradient(90deg, rgba(7, 21, 42, .75), rgba(4, 11, 25, .42));
  box-shadow: inset 3px 0 0 rgba(var(--cyan-rgb), .68), inset 0 0 28px rgba(var(--cyan-rgb), .025);
}

.hero-route-map span { display: grid; gap: 4px; min-width: 0; }
.hero-route-map small { color: #61758d; font: 7px/1 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; white-space: nowrap; }
.hero-route-map b { color: #dce9f5; font-size: 11px; font-weight: 600; letter-spacing: .08em; }
.hero-route-map > i { color: var(--cyan); font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; font-style: normal; opacity: .62; text-align: center; }

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: clamp(14px, 2.1vh, 22px);
}

.primary-action,
.secondary-action {
  height: clamp(40px, 4.8vh, 50px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 21px;
  color: #f7fcff;
  cursor: pointer;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s, background .3s;
}

.hero-login-trigger {
  position: relative;
  width: min(100%, 535px);
  min-height: 51px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 11px;
  padding: 7px 14px 7px 8px;
  overflow: hidden;
  border: 1px solid rgba(var(--cyan-rgb), .46);
  background: linear-gradient(100deg, rgba(25, 112, 198, .22), rgba(7, 22, 43, .78) 56%, rgba(77, 67, 255, .12));
  color: #eaf7ff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22), inset 0 0 24px rgba(var(--cyan-rgb), .04);
  transition: transform .28s var(--ease), border-color .28s, box-shadow .28s, background .28s;
}

.hero-login-trigger::after {
  position: absolute;
  right: -34px;
  top: -48px;
  width: 118px;
  height: 118px;
  content: "";
  border: 1px solid rgba(var(--cyan-rgb), .15);
  border-radius: 50%;
}

.hero-login-trigger:hover,
.hero-login-trigger[aria-expanded="true"] {
  transform: translateY(-2px);
  border-color: rgba(var(--cyan-rgb), .9);
  background: linear-gradient(100deg, rgba(28, 132, 229, .32), rgba(7, 25, 49, .9) 58%, rgba(83, 74, 255, .2));
  box-shadow: 0 14px 34px rgba(var(--cyan-rgb), .13), inset 0 0 28px rgba(var(--cyan-rgb), .08);
}

.hero-login-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--cyan-rgb), .58);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cyan-rgb), .2), rgba(2, 8, 20, .94) 70%);
  box-shadow: 0 0 18px rgba(var(--cyan-rgb), .18);
}

.hero-login-mark img { width: 96%; height: 96%; object-fit: contain; filter: brightness(1.75) saturate(1.08) drop-shadow(0 0 8px rgba(var(--cyan-rgb), .3)); }
.hero-login-copy { position: relative; z-index: 1; display: grid; gap: 4px; }
.hero-login-copy small { color: #7f9ab2; font: 7px/1 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .14em; }
.hero-login-copy b { font-size: 12px; font-weight: 650; letter-spacing: .08em; }
.hero-login-trigger > i { position: relative; z-index: 1; color: var(--cyan); font: 8px ui-monospace, SFMono-Regular, Consolas, monospace; font-style: normal; letter-spacing: .12em; }
.hero-login-trigger.is-authenticated { border-color: rgba(66, 245, 189, .55); }
.hero-login-trigger.is-authenticated .hero-login-copy small,
.hero-login-trigger.is-authenticated > i { color: var(--green); }

.primary-action {
  min-width: 170px;
  border: 1px solid rgba(var(--cyan-rgb), .72);
  background: linear-gradient(100deg, rgba(54, 93, 255, .9), rgba(42, 219, 231, .86));
  box-shadow: 0 12px 34px rgba(30, 122, 255, .22), inset 0 0 24px rgba(255, 255, 255, .08);
}

.primary-action i { font-style: normal; }

.secondary-action {
  min-width: 164px;
  border: 1px solid rgba(103, 148, 207, .28);
  background: rgba(5, 10, 22, .68);
  color: #b6c3d4;
}

.secondary-action b {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(var(--cyan-rgb), .55);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 7px;
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 15px 42px rgba(var(--cyan-rgb), .2);
}

.hero-protocols {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: clamp(11px, 1.5vh, 16px);
  color: #697d94;
  font: 6px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .14em;
}

.hero-protocols span { display: flex; align-items: center; gap: 7px; }
.hero-protocols i { width: 3px; height: 3px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

.intelligence-stage {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 0;
  margin: 4px 0 -4px;
  perspective: 1180px;
  transform-style: preserve-3d;
  isolation: isolate;
  contain: layout paint style;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.intelligence-stage.is-dragging,
.intelligence-stage.is-dragging .model-node { cursor: grabbing; }

.stage-depth-shell {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

#globeCanvas,
.home-orbit-overlay {
  position: absolute;
  left: -8.5%;
  top: -8.5%;
  width: 117%;
  height: 117%;
  pointer-events: none;
}

#globeCanvas { z-index: 0; transform: translateZ(-24px) scale(1.012); }
.home-orbit-overlay { z-index: 20; transform: translateZ(46px); }

.stage-frame,
.model-satellites,
.spatial-nav {
  position: absolute;
  inset: 0;
}

.stage-frame { z-index: 1; pointer-events: none; transform: translateZ(-8px); }
.stage-frame .corner { position: absolute; width: 34px; height: 34px; opacity: .7; }
.stage-frame .corner::before,
.stage-frame .corner::after { position: absolute; content: ""; background: rgba(var(--cyan-rgb), .5); }
.stage-frame .corner::before { width: 100%; height: 1px; }
.stage-frame .corner::after { width: 1px; height: 100%; }
.corner-a { left: 4%; top: 6%; }
.corner-b { right: 4%; top: 6%; transform: scaleX(-1); }
.corner-c { left: 4%; bottom: 6%; transform: scaleY(-1); }
.corner-d { right: 4%; bottom: 6%; transform: scale(-1); }

.stage-frame .axis { position: absolute; opacity: .12; }
.stage-frame .axis-x { left: 6%; right: 6%; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.stage-frame .axis-y { top: 7%; bottom: 7%; left: 50%; width: 1px; background: linear-gradient(transparent, var(--cyan), transparent); }

.field-label {
  position: absolute;
  display: grid;
  gap: 4px;
  padding-left: 11px;
  color: #51627b;
  font: 6px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .16em;
}

.field-label::before { position: absolute; left: 0; top: 0; width: 1px; height: 100%; content: ""; background: rgba(var(--cyan-rgb), .45); }
.field-label b { color: #899ab1; font-size: 8px; font-weight: 500; }
.label-a { left: 8%; top: 8%; }
.label-b { right: 8%; bottom: 8%; text-align: right; }

.model-satellites { z-index: 24; pointer-events: none; perspective: 900px; transform: translateZ(64px); transform-style: preserve-3d; }
.model-node {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: var(--node-z, 5);
  width: var(--node-size, 40px);
  height: var(--node-size, 40px);
  display: grid;
  place-items: center;
  padding: 0;
  overflow: visible;
  border: 1px solid color-mix(in srgb, var(--model-color), transparent 48%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .55) 0 3%, rgba(208, 242, 255, .16) 6%, transparent 17%),
    radial-gradient(circle at 38% 32%, color-mix(in srgb, var(--model-color), transparent 86%) 0 13%, transparent 44%),
    radial-gradient(circle at 47% 43%, #0b1b35 0 30%, #061126 56%, #020814 79%, #01040c 100%);
  box-shadow:
    0 9px 18px rgba(0, 0, 0, .56),
    0 0 15px color-mix(in srgb, var(--model-color), transparent 73%),
    0 0 4px color-mix(in srgb, var(--model-color), transparent 52%),
    inset -12px -14px 18px rgba(0, 0, 0, .76),
    inset 7px 7px 13px rgba(218, 246, 255, .13),
    inset 0 0 9px color-mix(in srgb, var(--model-color), transparent 82%);
  opacity: var(--node-opacity, 1);
  pointer-events: auto;
  cursor: pointer;
  transform: translate3d(var(--node-x, 0), var(--node-y, 0), 0) scale3d(var(--node-scale, 1), var(--node-scale, 1), 1);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: opacity .19s ease, border-color .25s, box-shadow .25s, filter .25s;
  will-change: transform, opacity;
}

.model-node::before {
  position: absolute;
  inset: 1px;
  content: "";
  border: 1px solid rgba(213, 244, 255, .12);
  border-radius: 50%;
  background: linear-gradient(142deg, rgba(221, 248, 255, .09), transparent 38%, rgba(0, 0, 0, .3) 72%);
  box-shadow: inset 0 0 8px rgba(170, 228, 255, .1);
  opacity: calc(.6 + var(--node-depth, .5) * .24);
  transform: translateZ(2px);
}

.model-node::after {
  position: absolute;
  inset: 3px;
  content: "";
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 21%, rgba(255, 255, 255, .34) 0 3%, rgba(191, 233, 255, .09) 8%, transparent 21%),
    radial-gradient(circle at 73% 78%, rgba(0, 0, 0, .58) 0 7%, transparent 55%),
    linear-gradient(138deg, rgba(120, 226, 255, .045), transparent 43%, rgba(0, 0, 0, .28));
  opacity: .82;
  transform: translateZ(6px);
}

.model-node img { position: relative; z-index: 1; width: 70%; height: 70%; object-fit: contain; border-radius: 50%; clip-path: circle(48%); transform: translate3d(-1px, -1px, 10px); filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, .55)) drop-shadow(0 0 4px color-mix(in srgb, var(--model-color), transparent 62%)); opacity: .96; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.model-node.is-orbit-back { pointer-events: none; filter: saturate(.82) brightness(.74) contrast(.98); }
.model-node.is-model-swapping { opacity: 0; filter: saturate(.2) brightness(.18); }
.model-node-label {
  position: absolute;
  left: 50%;
  top: calc(100% + 9px);
  padding: 4px 7px;
  border: 1px solid color-mix(in srgb, var(--model-color), transparent 75%);
  background: rgba(2, 7, 16, .9);
  color: #d7e5f4;
  font: 6px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .08em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity .2s, transform .25s;
}

.model-node:hover,
.model-node.is-focused { filter: none; box-shadow: 0 0 28px color-mix(in srgb, var(--model-color), transparent 52%); }
.model-node:hover .model-node-label,
.model-node.is-focused .model-node-label { opacity: 1; transform: translate(-50%, 0); }

.spatial-nav { display: none; }
.portal-node {
  position: absolute;
  left: var(--portal-left);
  top: var(--portal-top);
  min-width: 142px;
  height: 48px;
  display: grid;
  grid-template-columns: 33px 1fr 16px;
  align-items: center;
  gap: 9px;
  padding: 0 12px 0 8px;
  border: 1px solid rgba(77, 167, 230, .28);
  border-radius: 28px 5px 28px 28px;
  background: linear-gradient(100deg, rgba(5, 17, 34, .92), rgba(4, 10, 24, .7));
  color: #d8e6f4;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .3), inset 0 0 15px rgba(var(--cyan-rgb), .03);
  pointer-events: auto;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: border-color .25s, background .25s, transform .3s var(--ease), box-shadow .3s;
}

.portal-node::before {
  position: absolute;
  z-index: -1;
  right: 97%;
  top: 50%;
  width: clamp(18px, 3.5vw, 70px);
  height: 1px;
  content: "";
  opacity: .45;
  background: linear-gradient(90deg, transparent, rgba(var(--cyan-rgb), .6));
  transform: rotate(var(--connector-angle)) translateY(-50%);
  transform-origin: right center;
}

.portal-index {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(var(--cyan-rgb), .55);
  border-radius: 50%;
  color: var(--cyan);
  font: 7px ui-monospace, SFMono-Regular, Consolas, monospace;
}

.portal-copy { display: grid; gap: 2px; text-align: left; }
.portal-copy b { font-size: 10px; font-weight: 600; letter-spacing: .04em; }
.portal-copy small { color: #52627a; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; }
.portal-arrow { color: #62728b; font-size: 10px; font-style: normal; }
.portal-node:hover { border-color: rgba(var(--cyan-rgb), .75); background: rgba(8, 24, 45, .94); box-shadow: 0 0 28px rgba(var(--cyan-rgb), .15); transform: translate(-50%, -50%) scale(1.05); }

.intelligence-core {
  position: absolute;
  z-index: 14;
  left: 50%;
  top: 50%;
  width: clamp(92px, 7.8vw, 138px);
  height: clamp(92px, 7.8vw, 138px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  perspective: 420px;
  transform: translate(-50%, -50%) translateZ(18px);
  transform-style: preserve-3d;
}

.core-ring,
.core-pulse,
.core-logo {
  position: absolute;
  border-radius: 50%;
}

.core-ring { border: 1px solid rgba(var(--cyan-rgb), .14); }
.ring-a { inset: -4%; opacity: .48; box-shadow: 0 0 18px rgba(var(--cyan-rgb), .08); animation: coreSpin 15s linear infinite; }
.ring-b { inset: -18%; opacity: .13; border-style: dashed; border-color: rgba(99, 119, 255, .25); animation: coreSpin 24s linear infinite reverse; }
.ring-c {
  display: block;
  inset: -31%;
  opacity: .42;
  border-color: rgba(105, 216, 255, .3);
  box-shadow: 0 0 18px rgba(var(--cyan-rgb), .12), inset 0 0 20px rgba(98, 83, 255, .08);
  transform: rotateX(72deg) rotateZ(-14deg) translateZ(-16px);
  animation: coreOrbitLink 7s ease-in-out infinite;
}
.core-pulse {
  inset: 4%;
  opacity: .7;
  background: radial-gradient(circle, rgba(130, 252, 255, .23), rgba(31, 94, 185, .08) 43%, transparent 72%);
  box-shadow: 0 0 54px rgba(var(--cyan-rgb), .22);
  transform: translateZ(-10px);
  animation: coreEnergyPulse 3.8s ease-in-out infinite;
}
.core-logo {
  inset: 16%;
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
  border: 1px solid rgba(162, 241, 255, .52);
  background:
    linear-gradient(145deg, rgba(124, 224, 255, .18), transparent 31%),
    radial-gradient(circle at 42% 32%, rgba(73, 174, 255, .31), rgba(7, 27, 67, .92) 47%, rgba(1, 5, 16, .98) 76%);
  box-shadow:
    inset 9px 10px 18px rgba(122, 231, 255, .12),
    inset -12px -15px 23px rgba(0, 0, 0, .64),
    0 15px 25px rgba(0, 0, 0, .45),
    0 0 34px rgba(var(--cyan-rgb), .2);
  transform: translateZ(24px) rotateX(8deg) rotateY(-10deg);
  transform-style: preserve-3d;
  animation: coreChamberFloat 6s ease-in-out infinite;
}
.core-logo::before,
.core-logo::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.core-logo::before {
  z-index: 0;
  inset: -14%;
  border: 1px solid rgba(105, 226, 255, .27);
  background: conic-gradient(from 25deg, transparent 0 15%, rgba(76, 231, 255, .36) 18%, transparent 25% 53%, rgba(126, 91, 255, .3) 59%, transparent 67%);
  box-shadow: 0 0 24px rgba(var(--cyan-rgb), .14);
  transform: translateZ(-18px);
  animation: coreEnergyRotor 9s linear infinite;
}
.core-logo::after {
  z-index: 4;
  inset: 5%;
  border: 1px solid rgba(205, 249, 255, .18);
  background:
    radial-gradient(circle at 69% 67%, rgba(1, 9, 27, .3) 0 11%, rgba(2, 13, 34, .14) 20%, transparent 35%),
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, .24), transparent 19%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 33% 69%, rgba(62, 224, 255, .1));
  box-shadow: inset 0 0 18px rgba(112, 228, 255, .08);
  transform: translateZ(10px);
}
.core-mark-object {
  position: absolute;
  z-index: 3;
  inset: -4%;
  display: grid;
  place-items: center;
  transform: translateZ(16px) rotateX(-4deg) rotateY(6deg);
  transform-style: preserve-3d;
  animation: coreMarkFloat 6s ease-in-out infinite;
}
.core-mark-object::before,
.core-mark-object::after {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.core-mark-object::before {
  z-index: -2;
  width: 62%;
  height: 62%;
  background: radial-gradient(circle, rgba(136, 250, 255, .38), rgba(32, 137, 255, .16) 35%, transparent 70%);
  box-shadow: 0 0 24px rgba(var(--cyan-rgb), .28), 0 0 42px rgba(92, 76, 255, .18);
  transform: translate3d(-50%, -50%, -16px);
}
.core-mark-object::after {
  z-index: 4;
  width: 13%;
  height: 13%;
  background: #c8ffff;
  box-shadow: 0 0 8px #d6ffff, 0 0 18px rgba(39, 234, 255, .96), 0 0 32px rgba(63, 104, 255, .72);
  transform: translate3d(-50%, -50%, 34px);
  animation: statusPulse 2.2s ease-in-out infinite;
}
.core-mark-volume {
  position: absolute;
  z-index: 0;
  inset: 0;
  transform-style: preserve-3d;
  pointer-events: none;
}
.core-mark-volume i {
  position: absolute;
  inset: 0;
  background: url("/nexus-site/assets/yxzh-brand-mark.svg") center / 100% 100% no-repeat;
  transform-origin: center;
}
.core-mark-volume i:nth-child(1) {
  opacity: .72;
  filter: brightness(.22) saturate(1.8) hue-rotate(4deg) drop-shadow(0 8px 8px rgba(0, 0, 0, .68));
  transform: translate3d(8px, 9px, -10px) scale(.97);
}
.core-mark-volume i:nth-child(2) {
  opacity: .7;
  filter: brightness(.38) saturate(1.7) drop-shadow(0 4px 5px rgba(0, 0, 0, .5));
  transform: translate3d(6px, 7px, -2px) scale(.98);
}
.core-mark-volume i:nth-child(3) {
  opacity: .54;
  filter: brightness(.52) saturate(1.3);
  transform: translate3d(4px, 5px, 6px) scale(.99);
}
.core-mark-volume i:nth-child(4) {
  opacity: .32;
  filter: brightness(.7) saturate(1.16) drop-shadow(0 0 6px rgba(var(--cyan-rgb), .12));
  transform: translate3d(2px, 3px, 14px);
}
.core-logo img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    brightness(1.46)
    saturate(1.02)
    drop-shadow(0 3px 0 rgba(4, 22, 72, .92))
    drop-shadow(0 7px 6px rgba(var(--cyan-rgb), .2));
  transform: translateZ(28px);
  transform-style: preserve-3d;
}

.node-inspector {
  position: absolute;
  z-index: 34;
  left: 8%;
  bottom: 8%;
  width: min(270px, 28%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-left: 1px solid rgba(var(--cyan-rgb), .6);
  background: linear-gradient(90deg, rgba(6, 18, 37, .84), transparent);
  opacity: .56;
  transform: translateZ(88px);
  transition: opacity .25s, transform .25s;
}
.node-inspector.is-visible { opacity: 1; transform: translateX(5px) translateZ(88px); }
.node-inspector > span,
.node-inspector small,
.node-inspector em { font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.node-inspector > span { color: var(--cyan); }
.node-inspector div { display: grid; gap: 3px; min-width: 0; }
.node-inspector small { color: #52647c; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.node-inspector b { font-size: 9px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.node-inspector em { color: #b5c9db; font-style: normal; }

.telemetry-strip {
  position: relative;
  z-index: 6;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  min-height: 0;
  border: 1px solid rgba(97, 145, 207, .18);
  background: linear-gradient(90deg, rgba(6, 13, 28, .88), rgba(7, 15, 31, .58), rgba(6, 12, 26, .88));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .24), inset 0 0 38px rgba(var(--cyan-rgb), .015);
}

.telemetry-strip::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), transparent 24%, transparent 74%, var(--violet));
  opacity: .65;
}

.telemetry-title,
.telemetry-strip article {
  display: flex;
  align-items: center;
  padding: 0 clamp(12px, 1.2vw, 23px);
  border-right: 1px solid rgba(91, 137, 196, .12);
}

.telemetry-title { flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; }
.telemetry-title span,
.telemetry-title small { font: 7px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .14em; }
.telemetry-title small { color: #45566e; font-size: 6px; }
.telemetry-strip article { gap: 14px; }
.telemetry-strip article > i { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(var(--cyan-rgb), .28); border-radius: 50%; color: var(--cyan); font-size: 11px; font-style: normal; box-shadow: inset 0 0 12px rgba(var(--cyan-rgb), .08); }
.telemetry-strip article span { display: grid; gap: 4px; }
.telemetry-strip article b { font-size: clamp(14px, 1.2vw, 21px); font-weight: 500; letter-spacing: -.04em; }
.telemetry-strip article small { color: #617087; font-size: 8px; }

.portal-shell {
  display: grid;
  grid-template-rows: clamp(86px, 11.5vh, 118px) minmax(0, 1fr);
  gap: clamp(10px, 1.4vh, 16px);
  padding-top: 20px;
  padding-bottom: 15px;
}

.screen-heading {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  grid-template-rows: auto 1fr;
  align-items: end;
  padding-top: 13px;
}

.screen-heading > div {
  grid-column: 1 / -1;
  align-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font: 6px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .17em;
}

.screen-heading > div i { width: 44px; height: 1px; background: linear-gradient(90deg, var(--accent), transparent); }
.screen-heading > div small { color: #4e5f78; }
.screen-heading h2 { margin: 0; font-size: clamp(24px, min(2.5vw, 4.4vh), 46px); font-weight: 580; letter-spacing: -.045em; }
.screen-heading h2 em { color: transparent; font-style: normal; background: linear-gradient(90deg, var(--accent), #b9a1ff); -webkit-background-clip: text; background-clip: text; }
.screen-heading > p { max-width: 460px; margin: 0 0 5px 30px; color: #718097; font-size: clamp(9px, .72vw, 12px); line-height: 1.7; text-align: right; }
.plaza-view .screen-heading > p { max-width: none; white-space: nowrap; }

.orchestration-view .screen-heading,
.workspace-view .screen-heading,
.solutions-view .screen-heading,
.about-view .screen-heading {
  padding-left: 17px;
  border-left: 1px solid rgba(var(--accent-rgb), .58);
  background: linear-gradient(90deg, rgba(var(--accent-rgb), .055), transparent 44%);
}

.orchestration-view .screen-heading::after,
.workspace-view .screen-heading::after,
.solutions-view .screen-heading::after,
.about-view .screen-heading::after {
  position: absolute;
  left: -1px;
  bottom: 4px;
  width: 1px;
  height: 46%;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.module-label {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(94, 147, 208, .14);
  color: #9aabc0;
  font: 6px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .14em;
}

.module-label i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.module-label b { margin-left: auto; color: #596b84; font-weight: 400; }

.plaza-console {
  position: relative;
  z-index: 2;
  min-height: 0;
  display: grid;
  grid-template-columns: clamp(188px, 13.8vw, 250px) minmax(420px, 1fr) clamp(285px, 22vw, 390px);
  grid-template-rows: minmax(0, 1fr) clamp(60px, 7.8vh, 76px);
  border: 1px solid rgba(89, 148, 208, .2);
  background: rgba(3, 8, 18, .54);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .3), inset 0 0 85px rgba(var(--accent-rgb), .018);
}

.plaza-console::before,
.plaza-console::after,
.orchestration-console::before,
.workspace-console::before,
.solution-console::before,
.about-console::before {
  position: absolute;
  z-index: 3;
  content: "";
  pointer-events: none;
}

.plaza-console::before,
.orchestration-console::before,
.workspace-console::before,
.solution-console::before,
.about-console::before {
  left: -1px;
  top: -1px;
  width: 70px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.plaza-console::after { right: -1px; bottom: -1px; width: 70px; height: 1px; background: var(--accent); box-shadow: 0 0 14px var(--accent); }

.model-locator,
.model-hud {
  position: relative;
  min-width: 0;
  background: linear-gradient(145deg, rgba(6, 15, 31, .88), rgba(3, 9, 20, .78));
}

.model-locator { border-right: 1px solid rgba(96, 145, 204, .14); }
.model-hud { display: flex; flex-direction: column; overflow: hidden; border-left: 1px solid rgba(96, 145, 204, .14); }

.locator-radar {
  position: relative;
  width: clamp(96px, 8.8vw, 146px);
  aspect-ratio: 1;
  margin: clamp(8px, 1.7vh, 18px) auto clamp(8px, 1.6vh, 16px);
  border: 1px solid rgba(var(--accent-rgb), .22);
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), .11), transparent 18%),
    repeating-radial-gradient(circle, transparent 0 16%, rgba(var(--accent-rgb), .08) 16.4% 17%, transparent 17.4% 32%);
  box-shadow: inset 0 0 24px rgba(var(--accent-rgb), .06), 0 0 24px rgba(var(--accent-rgb), .04);
}

.locator-radar::before,
.locator-radar::after { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; content: ""; background: rgba(var(--accent-rgb), .11); }
.locator-radar::after { transform: rotate(90deg); }
.locator-radar > i { position: absolute; z-index: 3; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: radarBlip 2.6s ease-in-out infinite; }
.locator-radar > i:nth-child(1) { left: 24%; top: 31%; }
.locator-radar > i:nth-child(2) { right: 19%; top: 40%; animation-delay: -.9s; }
.locator-radar > i:nth-child(3) { left: 57%; bottom: 18%; animation-delay: -1.7s; }
.locator-radar b { position: absolute; z-index: 2; inset: 4%; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0 76%, rgba(var(--accent-rgb), .06) 84%, rgba(var(--accent-rgb), .42) 99.5%, transparent 100%); animation: radarSweep 2.4s linear infinite; }
.locator-radar b::after { position: absolute; left: 50%; top: 4%; width: 1px; height: 46%; content: ""; background: linear-gradient(var(--accent), transparent); box-shadow: 0 0 8px var(--accent); transform-origin: 50% 100%; }
.locator-radar span { position: absolute; z-index: 4; left: 50%; top: 50%; width: 9px; height: 9px; border: 1px solid var(--accent); border-radius: 50%; box-shadow: 0 0 12px rgba(var(--accent-rgb), .35); transform: translate(-50%, -50%); animation: radarCore 2.1s ease-in-out infinite; }
.model-locator > small { display: block; margin: 0 14px 8px; color: #43536c; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .14em; }

.filter-stack { display: grid; gap: 3px; padding: 0 8px; }
.filter-stack button {
  position: relative;
  height: clamp(40px, 5.6vh, 54px);
  display: grid;
  grid-template-columns: 27px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: end;
  padding: 5px 9px;
  border: 1px solid transparent;
  background: transparent;
  color: #687a92;
  text-align: left;
  cursor: pointer;
  transition: color .25s, border-color .25s, background .25s;
}
.filter-stack button > span { grid-row: 1 / 3; align-self: center; color: #3c4d65; font: 7px ui-monospace, SFMono-Regular, Consolas, monospace; }
.filter-stack button b { align-self: end; font-size: 10px; font-weight: 550; }
.filter-stack button small { align-self: start; color: #3f5068; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.filter-stack button::before { position: absolute; left: -1px; top: 20%; bottom: 20%; width: 1px; content: ""; background: var(--accent); opacity: 0; box-shadow: 0 0 10px var(--accent); }
.filter-stack button:hover,
.filter-stack button.is-active { border-color: rgba(var(--accent-rgb), .18); background: linear-gradient(90deg, rgba(var(--accent-rgb), .1), transparent); color: #edf8ff; }
.filter-stack button.is-active::before { opacity: 1; }
.filter-stack button.is-active > span { color: var(--accent); }

.locator-status {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 12px;
  display: grid;
  gap: 7px;
  color: #52647d;
  font: 6px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .1em;
}
.locator-status span { display: flex; align-items: center; gap: 6px; }
.locator-status i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.locator-status b { color: #8698ad; font-weight: 400; }

.model-reactor {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  contain: layout paint style;
  perspective: 900px;
  background:
    radial-gradient(circle at 50% 51%, rgba(42, 207, 255, .1), transparent 23%),
    radial-gradient(ellipse at 50% 52%, rgba(66, 84, 202, .13), transparent 59%),
    linear-gradient(145deg, rgba(3, 12, 29, .42), rgba(2, 7, 18, .18));
}

.model-reactor::before,
.model-reactor::after { position: absolute; z-index: 0; content: ""; pointer-events: none; border-radius: 50%; will-change: transform, opacity; }
.model-reactor::before {
  inset: 7% 2% 6%;
  opacity: .9;
  background:
    radial-gradient(ellipse at 50% 51%, transparent 0 24%, rgba(39, 221, 255, .14) 31%, rgba(48, 112, 255, .1) 43%, transparent 67%),
    conic-gradient(from 218deg at 50% 52%, transparent 0 10%, rgba(34, 211, 255, .12) 15%, transparent 23% 45%, rgba(133, 73, 255, .13) 51%, transparent 60% 78%, rgba(37, 128, 255, .09) 84%, transparent 92%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 62%, transparent 83%);
  transform: rotate(-7deg) scale(1.08, .84);
  animation: reactorBreath 6.4s ease-in-out infinite;
}
.model-reactor::after {
  display: none;
}
.model-reactor > * { position: absolute; }

.reactor-nebula {
  inset: -15% -12%;
  z-index: 0;
  overflow: hidden;
  border-radius: 44%;
  opacity: .96;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 26% 51%, rgba(21, 199, 255, .15), rgba(30, 102, 255, .06) 29%, transparent 55%),
    radial-gradient(ellipse at 72% 45%, rgba(144, 69, 255, .17), rgba(70, 83, 255, .055) 31%, transparent 58%),
    radial-gradient(ellipse at 52% 66%, rgba(30, 224, 255, .1), transparent 48%);
  mask-image: radial-gradient(ellipse at 50% 51%, #000 0 64%, transparent 88%);
  transform: rotate(-6deg) scale(1.02, .88);
  will-change: transform, opacity;
  animation: reactorCloudDrift 11s ease-in-out infinite alternate;
}
.reactor-nebula::before,
.reactor-nebula::after {
  position: absolute;
  inset: 8%;
  content: "";
  pointer-events: none;
}
.reactor-nebula::before {
  display: none;
}
.reactor-nebula::after {
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0 31%, rgba(41, 224, 255, .13) 33%, transparent 37% 46%, rgba(117, 78, 255, .1) 49%, transparent 54%),
    conic-gradient(from 201deg at 50% 50%, transparent 0 13%, rgba(38, 206, 255, .09) 18%, transparent 25% 49%, rgba(171, 75, 255, .09) 55%, transparent 64%);
  opacity: .88;
  transform: rotate(8deg) scale(1.2, .72);
}
.reactor-nebula i {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: reactorRibbonPulse 7.2s ease-in-out infinite;
}
.reactor-nebula i:nth-child(1) { width: 92%; height: 34%; background: radial-gradient(ellipse, rgba(26, 215, 255, .12), rgba(53, 111, 255, .05) 46%, transparent 73%); transform: translate(-50%, -50%) rotate(-13deg); }
.reactor-nebula i:nth-child(2) { width: 74%; height: 48%; background: radial-gradient(ellipse, rgba(132, 69, 255, .13), rgba(45, 185, 255, .045) 49%, transparent 72%); transform: translate(-50%, -50%) rotate(17deg); animation-delay: -2.4s; }
.reactor-nebula i:nth-child(3) { width: 48%; aspect-ratio: 1; background: radial-gradient(circle, rgba(70, 233, 255, .13), rgba(82, 81, 255, .07) 37%, transparent 70%); transform: translate(-50%, -50%); animation-delay: -4.8s; }

.reactor-grid { inset: -25%; z-index: 1; }

.reactor-grid {
  position: absolute;
  inset: -25%;
  opacity: .28;
  background-image: linear-gradient(rgba(76, 165, 229, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(76, 165, 229, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, #000, transparent 67%);
  transform: rotateX(66deg) translateY(19%);
}

.reactor-orbit {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(var(--accent-rgb), .23);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(63deg) rotateZ(-11deg);
  box-shadow: 0 0 24px rgba(var(--accent-rgb), .04), inset 0 0 18px rgba(var(--accent-rgb), .035);
}
.orbit-outer { width: min(74%, 690px); aspect-ratio: 1; border-style: dashed; animation: reactorSpin 28s linear infinite; }
.orbit-inner { width: min(50%, 450px); aspect-ratio: 1; border-color: rgba(147, 93, 255, .27); animation: reactorSpin 18s linear infinite reverse; }
.reactor-orbit::before,
.reactor-orbit::after { position: absolute; left: 50%; top: -4px; width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--accent); box-shadow: 0 0 13px var(--accent); }
.reactor-orbit::after { top: auto; bottom: -4px; background: var(--violet); box-shadow: 0 0 13px var(--violet); }

.reactor-ring-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.reactor-ring-particles > i {
  --particle-rgb: 91, 231, 255;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: var(--particle-z, 3);
  width: var(--particle-size, 8px);
  height: var(--particle-size, 8px);
  border-radius: 50%;
  opacity: var(--particle-opacity, .8);
  background: radial-gradient(circle, #fff 0 10%, rgba(var(--particle-rgb), 1) 22%, rgba(var(--particle-rgb), .56) 43%, rgba(var(--particle-rgb), .14) 61%, transparent 74%);
  box-shadow: 0 0 5px rgba(255, 255, 255, .9), 0 0 12px rgba(var(--particle-rgb), .92), 0 0 25px rgba(var(--particle-rgb), .48);
  transform: translate(var(--particle-x, 0), var(--particle-y, 0)) scale(var(--particle-scale, 1));
  will-change: transform, opacity;
}
.reactor-ring-particles > i::before {
  position: absolute;
  inset: -7px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--particle-rgb), .28), rgba(var(--particle-rgb), .08) 42%, transparent 72%);
}
.reactor-ring-particles > i::after {
  position: absolute;
  right: 50%;
  top: 50%;
  width: 15px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(var(--particle-rgb), .48));
  transform: translateY(-50%) rotate(var(--particle-tangent, 0rad));
  transform-origin: 100% 50%;
}
.reactor-ring-particles > i:nth-child(3n + 2) { --particle-rgb: 118, 111, 255; }
.reactor-ring-particles > i:nth-child(3n) { --particle-rgb: 210, 104, 255; }

.plaza-orbit-nodes { position: absolute; inset: 0; z-index: 5; }
.plaza-model-node {
  --node-color: var(--cyan);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: var(--orbit-z, 5);
  width: var(--orbit-size, 43px);
  height: var(--orbit-size, 43px);
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--node-color), transparent 51%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .14), rgba(5, 12, 27, .95) 60%);
  box-shadow: 0 0 18px color-mix(in srgb, var(--node-color), transparent 79%);
  opacity: var(--orbit-opacity, 1);
  cursor: pointer;
  transform: translate(var(--orbit-x, 0), var(--orbit-y, 0)) scale(var(--orbit-scale, 1));
  transition: width .3s, height .3s, border-color .3s, filter .3s, opacity .3s;
}
.plaza-model-node::after { position: absolute; inset: -5px; content: ""; border: 1px solid color-mix(in srgb, var(--node-color), transparent 84%); border-radius: 50%; }
.plaza-model-node img { width: 51%; height: 51%; object-fit: contain; border-radius: 50%; clip-path: circle(48%); filter: drop-shadow(0 0 7px color-mix(in srgb, var(--node-color), transparent 42%)); }
.plaza-model-node span { position: absolute; left: 50%; top: calc(100% + 8px); max-width: 90px; padding: 3px 5px; border: 1px solid rgba(96, 154, 220, .16); background: rgba(2, 7, 16, .88); color: #899bb1; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; white-space: nowrap; opacity: 0; transform: translate(-50%, -4px); transition: opacity .2s, transform .2s; }
.plaza-model-node:hover,
.plaza-model-node.is-selected { filter: none; border-color: var(--node-color); box-shadow: 0 0 30px color-mix(in srgb, var(--node-color), transparent 50%); }
.plaza-model-node:hover span,
.plaza-model-node.is-selected span { opacity: 1; transform: translate(-50%, 0); }

.selected-model-core {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: clamp(130px, 12vw, 210px);
  height: clamp(130px, 12vw, 210px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.selected-model-core::before { position: absolute; inset: 24%; content: ""; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--model-color, var(--accent)), transparent 55%), rgba(var(--accent-rgb), .12) 35%, transparent 72%); filter: blur(13px); opacity: .9; animation: corePulse 3.8s ease-in-out infinite; }
.selected-halo { position: absolute; border-radius: 50%; background: conic-gradient(from 18deg, transparent 0 15%, rgba(var(--accent-rgb), .08) 21%, color-mix(in srgb, var(--model-color, var(--accent)), white 16%) 29%, transparent 36% 66%, rgba(var(--accent-rgb), .5) 75%, transparent 83% 100%); -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px)); mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px)); opacity: .78; }
.halo-one { inset: 18%; animation: coreSpin 9s linear infinite; }
.halo-two { inset: 4%; opacity: .45; animation: coreSpin 17s linear infinite reverse; }
.halo-three { display: none; }
.selected-icon { position: relative; z-index: 2; width: clamp(62px, 4.7vw, 84px); height: clamp(62px, 4.7vw, 84px); display: grid; place-items: center; overflow: hidden; border: 1px solid color-mix(in srgb, var(--model-color, var(--accent)), white 15%); border-radius: 50%; background: radial-gradient(circle at 36% 28%, rgba(235, 252, 255, .18), color-mix(in srgb, var(--model-color, var(--accent)), transparent 76%) 34%, rgba(4, 13, 29, .95) 74%); box-shadow: 0 0 24px color-mix(in srgb, var(--model-color, var(--accent)), transparent 55%), inset 0 0 22px rgba(220, 247, 255, .08); }
.selected-icon::after { position: absolute; left: 18%; right: 18%; top: 12%; height: 28%; content: ""; border-radius: 50%; background: linear-gradient(rgba(229, 251, 255, .22), transparent); filter: blur(2px); pointer-events: none; }
.selected-icon img { position: relative; z-index: 1; width: 52%; height: 52%; object-fit: contain; filter: drop-shadow(0 0 9px color-mix(in srgb, var(--model-color, var(--accent)), transparent 30%)); }
.selected-model-core small,
.selected-model-core > b { position: relative; z-index: 2; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .11em; }
.selected-model-core small { color: #63748a; }
.selected-model-core > b { color: #e9f7ff; font-size: 8px; }
.reactor-beam { position: absolute; left: 50%; top: -110%; width: 1px; height: 320%; background: linear-gradient(transparent, rgba(var(--accent-rgb), .38), var(--accent), rgba(var(--accent-rgb), .25), transparent); box-shadow: 0 0 15px var(--accent); transform: translateX(-50%); opacity: .36; }

.reactor-readout { position: absolute; z-index: 7; bottom: 5%; display: grid; gap: 4px; padding: 7px 10px; border-top: 1px solid rgba(var(--accent-rgb), .26); color: #4d6078; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .13em; }
.reactor-readout b { color: #9eb0c4; font-weight: 400; }
.readout-left { left: 4%; }
.readout-right { right: 4%; text-align: right; }

.model-title { flex: 0 0 auto; padding: clamp(12px, 2vh, 23px) 18px clamp(9px, 1.5vh, 17px); border-bottom: 1px solid rgba(94, 144, 202, .12); }
.model-title small { color: var(--accent); font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .14em; }
.model-title h3 { margin: 7px 0 6px; font-size: clamp(23px, 1.75vw, 33px); font-weight: 540; letter-spacing: -.04em; }
.model-title p { margin: 0; color: #78889d; font-size: clamp(8px, .62vw, 11px); line-height: 1.7; }
.model-variants { flex: 0 0 auto; padding: 9px 16px 5px; border-bottom: 1px solid rgba(94, 144, 202, .1); }
.variant-caption { display: block; margin-bottom: 6px; color: #7e91a8; font: 8px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.variant-scroll-shell { position: relative; min-width: 0; }
.variant-scroll-track { display: flex; gap: 5px; min-width: 0; padding-right: 38px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-behavior: smooth; scrollbar-width: none; }
.variant-scroll-track::-webkit-scrollbar { display: none; }
.variant-scroll-next { position: absolute; z-index: 4; right: -2px; top: 0; bottom: 0; width: 38px; display: grid; place-items: center; border-left: 1px solid rgba(var(--accent-rgb), .2); background: linear-gradient(90deg, rgba(4, 11, 24, .15), rgba(5, 17, 35, .96) 42%); color: #d9f6ff; font-size: 23px; cursor: pointer; box-shadow: -10px 0 18px rgba(3, 10, 23, .82); transition: color .2s, border-color .2s, opacity .2s, transform .2s; }
.variant-scroll-next:hover { color: white; border-color: rgba(var(--accent-rgb), .65); transform: translateX(2px); }
.variant-scroll-next.is-reverse:hover { transform: translateX(-2px); }
.variant-scroll-next.is-hidden { visibility: hidden; opacity: 0; pointer-events: none; }
.variant-scroll-track > button { flex: 0 0 auto; display: grid; gap: 2px; min-width: 82px; padding: 7px 8px; border: 1px solid rgba(var(--accent-rgb), .14); background: rgba(4, 11, 24, .54); color: #95a8bc; text-align: left; cursor: pointer; transition: border-color .25s, color .25s, background .25s; }
.variant-scroll-track > button b { max-width: 105px; overflow: hidden; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.variant-scroll-track > button small { color: #61748b; font-size: 8px; white-space: nowrap; }
.variant-scroll-track > button:hover,
.variant-scroll-track > button.is-selected { border-color: rgba(var(--accent-rgb), .62); background: rgba(var(--accent-rgb), .09); color: #edf7ff; }
.billing-mode { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 7px 17px; border-bottom: 1px solid rgba(94, 144, 202, .1); }
.billing-mode span { color: var(--accent); font-size: 10px; font-weight: 650; }
.billing-mode small { color: #8395aa; font-size: 8px; text-align: right; }
.model-pricing { flex: 0 0 auto; display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(94, 144, 202, .12); }
.model-pricing article { position: relative; display: grid; gap: 4px; padding: clamp(9px, 1.45vh, 15px) 17px; overflow: hidden; border-right: 1px solid rgba(94, 144, 202, .12); }
.model-pricing small { color: #53647c; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.model-pricing b { font-size: clamp(20px, 1.55vw, 29px); font-weight: 500; white-space: nowrap; }
.model-pricing i { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, var(--accent), transparent); }
.model-specs { flex: 0 0 auto; display: grid; grid-template-columns: 1fr 1fr; padding: clamp(9px, 1.4vh, 14px) 17px 8px; }
.model-specs span { display: grid; gap: 4px; }
.model-specs small { color: #50617a; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.model-specs b { font-size: 10px; font-weight: 500; }
.capability-tags { flex: 0 0 auto; min-height: 36px; display: flex; flex-wrap: wrap; gap: 5px; padding: 5px 17px 9px; }
.capability-tags span { padding: 4px 7px; border: 1px solid rgba(var(--accent-rgb), .2); color: #8092a8; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .09em; }

.cost-lens { position: relative; left: auto; right: auto; bottom: auto; flex: 0 0 auto; margin: auto 14px 13px; padding: 10px 12px; border: 1px solid rgba(var(--accent-rgb), .16); background: rgba(4, 11, 24, .7); }
.cost-lens > span { display: block; margin-bottom: 8px; color: #566981; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .13em; }
.cost-lens label { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4px 10px; margin: 5px 0; }
.cost-lens label small { color: #64758c; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; }
.cost-lens label b { color: #b7c9da; font: 7px ui-monospace, SFMono-Regular, Consolas, monospace; font-weight: 400; }
.cost-lens input { grid-column: 1 / -1; width: 100%; height: 2px; appearance: none; background: linear-gradient(90deg, var(--accent), rgba(91, 132, 189, .18)); cursor: pointer; }
.cost-lens input::-webkit-slider-thumb { width: 8px; height: 8px; appearance: none; border: 1px solid var(--accent); border-radius: 50%; background: #071323; box-shadow: 0 0 8px var(--accent); }
.cost-lens > div { display: flex; align-items: end; justify-content: space-between; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(93, 143, 202, .13); }
.cost-lens > div small { color: #586981; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; }
.cost-lens > div b { color: var(--accent); font-size: 19px; font-weight: 500; }

.model-price-ticker {
  grid-column: 1 / -1;
  display: flex;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  cursor: ew-resize;
  scrollbar-color: rgba(var(--accent-rgb), .38) rgba(8, 20, 40, .55);
  scrollbar-width: thin;
  border-top: 1px solid rgba(95, 146, 207, .15);
  background: linear-gradient(90deg, rgba(4, 12, 27, .92), rgba(5, 15, 31, .72));
}
.ticker-model {
  position: relative;
  flex: 0 0 clamp(125px, 9vw, 158px);
  min-width: 125px;
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: end;
  gap: 0 7px;
  padding: 7px 8px;
  border-right: 1px solid rgba(95, 146, 207, .11);
  background: transparent;
  color: #65778f;
  text-align: left;
  cursor: pointer;
  transition: color .25s, background .25s;
}
.ticker-model img { grid-row: 1 / 3; align-self: center; width: 18px; height: 18px; object-fit: contain; border-radius: 50%; clip-path: circle(48%); filter: drop-shadow(0 0 5px color-mix(in srgb, var(--model-color), transparent 48%)); opacity: 1; }
.ticker-model b { align-self: end; overflow: hidden; font-size: 7px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.ticker-model small { align-self: start; color: #3f5068; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; }
.ticker-model::before { position: absolute; left: 10%; right: 10%; top: -1px; height: 1px; content: ""; background: var(--accent); opacity: 0; box-shadow: 0 0 10px var(--accent); }
.ticker-model:hover,
.ticker-model.is-selected { color: #edf7ff; background: rgba(var(--accent-rgb), .06); }
.ticker-model.is-selected::before { opacity: 1; }
.ticker-model.is-hidden { display: none; }

.orchestration-console {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: clamp(220px, 18vw, 310px) minmax(430px, 1fr) clamp(205px, 16vw, 280px);
  grid-template-rows: 36px minmax(0, 1fr) clamp(68px, 9vh, 90px);
  border: 1px solid rgba(102, 129, 218, .22);
  background:
    radial-gradient(circle at 53% 47%, rgba(var(--violet-rgb), .12), transparent 32%),
    linear-gradient(135deg, rgba(12, 18, 43, .91), rgba(6, 12, 29, .78));
  box-shadow: inset 0 0 110px rgba(var(--violet-rgb), .045), 0 28px 70px rgba(0, 0, 0, .25), 0 0 50px rgba(var(--violet-rgb), .04);
}

.orchestration-console::after {
  position: absolute;
  z-index: 0;
  left: 52%;
  top: 49%;
  width: min(40vw, 620px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(var(--violet-rgb), .13);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 12%, rgba(var(--violet-rgb), .045) 12.3% 12.7%, transparent 13% 24%);
  pointer-events: none;
  transform: translate(-50%, -50%) rotateX(66deg);
}
.orchestration-console > * { position: relative; z-index: 1; }

.console-topbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid rgba(101, 137, 205, .16);
  color: #53657f;
  font: 6px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .12em;
}
.console-topbar span { display: flex; align-items: center; gap: 7px; }
.console-topbar span > i,
.console-topbar em > i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.console-topbar b { color: #64768e; font-weight: 400; }
.console-topbar em { display: flex; align-items: center; gap: 6px; color: #8698ae; font-style: normal; }

.objective-console,
.telemetry-console {
  padding: clamp(17px, 2.4vh, 28px) clamp(14px, 1.5vw, 24px);
  background: rgba(4, 10, 23, .72);
}
.objective-console { border-right: 1px solid rgba(101, 137, 205, .14); }
.telemetry-console { border-left: 1px solid rgba(101, 137, 205, .14); }
.objective-console > span,
.telemetry-console > span { color: var(--accent); font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .13em; }
.objective-console h3 { margin: clamp(16px, 2.8vh, 28px) 0; font-size: clamp(16px, 1.3vw, 23px); font-weight: 510; line-height: 1.65; letter-spacing: -.02em; }
.objective-console > div { display: flex; flex-wrap: wrap; gap: 5px; }
.objective-console > div b { padding: 4px 7px; border: 1px solid rgba(var(--accent-rgb), .2); color: #8496ab; font-size: 7px; font-weight: 400; }
.objective-console > small { display: block; margin-top: clamp(18px, 3vh, 34px); color: #4d5e76; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .13em; }
.objective-console strong { display: block; margin-top: 7px; color: var(--accent); font-size: clamp(26px, 2.4vw, 43px); font-weight: 450; letter-spacing: -.05em; }

.route-pipeline { position: relative; z-index: 2; min-width: 0; overflow: hidden; padding: 5% 5%; }
.route-pipeline::before { position: absolute; inset: 10%; content: ""; opacity: .42; background-image: linear-gradient(rgba(var(--accent-rgb), .04) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--accent-rgb), .04) 1px, transparent 1px); background-size: 34px 34px; mask-image: radial-gradient(ellipse, #000, transparent 76%); }
.pipeline-track { position: absolute; left: 7%; right: 7%; top: 50%; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan) 10%, #fff 48%, var(--violet) 86%, transparent); box-shadow: 0 0 24px rgba(var(--accent-rgb), .68); }
.pipeline-track i { position: absolute; left: 0; top: -4px; width: 9px; height: 9px; border: 1px solid var(--cyan); border-radius: 50%; background: #071022; box-shadow: 0 0 13px var(--cyan); }
.pipeline-track b { position: absolute; right: 0; top: -4px; width: 9px; height: 9px; border: 1px solid var(--violet); transform: rotate(45deg); box-shadow: 0 0 13px var(--violet); }
.route-pipeline > #routePipeline { position: relative; z-index: 3; height: 100%; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: clamp(8px, 1vw, 18px); }
.pipeline-node { --node-color: var(--cyan); position: relative; min-width: 0; padding: clamp(12px, 1.5vw, 20px) 11px; border: 1px solid color-mix(in srgb, var(--node-color), transparent 50%); background: linear-gradient(145deg, color-mix(in srgb, var(--node-color), transparent 84%), rgba(8, 18, 40, .94)); box-shadow: 0 22px 44px rgba(0, 0, 0, .27), 0 0 25px color-mix(in srgb, var(--node-color), transparent 88%), inset 0 0 28px color-mix(in srgb, var(--node-color), transparent 91%); transform: translateY(-13%); }
.pipeline-node::after { position: absolute; left: 15%; right: 15%; top: -1px; height: 1px; content: ""; background: var(--node-color); box-shadow: 0 0 13px var(--node-color); }
.pipeline-node:nth-child(even) { transform: translateY(13%); }
.pipeline-node > span { color: #586a82; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.route-icon { width: clamp(36px, 3.2vw, 52px); height: clamp(36px, 3.2vw, 52px); display: grid; place-items: center; margin: clamp(12px, 2vh, 20px) 0; border: 1px solid color-mix(in srgb, var(--node-color), transparent 48%); border-radius: 50%; box-shadow: 0 0 23px color-mix(in srgb, var(--node-color), transparent 80%); }
.route-icon img { width: 45%; height: 45%; object-fit: contain; filter: drop-shadow(0 0 7px color-mix(in srgb, var(--node-color), transparent 42%)); }
.pipeline-node h3 { margin: 0 0 6px; font-size: clamp(10px, .85vw, 14px); font-weight: 550; }
.pipeline-node p { min-height: 30px; margin: 0; color: #65758b; font-size: clamp(6px, .5vw, 8px); line-height: 1.55; }
.pipeline-state { display: flex; align-items: center; gap: 5px; margin-top: clamp(10px, 1.7vh, 17px); color: color-mix(in srgb, var(--node-color), white 18%); font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; }
.pipeline-state i { width: 3px; height: 3px; border-radius: 50%; background: var(--node-color); box-shadow: 0 0 8px var(--node-color); }
.pipeline-caption { position: absolute; bottom: 8%; color: #3d4e65; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .15em; }
.caption-a { left: 7%; }
.caption-b { right: 7%; }

.telemetry-console > div { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 7px; margin-top: clamp(15px, 2.4vh, 25px); }
.telemetry-console small { color: #5a6a82; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; }
.telemetry-console b { color: #a7b8cb; font-size: 15px; font-weight: 450; }
.telemetry-console div > i { grid-column: 1 / -1; display: block; height: 2px; background: rgba(98, 137, 193, .13); }
.telemetry-console div > i::after { display: block; width: var(--v); height: 100%; content: ""; background: linear-gradient(90deg, var(--accent), var(--violet)); box-shadow: 0 0 9px var(--accent); }
.telemetry-console > p { display: flex; align-items: center; gap: 7px; margin: clamp(20px, 3vh, 34px) 0 0; color: #5f7189; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; }
.telemetry-console > p i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }

.protocol-strip { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(101, 137, 205, .14); }
.protocol-strip article { display: grid; grid-template-columns: 26px 1fr; grid-template-rows: 1fr 1fr; align-items: end; gap: 0 9px; padding: 9px 16px; border-right: 1px solid rgba(101, 137, 205, .12); }
.protocol-strip article span { grid-row: 1 / 3; align-self: center; display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid rgba(var(--accent-rgb), .27); border-radius: 50%; color: var(--accent); font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; }
.protocol-strip article b { font: 7px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; }
.protocol-strip article small { color: #52637a; font-size: 7px; }

.workspace-console {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: clamp(195px, 16vw, 280px) minmax(450px, 1fr) clamp(215px, 17vw, 300px);
  grid-template-rows: 36px minmax(0, 1fr);
  border: 1px solid rgba(89, 148, 208, .2);
  background:
    radial-gradient(ellipse at 58% 58%, rgba(var(--accent-rgb), .095), transparent 38%),
    linear-gradient(135deg, rgba(9, 22, 44, .88), rgba(5, 12, 28, .78));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .25), inset 0 0 95px rgba(var(--accent-rgb), .035);
}
.workspace-console .project-rail { border-right: 1px solid rgba(96, 145, 204, .14); background: rgba(5, 13, 28, .78); }
.project-rail > span { display: flex; justify-content: space-between; padding: 15px; color: #576981; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; }
.project-rail > span b { color: var(--accent); font-weight: 400; }
.project-rail button { position: relative; width: 100%; height: clamp(57px, 8.2vh, 78px); display: grid; grid-template-columns: 27px 1fr; align-items: center; padding: 0 13px; border-top: 1px solid rgba(91, 138, 197, .08); background: transparent; color: #677990; text-align: left; cursor: pointer; transition: color .25s, background .25s; }
.project-rail button > small { color: #3f516a; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; }
.project-rail button > b { display: grid; gap: 6px; font-size: 10px; font-weight: 500; }
.project-rail button em { color: #40516a; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; font-style: normal; }
.project-rail button::before { position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; content: ""; background: var(--accent); opacity: 0; box-shadow: 0 0 9px var(--accent); }
.project-rail button:hover,
.project-rail button.is-active { color: #e9f5ff; background: linear-gradient(90deg, rgba(var(--accent-rgb), .09), transparent); }
.project-rail button.is-active::before { opacity: 1; }
.project-rail button.is-active > small { color: var(--accent); }

.conversation-deck { min-width: 0; display: flex; flex-direction: column; padding: clamp(14px, 2.2vh, 24px) clamp(15px, 1.8vw, 28px); }
.objective-card { position: relative; flex: 0 0 auto; padding: clamp(13px, 1.9vh, 20px); border: 1px solid rgba(var(--accent-rgb), .34); background: linear-gradient(100deg, rgba(var(--accent-rgb), .14), rgba(8, 24, 48, .62) 58%, transparent); box-shadow: inset 0 0 32px rgba(var(--accent-rgb), .04), 0 10px 34px rgba(0, 0, 0, .18); }
.objective-card::before { position: absolute; left: -1px; top: 18%; bottom: 18%; width: 1px; content: ""; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.objective-card > span { color: var(--accent); font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; }
.objective-card h3 { margin: 8px 0 10px; font-size: clamp(13px, 1.1vw, 18px); font-weight: 500; }
.objective-card > div { display: flex; gap: 5px; }
.objective-card i { padding: 3px 6px; border: 1px solid rgba(var(--accent-rgb), .17); color: #6f829a; font-size: 6px; font-style: normal; }
.agent-stream { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; justify-content: center; }
.agent-event { position: relative; display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 11px; min-height: clamp(46px, 6.8vh, 63px); padding: 6px 10px; border-bottom: 1px solid rgba(95, 174, 225, .16); background: linear-gradient(90deg, rgba(var(--accent-rgb), .035), transparent 64%); }
.agent-event::before { position: absolute; left: 25px; top: -8px; width: 1px; height: 16px; content: ""; background: linear-gradient(var(--accent), transparent); opacity: .32; }
.mini-mark { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(var(--cyan-rgb), .22); border-radius: 50%; background: rgba(8, 19, 38, .74); }
.mini-mark img { width: 45%; height: 45%; filter: drop-shadow(0 0 6px color-mix(in srgb, var(--node-color), transparent 42%)); }
.agent-event > span { display: grid; gap: 4px; min-width: 0; }
.agent-event b { font-size: 8px; font-weight: 520; }
.agent-event small { overflow: hidden; color: #596b83; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.agent-event > i { color: var(--green); font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; font-style: normal; letter-spacing: .08em; }
.run-next { flex: 0 0 clamp(38px, 5.3vh, 50px); display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border: 1px solid rgba(var(--accent-rgb), .24); background: linear-gradient(90deg, rgba(var(--accent-rgb), .09), rgba(4, 11, 24, .8)); color: #97aabd; cursor: pointer; }
.run-next span,
.run-next b { font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.run-next span { display: flex; align-items: center; gap: 7px; }
.run-next span i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }
.run-next b { color: var(--accent); font-weight: 400; }
.run-next.is-running { animation: routeRunning .7s ease-in-out infinite alternate; }

.evidence-panel { padding: clamp(14px, 2vh, 22px); border-left: 1px solid rgba(96, 145, 204, .14); background: rgba(5, 13, 28, .72); }
.evidence-panel > span { display: flex; justify-content: space-between; color: #5b6d84; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; }
.evidence-panel > span b { color: var(--accent); font-weight: 400; }
.evidence-score { display: flex; align-items: center; gap: 12px; margin: clamp(13px, 2.2vh, 22px) 0 8px; }
.evidence-score strong { color: var(--accent); font-size: clamp(28px, 2.4vw, 44px); font-weight: 430; letter-spacing: -.06em; }
.evidence-score small { color: #50627a; font: 6px/1.5 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.evidence-map { position: relative; height: clamp(110px, 18vh, 175px); margin: 6px 0 10px; overflow: hidden; border: 1px solid rgba(var(--accent-rgb), .25); background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), .22), rgba(7, 20, 42, .48) 45%, transparent 70%); box-shadow: inset 0 0 32px rgba(var(--accent-rgb), .07), 0 0 25px rgba(var(--accent-rgb), .04); }
.evidence-map::before,
.evidence-map::after { position: absolute; left: 50%; top: 50%; content: ""; border: 1px solid rgba(var(--accent-rgb), .16); border-radius: 50%; transform: translate(-50%, -50%); }
.evidence-map::before { width: 55%; aspect-ratio: 1; }
.evidence-map::after { width: 85%; aspect-ratio: 1; border-style: dashed; }
.evidence-map i { position: absolute; width: 7px; height: 7px; border: 1px solid var(--accent); border-radius: 50%; background: #071122; box-shadow: 0 0 10px var(--accent); }
.evidence-map i:nth-child(1) { left: 49%; top: 47%; }
.evidence-map i:nth-child(2) { left: 22%; top: 30%; }
.evidence-map i:nth-child(3) { right: 18%; top: 24%; }
.evidence-map i:nth-child(4) { left: 28%; bottom: 18%; }
.evidence-map i:nth-child(5) { right: 25%; bottom: 19%; }
.evidence-map i:nth-child(6) { right: 8%; top: 53%; }
.evidence-panel ul { display: grid; gap: 1px; margin: 0; padding: 0; list-style: none; }
.evidence-panel li { display: flex; justify-content: space-between; padding: 6px 2px; border-bottom: 1px solid rgba(92, 137, 196, .08); color: #65778f; font-size: 7px; }
.evidence-panel li b { color: #8da0b5; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; font-weight: 400; }

.solution-console {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: clamp(185px, 14vw, 245px) minmax(430px, 1fr) clamp(290px, 23vw, 400px);
  border: 1px solid rgba(123, 97, 215, .22);
  background:
    radial-gradient(circle at 51% 50%, rgba(var(--magenta), .11), transparent 28%),
    linear-gradient(135deg, rgba(18, 12, 43, .9), rgba(6, 13, 31, .78));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .25), inset 0 0 110px rgba(var(--magenta), .035);
}
.solution-selector { display: flex; flex-direction: column; padding: 35px 8px 9px; border-right: 1px solid rgba(112, 126, 200, .13); background: rgba(6, 10, 25, .72); }
.solution-tab { position: relative; flex: 1; min-height: 0; display: grid; grid-template-columns: 31px 1fr; grid-template-rows: 1fr 1fr; align-items: end; padding: 8px 10px; border-bottom: 1px solid rgba(103, 123, 191, .1); background: transparent; color: #64738d; text-align: left; cursor: pointer; transition: color .25s, background .25s; }
.solution-tab span { grid-row: 1 / 3; align-self: center; color: #3f4f6b; font: 7px ui-monospace, SFMono-Regular, Consolas, monospace; }
.solution-tab b { align-self: end; font-size: clamp(8px, .68vw, 11px); font-weight: 520; }
.solution-tab small { align-self: start; color: #3e4e69; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .08em; }
.solution-tab::before { position: absolute; left: -9px; top: 20%; bottom: 20%; width: 1px; content: ""; background: var(--accent); opacity: 0; box-shadow: 0 0 11px var(--accent); }
.solution-tab:hover,
.solution-tab.is-active { color: #f0f6ff; background: linear-gradient(90deg, rgba(var(--accent-rgb), .11), transparent); }
.solution-tab.is-active::before { opacity: 1; }
.solution-tab.is-active span { color: var(--accent); }

.solution-visual { position: relative; overflow: hidden; background: radial-gradient(circle at 50% 48%, rgba(var(--accent-rgb), .23), transparent 31%), linear-gradient(180deg, rgba(14, 18, 51, .28), transparent); }
.solution-visual::before { position: absolute; inset: 7%; content: ""; border: 1px solid rgba(var(--accent-rgb), .12); clip-path: polygon(11% 0, 89% 0, 100% 18%, 100% 82%, 89% 100%, 11% 100%, 0 82%, 0 18%); box-shadow: inset 0 0 70px rgba(var(--accent-rgb), .04); }
.solution-space { position: absolute; inset: 5%; transform: perspective(700px) rotateX(63deg); }
.solution-space::before,
.solution-space::after { position: absolute; inset: 8%; content: ""; border: 1px solid rgba(var(--accent-rgb), .16); border-radius: 50%; }
.solution-space::after { inset: 25%; border-style: dashed; border-color: rgba(173, 90, 255, .25); }
.solution-space > i { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(var(--accent-rgb), .12); border-radius: 50%; transform: translate(-50%, -50%); }
.solution-space > i:nth-child(1) { width: 95%; height: 30%; }
.solution-space > i:nth-child(2) { width: 75%; height: 55%; }
.solution-space > i:nth-child(3) { width: 52%; height: 83%; }
.solution-space b { position: absolute; inset: 0; background-image: linear-gradient(rgba(var(--accent-rgb), .05) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--accent-rgb), .05) 1px, transparent 1px); background-size: 38px 38px; mask-image: radial-gradient(circle, #000, transparent 72%); }
.solution-core { position: absolute; z-index: 4; left: 50%; top: 49%; width: clamp(145px, 12.5vw, 220px); height: clamp(145px, 12.5vw, 220px); display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(var(--accent-rgb), .62); border-radius: 50%; background: radial-gradient(circle at 50% 44%, rgba(var(--accent-rgb), .34), rgba(8, 15, 40, .94) 67%); box-shadow: 0 0 90px rgba(var(--accent-rgb), .28), inset 0 0 38px rgba(var(--accent-rgb), .18); transform: translate(-50%, -50%); }
.solution-core::before,
.solution-core::after { position: absolute; content: ""; border: 1px solid rgba(var(--accent-rgb), .2); border-radius: 50%; }
.solution-core::before { inset: -20%; border-style: dashed; animation: coreSpin 17s linear infinite; }
.solution-core::after { inset: -43%; border-color: rgba(var(--accent-rgb), .08); animation: coreSpin 28s linear infinite reverse; }
.solution-core small,
.solution-core span { position: relative; z-index: 2; color: #5f7189; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; }
.solution-core strong { position: relative; z-index: 2; margin: 4px 0; color: transparent; font-size: clamp(38px, 4vw, 72px); font-weight: 300; line-height: .95; background: linear-gradient(180deg, #fff, var(--accent)); -webkit-background-clip: text; background-clip: text; text-shadow: 0 0 30px rgba(var(--accent-rgb), .18); }
.solution-node { position: absolute; z-index: 4; width: clamp(54px, 4.8vw, 78px); height: clamp(54px, 4.8vw, 78px); display: grid; place-items: center; border: 1px solid rgba(var(--accent-rgb), .5); border-radius: 50%; background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.12), rgba(8, 17, 40, .94) 63%); box-shadow: 0 0 34px rgba(var(--accent-rgb), .2), inset 0 0 18px rgba(var(--accent-rgb), .08); }
.solution-node img { width: 42%; height: 42%; filter: drop-shadow(0 0 7px rgba(var(--accent-rgb), .5)); }
.solution-node span { position: absolute; top: calc(100% + 7px); color: #75879c; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; white-space: nowrap; }
.node-one { left: 17%; top: 23%; }
.node-two { right: 14%; top: 36%; }
.node-three { left: 25%; bottom: 15%; }
.solution-beam { position: absolute; z-index: 2; left: 11%; right: 10%; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), var(--violet), transparent); box-shadow: 0 0 16px var(--accent); transform: rotate(-13deg); opacity: .45; }

.solution-hud { padding: clamp(16px, 2.4vh, 26px) clamp(17px, 1.5vw, 25px); border-left: 1px solid rgba(112, 126, 200, .13); background: rgba(6, 10, 25, .78); }
.solution-hud .module-label { margin: calc(clamp(16px, 2.4vh, 26px) * -1) calc(clamp(17px, 1.5vw, 25px) * -1) 0; }
.solution-hud > small { display: block; margin-top: clamp(16px, 2.5vh, 27px); color: var(--accent); font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .14em; }
.solution-hud h3 { margin: 9px 0 10px; font-size: clamp(24px, 1.9vw, 35px); font-weight: 520; line-height: 1.17; letter-spacing: -.04em; }
.solution-hud > p { margin: 0; color: #72829a; font-size: clamp(8px, .63vw, 11px); line-height: 1.8; }
.solution-model-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: clamp(15px, 2.2vh, 24px) 0; }
.solution-model-list span { display: grid; justify-items: center; gap: 6px; padding: 9px 5px; border: 1px solid rgba(var(--accent-rgb), .15); background: rgba(var(--accent-rgb), .025); }
.solution-model-list img { width: 20px; height: 20px; filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), .45)); }
.solution-model-list b { overflow: hidden; color: #8799ae; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }
.delivery-protocol { padding: 11px; border: 1px solid rgba(var(--accent-rgb), .14); }
.delivery-protocol > span { color: #52647c; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; }
.delivery-protocol > div { display: grid; gap: 7px; margin-top: 10px; }
.delivery-protocol b { display: flex; align-items: center; gap: 8px; color: #8596ab; font-size: 7px; font-weight: 400; }
.delivery-protocol b::before { width: 4px; height: 4px; content: ""; border: 1px solid var(--accent); transform: rotate(45deg); }
.solution-hud .primary-action { position: absolute; left: clamp(17px, 1.5vw, 25px); right: clamp(17px, 1.5vw, 25px); bottom: clamp(16px, 2.3vh, 24px); width: calc(100% - clamp(34px, 3vw, 50px)); justify-content: space-between; }

.about-console {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: clamp(290px, 27vw, 480px) minmax(390px, 1fr) clamp(285px, 22vw, 390px);
  border: 1px solid rgba(89, 148, 208, .2);
  background:
    radial-gradient(circle at 55% 50%, rgba(var(--accent-rgb), .13), transparent 29%),
    linear-gradient(135deg, rgba(9, 23, 46, .9), rgba(5, 12, 29, .76));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24), inset 0 0 120px rgba(var(--accent-rgb), .038);
}
.manifesto-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(20px, 3vw, 52px); border-right: 1px solid rgba(95, 145, 204, .13); background: linear-gradient(135deg, rgba(var(--accent-rgb), .035), transparent); }
.manifesto-panel > span { color: var(--accent); font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .14em; }
.manifesto-panel h3 { margin: clamp(16px, 2.7vh, 29px) 0; font-size: clamp(25px, 2.2vw, 40px); font-weight: 520; line-height: 1.32; letter-spacing: -.045em; }
.manifesto-panel p { margin: 0; color: #74849a; font-size: clamp(9px, .68vw, 12px); line-height: 1.9; }
.manifesto-panel > div { display: flex; flex-wrap: wrap; gap: 6px; margin-top: clamp(20px, 3vh, 34px); }
.manifesto-panel > div b { padding: 5px 7px; border: 1px solid rgba(var(--accent-rgb), .17); color: #62758d; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; font-weight: 400; letter-spacing: .08em; }

.system-core { position: relative; min-width: 0; overflow: hidden; background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), .24), rgba(23, 46, 91, .08) 30%, transparent 55%); }
.system-core::after { position: absolute; left: 50%; top: 50%; width: 78%; height: 24%; content: ""; border: 1px solid rgba(var(--accent-rgb), .22); border-radius: 50%; box-shadow: 0 0 30px rgba(var(--accent-rgb), .08); transform: translate(-50%, -50%) rotate(-12deg); }
.system-core::before { position: absolute; inset: 8%; content: ""; opacity: .32; background-image: linear-gradient(rgba(var(--accent-rgb), .05) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--accent-rgb), .05) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle, #000, transparent 73%); transform: perspective(700px) rotateX(62deg); }
.system-orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(var(--accent-rgb), .18); border-radius: 50%; transform: translate(-50%, -50%) rotateX(63deg) rotateZ(-12deg); }
.system-orbit span { position: absolute; left: 50%; top: -7px; padding: 3px 6px; background: #050b18; color: #60728a; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; white-space: nowrap; transform: translateX(-50%); }
.orbit-one { width: 31%; aspect-ratio: 1; border-color: rgba(var(--accent-rgb), .48); animation: reactorSpin 17s linear infinite; }
.orbit-two { width: 49%; aspect-ratio: 1; border-style: dashed; animation: reactorSpin 25s linear infinite reverse; }
.orbit-three { width: 67%; aspect-ratio: 1; border-color: rgba(137, 93, 255, .25); animation: reactorSpin 34s linear infinite; }
.orbit-four { width: 85%; aspect-ratio: 1; border-style: dotted; border-color: rgba(var(--accent-rgb), .1); animation: reactorSpin 47s linear infinite reverse; }
.system-logo { position: absolute; z-index: 4; left: 50%; top: 50%; width: clamp(135px, 11.5vw, 200px); height: clamp(135px, 11.5vw, 200px); display: grid; place-items: center; border: 1px solid rgba(var(--accent-rgb), .62); border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb), .32), rgba(6, 19, 41, .96) 68%); box-shadow: 0 0 100px rgba(var(--accent-rgb), .3), inset 0 0 38px rgba(var(--accent-rgb), .2); transform: translate(-50%, -50%); }
.system-logo::before,
.system-logo::after { position: absolute; content: ""; border: 1px solid rgba(var(--accent-rgb), .2); border-radius: 50%; }
.system-logo::before { inset: -17%; border-style: dashed; animation: coreSpin 15s linear infinite; }
.system-logo::after { inset: -38%; border-color: rgba(var(--accent-rgb), .08); animation: corePulse 4s ease-in-out infinite; }
.system-logo i { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, transparent, rgba(var(--accent-rgb), .22), transparent 24%, transparent 75%, rgba(140, 93, 255, .19), transparent); animation: coreSpin 8s linear infinite; }
.system-logo img { position: relative; z-index: 2; width: 53%; height: 53%; object-fit: contain; mix-blend-mode: screen; filter: brightness(1.55) saturate(1.4) drop-shadow(0 0 10px rgba(var(--accent-rgb), .42)); }
.system-logo small { position: absolute; z-index: 2; bottom: 20%; color: #6a7d94; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .13em; }

.vision-panel { padding: 0 clamp(15px, 1.5vw, 24px) clamp(15px, 2vh, 22px); border-left: 1px solid rgba(95, 145, 204, .13); background: rgba(5, 13, 28, .74); }
.vision-panel .module-label { margin: 0 calc(clamp(15px, 1.5vw, 24px) * -1); }
.vision-panel ol { display: grid; margin: clamp(13px, 2vh, 21px) 0; padding: 0; list-style: none; }
.vision-panel li { min-height: clamp(54px, 7.7vh, 73px); display: grid; grid-template-columns: 35px 1fr; align-items: center; border-bottom: 1px solid rgba(93, 140, 199, .1); }
.vision-panel li > span { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid rgba(var(--accent-rgb), .22); border-radius: 50%; color: var(--accent); font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; }
.vision-panel li > b { display: grid; gap: 5px; font: 7px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.vision-panel li small { color: #596b82; font-family: Inter, "PingFang SC", sans-serif; font-size: 7px; font-weight: 400; letter-spacing: 0; }
.vision-stats { position: absolute; left: clamp(15px, 1.5vw, 24px); right: clamp(15px, 1.5vw, 24px); bottom: clamp(15px, 2vh, 22px); display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(var(--accent-rgb), .13); }
.vision-stats span { display: grid; justify-items: center; gap: 4px; padding: 10px 4px; border-right: 1px solid rgba(var(--accent-rgb), .1); }
.vision-stats b { font-size: 17px; font-weight: 450; }
.vision-stats small { color: #53657c; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; }

/* Spatial narrative pages */
.spatial-shell {
  position: relative;
  padding: 0;
  background:
    radial-gradient(ellipse at 52% 53%, rgba(var(--accent-rgb), .055), transparent 42%),
    linear-gradient(180deg, rgba(2, 5, 13, .15), rgba(2, 5, 13, .45));
}

.spatial-shell::before,
.spatial-shell::after {
  display: none;
}

.spatial-canvas,
.spatial-depth-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.spatial-canvas {
  z-index: 0;
  filter: brightness(1.13) saturate(1.16);
}

.spatial-depth-grid {
  z-index: 1;
  opacity: .22;
  background-image:
    linear-gradient(rgba(var(--accent-rgb), .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), .045) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(ellipse 75% 68% at 52% 58%, #000, transparent 76%);
  transform: perspective(780px) rotateX(67deg) translateY(31%) scale(1.3);
  transform-origin: 50% 78%;
  will-change: opacity, transform;
  animation: spatialGridDrift 12s ease-in-out infinite alternate;
}

.spatial-index {
  position: absolute;
  z-index: 5;
  left: clamp(25px, 4vw, 76px);
  right: clamp(25px, 4vw, 76px);
  top: clamp(24px, 4vh, 42px);
  display: grid;
  grid-template-columns: auto 76px auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font: 6px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .16em;
}

.spatial-index i { height: 1px; background: linear-gradient(90deg, var(--accent), transparent); }
.spatial-index small { color: #5c6f88; }
.spatial-index b { justify-self: end; color: #465870; font-weight: 400; }

.spatial-center-copy {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 27%;
  width: min(720px, 54vw);
  text-align: center;
  transform: translateX(-50%);
}

.spatial-center-copy > small,
.solution-spatial-focus > small,
.solution-spatial-focus > span,
.solution-spatial-focus > em {
  color: var(--accent);
  font: 6px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .18em;
}

.spatial-center-copy h2 {
  margin: clamp(12px, 2vh, 20px) 0 12px;
  font-size: clamp(31px, min(3.25vw, 5.5vh), 58px);
  font-weight: 530;
  line-height: 1.1;
  letter-spacing: -.055em;
  text-shadow: 0 0 38px rgba(0, 0, 0, .68);
}

.spatial-center-copy h2 em,
.about-manifesto h2 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(90deg, #fff, var(--accent), #b899ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.spatial-center-copy p {
  max-width: 580px;
  margin: 0 auto;
  color: #73859c;
  font-size: clamp(8px, .68vw, 11px);
  line-height: 1.85;
}

.spatial-float {
  position: absolute;
  z-index: 5;
  color: #8798ad;
  font: 6px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .1em;
}

.spatial-float::before {
  position: absolute;
  left: 0;
  top: -10px;
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--accent), transparent);
}

.orchestration-objective {
  left: 7%;
  top: 30%;
  width: min(260px, 18vw);
  transform: perspective(800px) rotateY(13deg) rotateZ(-2deg);
  transform-origin: left center;
}

.orchestration-objective > span,
.orchestration-telemetry > span { color: var(--accent); }
.orchestration-objective p { color: #9bacbf; font-family: Inter, "PingFang SC", sans-serif; font-size: clamp(8px, .65vw, 11px); line-height: 1.75; letter-spacing: 0; }
.orchestration-objective > div { display: flex; flex-wrap: wrap; gap: 5px; }
.orchestration-objective b { padding: 4px 6px; border: 1px solid rgba(var(--accent-rgb), .2); font-size: 5px; font-weight: 400; }

.orchestration-telemetry {
  right: 7%;
  top: 31%;
  width: min(220px, 15vw);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px 12px;
  text-align: right;
  transform: perspective(800px) rotateY(-13deg) rotateZ(2deg);
  transform-origin: right center;
}
.orchestration-telemetry::before { left: auto; right: 0; background: linear-gradient(90deg, transparent, var(--accent)); }
.orchestration-telemetry > span,
.orchestration-telemetry > strong,
.orchestration-telemetry > em { grid-column: 1 / -1; }
.orchestration-telemetry strong { color: white; font-size: clamp(28px, 2.7vw, 50px); font-weight: 350; letter-spacing: -.06em; }
.orchestration-telemetry div { display: contents; }
.orchestration-telemetry small { color: #51647c; }
.orchestration-telemetry b { color: #a8b8ca; font-weight: 400; }
.orchestration-telemetry em { display: flex; justify-content: flex-end; align-items: center; gap: 6px; color: #5f7289; font-style: normal; }
.orchestration-telemetry em i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

.spatial-route {
  position: absolute;
  z-index: 6;
  left: 17%;
  right: 17%;
  bottom: 15%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 90px);
  perspective: 900px;
}
.spatial-route::before { position: absolute; left: 4%; right: 4%; top: 28px; height: 1px; content: ""; background: linear-gradient(90deg, transparent, var(--cyan), white, var(--violet), transparent); box-shadow: 0 0 16px rgba(var(--accent-rgb), .55); }
.spatial-route-node { --node-color: var(--cyan); position: relative; min-width: 0; display: grid; grid-template-rows: 16px clamp(47px, 3.7vw, 64px) minmax(24px, auto) 16px; align-content: start; justify-items: center; gap: 5px; text-align: center; transform: perspective(600px) rotateX(6deg); }
.spatial-route-node:nth-child(even) { transform: perspective(600px) rotateX(6deg); }
.spatial-route-node > span { color: #607188; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.spatial-route-node .route-icon { position: relative; z-index: 2; width: clamp(39px, 3.3vw, 56px); height: clamp(39px, 3.3vw, 56px); margin: 4px 0; background: rgba(5, 12, 27, .9); }
.spatial-route-node h3 { margin: 2px 0 0; font-size: clamp(9px, .78vw, 13px); font-weight: 530; }
.spatial-route-node p { display: none; }
.spatial-route-node .pipeline-state { margin: 0; }

.spatial-protocols {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 3.4%;
  display: flex;
  gap: clamp(26px, 4vw, 74px);
  transform: translateX(-50%);
}
.spatial-protocols > span { display: grid; grid-template-columns: 20px auto; grid-template-rows: 1fr 1fr; align-items: end; gap: 0 7px; white-space: nowrap; }
.spatial-protocols i { grid-row: 1 / 3; align-self: center; color: var(--accent); font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; font-style: normal; }
.spatial-protocols b { font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.spatial-protocols small { color: #4d6077; font-size: 6px; }

.workspace-copy { top: 21%; }
.workspace-thread-nav {
  position: absolute;
  z-index: 6;
  left: 5%;
  top: 25%;
  width: min(240px, 17vw);
  border: 0;
  background: transparent;
  transform: perspective(850px) rotateY(15deg) rotateZ(-1deg);
  transform-origin: left center;
}
.workspace-thread-nav > span { padding: 10px 8px; }
.workspace-thread-nav button { height: clamp(48px, 6.8vh, 64px); border-color: rgba(var(--accent-rgb), .08); }

.workspace-memory-flow {
  position: absolute;
  z-index: 6;
  left: 27%;
  right: 23%;
  bottom: 11%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 30px);
  transform: perspective(900px) rotateX(7deg);
}
.workspace-memory-flow::before { position: absolute; left: 5%; right: 5%; top: 26px; height: 1px; content: ""; background: linear-gradient(90deg, transparent, var(--cyan), #fff, var(--blue), transparent); box-shadow: 0 0 15px rgba(var(--cyan-rgb), .45); }
.memory-node { --node-color: var(--cyan); position: relative; min-width: 0; display: grid; grid-template-rows: 42px minmax(35px, auto) 16px; align-content: start; justify-items: center; gap: 6px; text-align: center; }
.memory-node:nth-child(even) { transform: none; }
.memory-node > span:nth-child(2) { display: grid; gap: 4px; min-width: 0; }
.memory-node > span:nth-child(2) b { overflow: hidden; font-size: 7px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.memory-node > span:nth-child(2) small { color: #53677f; font-size: 6px; }
.memory-node > i { color: var(--green); font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; font-style: normal; }

.workspace-evidence {
  position: absolute;
  z-index: 6;
  right: 6%;
  top: 27%;
  width: min(190px, 14vw);
  text-align: center;
  transform: perspective(850px) rotateY(-15deg) rotateZ(1deg);
  transform-origin: right center;
}
.workspace-evidence > span { color: var(--accent); font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; }
.evidence-orbit { position: relative; width: min(145px, 11vw); aspect-ratio: 1; margin: 14px auto; border: 1px solid rgba(var(--accent-rgb), .24); border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb), .14), transparent 66%); }
.evidence-orbit::before,
.evidence-orbit::after { position: absolute; left: 50%; top: 50%; content: ""; border: 1px solid rgba(var(--accent-rgb), .16); border-radius: 50%; transform: translate(-50%, -50%); }
.evidence-orbit::before { width: 66%; height: 66%; }
.evidence-orbit::after { width: 35%; height: 35%; border-style: dashed; animation: coreSpin 8s linear infinite; }
.evidence-orbit i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.evidence-orbit i:nth-child(1) { left: 15%; top: 42%; }.evidence-orbit i:nth-child(2) { right: 15%; top: 29%; }.evidence-orbit i:nth-child(3) { left: 44%; bottom: 8%; }.evidence-orbit i:nth-child(4) { right: 28%; bottom: 24%; }
.evidence-orbit b { position: absolute; left: 50%; top: 42%; font-size: clamp(17px, 1.5vw, 26px); font-weight: 400; transform: translate(-50%, -50%); }
.evidence-orbit small { position: absolute; left: 50%; top: 59%; color: #53667e; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; transform: translateX(-50%); }
.workspace-evidence > div:last-child { display: grid; gap: 3px; }
.workspace-evidence > div:last-child b { font-size: 20px; font-weight: 400; }
.workspace-evidence > div:last-child small { color: #52657d; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; }

.spatial-run { position: absolute; z-index: 7; left: 50%; bottom: 3.2%; width: min(390px, 30vw); transform: translateX(-50%); }
.workspace-signal-rail { position: absolute; z-index: 6; left: 5%; right: 5%; bottom: 3.5%; display: flex; justify-content: space-between; pointer-events: none; }
.workspace-signal-rail span { display: flex; align-items: center; gap: 6px; color: #53677e; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; }
.workspace-signal-rail span:nth-child(2),
.workspace-signal-rail span:nth-child(3) { visibility: visible; }
.workspace-signal-rail i { width: 3px; height: 3px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 7px var(--accent); }
.workspace-signal-rail b { color: #8294aa; font-weight: 400; }

.solution-spatial-focus {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 41%;
  width: min(660px, 51vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
}
.solution-spatial-focus > strong { position: absolute; z-index: -1; left: 50%; top: 50%; color: rgba(var(--accent-rgb), .055); font-size: clamp(180px, 24vw, 430px); font-weight: 250; line-height: .7; transform: translate(-50%, -50%); text-shadow: 0 0 80px rgba(var(--accent-rgb), .09); }
.solution-spatial-focus > span { margin-top: 8px; color: #8b9db0; }
.solution-spatial-focus h2 { margin: 12px 0; font-size: clamp(38px, min(4vw, 6.5vh), 70px); font-weight: 520; line-height: 1; letter-spacing: -.06em; }
.solution-spatial-focus p { max-width: 500px; margin: 0; color: #76889d; font-size: clamp(8px, .68vw, 11px); line-height: 1.8; }
.solution-spatial-focus > em { margin-top: 10px; color: var(--accent); font-style: normal; }
.spatial-action { margin-top: clamp(16px, 2.4vh, 25px); padding: 10px 17px; border: 1px solid rgba(var(--accent-rgb), .35); border-radius: 99px; background: rgba(4, 10, 23, .55); color: #dbe8f5; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; cursor: pointer; }
.spatial-action i { margin-left: 14px; color: var(--accent); font-style: normal; }

.solution-model-cloud { position: absolute; z-index: 6; left: 50%; bottom: 19%; display: flex; gap: clamp(65px, 10vw, 175px); transform: translateX(-50%); }
.solution-model-cloud > span { position: relative; display: grid; place-items: center; width: clamp(43px, 3.8vw, 62px); aspect-ratio: 1; border: 1px solid color-mix(in srgb, var(--model-color), transparent 45%); border-radius: 50%; background: rgba(5, 12, 28, .86); box-shadow: 0 0 25px color-mix(in srgb, var(--model-color), transparent 77%); }
.solution-model-cloud > span:nth-child(2) { transform: translateY(17px); }
.solution-model-cloud img { width: 43%; height: 43%; filter: drop-shadow(0 0 7px color-mix(in srgb, var(--model-color), transparent 42%)); }
.solution-model-cloud b { position: absolute; top: calc(100% + 7px); color: #7d8fa5; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; font-weight: 400; white-space: nowrap; }

.solution-delivery { position: absolute; z-index: 6; right: 6%; top: 28%; width: min(220px, 15vw); transform: perspective(800px) rotateY(-14deg) rotateZ(1.5deg); transform-origin: right center; }
.solution-delivery > span { color: var(--accent); font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .13em; }
.solution-delivery > div { display: grid; gap: 12px; margin-top: 17px; }
.solution-delivery b { display: flex; align-items: center; gap: 9px; color: #8294a9; font-size: 8px; font-weight: 400; }
.solution-delivery b::before { width: 5px; height: 5px; content: ""; border: 1px solid var(--accent); transform: rotate(45deg); }

.spatial-solution-selector { position: absolute; z-index: 7; left: 50%; bottom: 3.7%; width: min(780px, 63vw); height: 48px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; border: 0; background: transparent; transform: translateX(-50%); }
.spatial-solution-selector .solution-tab { min-height: 48px; display: grid; grid-template-columns: 25px 1fr; grid-template-rows: 1fr 1fr; padding: 5px 10px; border: 0; border-top: 1px solid rgba(var(--accent-rgb), .12); }
.spatial-solution-selector .solution-tab::before { left: 14%; right: 14%; top: -1px; bottom: auto; width: auto; height: 1px; }

.about-manifesto { position: absolute; z-index: 6; left: 7%; top: 19.5%; width: min(390px, 28vw); transform: none; transform-origin: left center; }
.about-manifesto > span { color: var(--accent); font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .15em; }
.about-manifesto h2 { margin: 15px 0 17px; font-size: clamp(30px, 2.8vw, 50px); font-weight: 520; line-height: 1.15; letter-spacing: -.055em; }
.about-manifesto p { color: #74869b; font-size: clamp(8px, .66vw, 11px); line-height: 1.9; }

.about-contact {
  position: absolute;
  z-index: 7;
  left: 7%;
  top: auto;
  bottom: 22.5%;
  width: min(560px, 38vw);
  min-height: 0;
  padding: 0 0 10px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  transform: none;
  transform-origin: left center;
}
.about-contact::before {
  position: absolute;
  left: 46px;
  right: 0;
  top: -9px;
  width: auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(var(--accent-rgb), .72), rgba(124, 92, 255, .42), transparent 84%);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), .42);
}
.about-contact::after {
  position: absolute;
  left: 46px;
  top: -10px;
  width: 72px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(145, 244, 255, .88), transparent);
  box-shadow: 0 0 12px rgba(88, 226, 255, .46);
  animation: contactSweep 6.8s ease-in-out infinite;
  pointer-events: none;
}
.about-contact-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 11px; }
.about-contact-signal { position: relative; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(var(--accent-rgb), .42); border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb), .2), rgba(3, 14, 30, .9) 68%); box-shadow: 0 0 18px rgba(var(--accent-rgb), .16); }
.about-contact-signal::before,
.about-contact-signal::after,
.about-contact-signal i { position: absolute; border-radius: 50%; content: ""; }
.about-contact-signal::before { inset: 5px; border: 1px dashed rgba(var(--accent-rgb), .52); animation: contactSignalSpin 7s linear infinite; }
.about-contact-signal::after { width: 6px; height: 6px; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.about-contact-signal i { inset: -4px; border: 1px solid rgba(var(--accent-rgb), .18); animation: contactPulse 2.4s ease-out infinite; }
.about-contact-heading small { display: block; margin-bottom: 4px; color: var(--accent); font: 650 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .14em; }
.about-contact-heading h3 { margin: 0; color: #eff8ff; font-size: clamp(18px, 1.35vw, 25px); font-weight: 560; letter-spacing: -.025em; }
.about-contact-heading > b { display: flex; align-items: center; gap: 6px; color: #7edfbf; font-size: 10px; font-weight: 500; white-space: nowrap; }
.about-contact-heading > b::before { width: 5px; height: 5px; content: ""; border-radius: 50%; background: #49e7ba; box-shadow: 0 0 9px #49e7ba; }
.about-contact > p { position: relative; z-index: 1; margin: 11px 0 12px; color: #91a5ba; font-size: clamp(10px, .72vw, 12px); line-height: 1.65; }
.about-contact-actions { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 7px; }
.about-contact-email { min-width: 0; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 10px; min-height: 40px; padding: 0 12px; border: 1px solid rgba(var(--accent-rgb), .27); background: rgba(5, 18, 36, .72); color: #dff8ff; text-decoration: none; transition: border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.about-contact-email span { color: #6e8399; font-size: 10px; }
.about-contact-email strong { overflow: hidden; font: 600 clamp(10px, .72vw, 12px)/1 ui-monospace, SFMono-Regular, Consolas, monospace; text-overflow: ellipsis; white-space: nowrap; }
.about-contact-email i { color: var(--accent); font-size: 13px; font-style: normal; }
.about-contact-email:hover { border-color: rgba(var(--accent-rgb), .7); background: rgba(var(--accent-rgb), .11); box-shadow: 0 0 22px rgba(var(--accent-rgb), .12); }
#contactCopyEmail { min-width: 88px; padding: 0 13px; border: 1px solid rgba(var(--accent-rgb), .27); background: linear-gradient(135deg, rgba(47, 112, 255, .2), rgba(38, 223, 231, .1)); color: #a9dff2; font-size: 10px; cursor: pointer; transition: border-color .25s ease, color .25s ease, background .25s ease; }
#contactCopyEmail:hover,
#contactCopyEmail.is-copied { border-color: rgba(74, 232, 205, .66); background: rgba(55, 215, 199, .13); color: #e6fffa; }
.about-complaint-link {
  min-width: 0;
  min-height: 38px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  border: 1px solid rgba(var(--accent-rgb), .27);
  background: linear-gradient(135deg, rgba(47, 112, 255, .14), rgba(38, 223, 231, .07));
  color: #b9dceb;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  white-space: normal;
  transition: border-color .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease;
}
.about-complaint-link:hover,
.about-complaint-link:focus-visible {
  border-color: rgba(74, 232, 205, .66);
  background: rgba(55, 215, 199, .11);
  color: #edfffb;
  box-shadow: 0 0 22px rgba(var(--accent-rgb), .12);
}
.about-contact-topics { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.about-contact-topics span { padding: 5px 9px; border: 1px solid rgba(var(--accent-rgb), .24); background: rgba(8, 25, 45, .52); color: #b5c8d9; font-size: 11px; font-weight: 620; line-height: 1; letter-spacing: .025em; }

.about-spatial-core { position: absolute; z-index: 5; left: 61%; top: 46%; width: min(570px, 41vw); aspect-ratio: 1; transform: translate(-50%, -50%); }
.about-core-rings,
.about-core-rings i { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(var(--accent-rgb), .18); border-radius: 50%; transform: translate(-50%, -50%) rotateX(64deg); }
.about-core-rings { width: 100%; height: 100%; border: 0; }
.about-core-rings i:nth-child(1) { width: 39%; height: 39%; border-color: rgba(var(--accent-rgb), .5); }
.about-core-rings i:nth-child(2) { width: 58%; height: 58%; border-style: dashed; animation: aboutOrbit 20s linear infinite; }
.about-core-rings i:nth-child(3) { width: 78%; height: 78%; border-color: rgba(140, 89, 255, .25); animation: aboutOrbit 29s linear infinite reverse; }
.about-core-rings i:nth-child(4) { width: 98%; height: 98%; border-style: dotted; opacity: .52; }
.about-core-logo { position: absolute; z-index: 5; left: 50%; top: 50%; width: clamp(115px, 10vw, 170px); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(var(--accent-rgb), .54); border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb), .25), rgba(4, 13, 29, .94) 69%); box-shadow: 0 0 85px rgba(var(--accent-rgb), .27), inset 0 0 30px rgba(var(--accent-rgb), .14); transform: translate(-50%, -50%); }
.about-core-logo img { width: 88%; height: 88%; object-fit: contain; filter: brightness(1.65) saturate(1.08) drop-shadow(0 0 12px rgba(var(--accent-rgb), .42)); }
.about-core-logo span { position: absolute; bottom: 18%; color: #657990; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .13em; }
.about-layer { position: absolute; min-width: 135px; display: grid; grid-template-columns: 25px 1fr; grid-template-rows: 1fr 1fr; padding: 7px 10px; border: 1px solid rgba(var(--accent-rgb), .17); border-radius: 30px; background: rgba(5, 13, 28, .66); color: #8496aa; text-align: left; cursor: default; }
.about-layer small { grid-row: 1 / 3; align-self: center; color: var(--accent); font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; }
.about-layer b { font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .08em; }
.about-layer em { color: #4f6279; font-size: 6px; font-style: normal; }
.layer-one { left: 9%; top: 25%; }.layer-two { right: 1%; top: 34%; }.layer-three { right: 5%; bottom: 20%; }.layer-four { left: 5%; bottom: 16%; }

.about-principles { position: absolute; z-index: 6; left: 7%; bottom: 16%; display: flex; gap: 10px; }
.about-view .about-principles span { padding: 7px 11px; border: 1px solid rgba(var(--accent-rgb), .3); background: rgba(6, 20, 39, .62); color: #d3e0eb; font: 650 11px/1 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .045em; }
.about-stats { position: absolute; z-index: 6; right: 6%; top: 24%; display: grid; gap: 15px; transform: perspective(850px) rotateY(-13deg); transform-origin: right center; }
.about-stats span { display: grid; justify-items: end; }
.about-stats b { font-size: clamp(22px, 2.2vw, 40px); font-weight: 350; letter-spacing: -.05em; }
.about-stats small { color: #52667e; font: 5px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }

.about-site-info {
  position: absolute;
  z-index: 8;
  left: 6%;
  right: 6%;
  bottom: 2.4%;
  min-height: 62px;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  border-top: 1px solid rgba(var(--accent-rgb), .24);
  border-bottom: 1px solid rgba(var(--accent-rgb), .08);
  background: linear-gradient(90deg, rgba(4, 14, 30, .9), rgba(5, 22, 42, .7), rgba(4, 14, 30, .9));
  box-shadow: 0 -16px 34px rgba(2, 12, 26, .24);
}
.about-site-info > span {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 9px 15px;
  border-left: 1px solid rgba(var(--accent-rgb), .1);
}
.about-site-info > span:first-child { border-left: 0; }
.about-site-info b {
  color: var(--accent);
  font: 700 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .13em;
}
.about-site-info em,
.about-site-info a {
  color: #d0dfec;
  font-size: 12px;
  font-weight: 520;
  font-style: normal;
  text-decoration: none;
}
.about-site-info a:hover { color: #eafaff; }

@keyframes aboutOrbit {
  to { transform: translate(-50%, -50%) rotateX(64deg) rotateZ(360deg); }
}
@keyframes contactPulse {
  0% { opacity: .8; transform: scale(.7); }
  75%, 100% { opacity: 0; transform: scale(1.35); }
}
@keyframes contactSignalSpin {
  to { transform: rotate(360deg); }
}
@keyframes contactSweep {
  0%, 68% { opacity: 0; transform: translateX(0); }
  72% { opacity: 1; }
  94%, 100% { opacity: 0; transform: translateX(520%); }
}

.command-footer {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--footer-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 2.5vw, 48px);
  border-top: 1px solid rgba(91, 143, 203, .13);
  background: rgba(2, 6, 14, .9);
  color: #3f5067;
  font: 6px ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .12em;
}
.command-footer > span { display: flex; align-items: center; gap: 7px; }
.command-footer > span:last-child { justify-self: end; }
.command-footer > span i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.command-footer nav { display: flex; align-items: center; gap: 6px; }
.command-footer button { position: relative; width: 25px; height: 20px; padding: 0; background: transparent; color: #3e4e65; font: 6px ui-monospace, SFMono-Regular, Consolas, monospace; cursor: pointer; }
.command-footer button::after { position: absolute; left: 50%; bottom: -6px; width: 4px; height: 4px; content: ""; border: 1px solid var(--accent); opacity: 0; transform: translateX(-50%) rotate(45deg); }
.command-footer button:hover,
.command-footer button.is-active { color: var(--accent); }
.command-footer button.is-active::after { opacity: 1; }

/* Public homepage readability pass */
.brand b { font-size: 10px; }
.brand small { color: #a8bbcd; font-size: 9px; }
.deck-nav button {
  min-width: clamp(74px, 5.8vw, 104px);
  padding: 16px 10px 11px;
  color: #c1d0de;
}
.deck-nav b { display: none; }
.deck-nav small {
  margin-bottom: 5px;
  color: #7fa9c6;
  font-size: 9px;
  font-weight: 600;
}
.deck-nav span {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: .06em;
  white-space: nowrap;
}
.header-quicklinks a { color: #d6e3ee; font-size: 13px; }
.header-telemetry > span b,
.header-telemetry em { color: #c3d2df; font-size: 12px; }
.header-telemetry > span small { font-size: 11px; }
.screen-coordinate,
.eyebrow,
.hero-protocols,
.screen-heading > div,
.telemetry-title small { color: #a8bbcd; font-size: 10px; font-weight: 550; }
.screen-coordinate { color: #8499ad; }
.eyebrow {
  color: #a8bbcd;
  font-size: 11px;
  font-weight: 550;
  letter-spacing: .12em;
}
#heroCatalogCount { display: none; }
.hero-command > p {
  color: #c8d5e1;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.75;
}
.hero-route-map { padding: 12px 14px; }
.hero-route-map small {
  color: #a2b5c7;
  font-size: 11px;
  font-weight: 550;
}
.hero-route-map b { color: #edf5fc; font-size: 15px; }
.primary-action,
.secondary-action {
  font-size: 17px;
  font-weight: 650;
  letter-spacing: .02em;
}
.secondary-action { color: #d5e2ed; }
.hero-login-copy small { color: #a8bed1; font-size: 10px; }
.hero-login-copy b { font-size: 16px; }
.hero-login-trigger > i { font-size: 10px; }
.hero-protocols {
  color: #a4b7c9;
  font-size: 11px;
  font-weight: 550;
  letter-spacing: .09em;
}
.home-scroll-cue { color: #c4d3e0; font-size: 12px; font-weight: 600; white-space: nowrap; }
.field-label {
  color: #b8c9d8;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .1em;
}
.field-label b { color: #edf5fc; font-size: 15px; font-weight: 650; }
.screen-heading > div { letter-spacing: .13em; }

.model-node-label {
  padding: 5px 8px;
  background: rgba(2, 8, 19, .96);
  color: #edf7ff;
  font-size: 9px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35), 0 0 15px color-mix(in srgb, var(--model-color), transparent 83%);
}
.portal-copy small { color: #94a6bb; font-size: 8px; }
.node-inspector > span,
.node-inspector small,
.node-inspector em { font-size: 12px; }
.node-inspector { opacity: .9; }
.node-inspector small { color: #c0cfdb; }
.node-inspector b { color: #f4f9fd; font-size: 15px; font-weight: 650; }
.node-inspector em { color: #d6e2ec; }

.home-view .telemetry-title span {
  color: #afc1d1;
  font-size: 12px;
  font-weight: 650;
}
.home-view .telemetry-title small { color: #c0cfdb; font-size: 11px; font-weight: 550; }
.home-view .telemetry-strip article small {
  color: #b5c5d4;
  font-size: 12px;
  font-weight: 500;
}

.plaza-console { grid-template-rows: minmax(0, 1fr) clamp(78px, 9.5vh, 96px); }
.screen-heading > p { color: #a5b6c8; font-size: clamp(11px, .76vw, 14px); }
.module-label { height: 42px; color: #d4e1ec; font-size: 11px; font-weight: 650; }
.module-label b { color: #8da0b6; }
.model-locator > small { margin-top: 3px; color: #b2c2d2; font-size: 10px; font-weight: 600; }
.locator-status { color: #a6b7c9; font-size: 10px; font-weight: 500; }
.locator-status b { color: #b8c9d9; }
.filter-stack { gap: 5px; }
.filter-stack button { min-height: 52px; padding: 7px 10px; }
.filter-stack button > span { color: #93a6bb; font-size: 10px; font-weight: 500; }
.filter-stack button b { font-size: 13px; font-weight: 600; }
.filter-stack button small { color: #a5b7c9; font-size: 10px; font-weight: 500; }
.plaza-model-node span {
  max-width: 126px;
  padding: 5px 8px;
  border-color: rgba(96, 176, 238, .28);
  background: rgba(2, 8, 19, .96);
  color: #dceaff;
  font-size: 9px;
  font-weight: 600;
  box-shadow: 0 7px 18px rgba(0, 0, 0, .32);
}
.selected-model-core small { color: #b2c3d4; font-size: 10px; font-weight: 500; }
.selected-model-core > b { font-size: 11px; }
.reactor-readout { color: #adbdcd; font-size: 10px; font-weight: 500; }
.reactor-readout b { color: #eef6fd; font-size: 11px; }
.model-title small { font-size: 11px; font-weight: 600; }
.model-title p { color: #c0cedb; font-size: clamp(13px, .82vw, 15px); }
.variant-caption { color: #b9c8d6; font-size: 10px; font-weight: 600; }
.variant-scroll-track > button b { font-size: 11px; }
.variant-scroll-track > button small { color: #9fb1c4; font-size: 9px; }
.billing-mode span { font-size: 11px; }
.billing-mode small { color: #a9bacb; font-size: 10px; }
.model-pricing small,
.model-specs small,
.capability-tags span,
.cost-lens label small,
.cost-lens > div small { color: #c0cedb; font-size: 11px; font-weight: 550; }
.model-specs { padding-top: 13px; }
.model-specs b { color: #eef6ff; font-size: 13px; }
.capability-tags { gap: 7px; padding-top: 8px; }
.capability-tags span { padding: 5px 8px; color: #c2d1df; }
.cost-lens { padding: 13px 14px; }
.cost-lens > span { color: #d2dee9; font-size: 11px; font-weight: 600; }
.cost-lens label { margin: 8px 0; }
.cost-lens label b { color: #edf5fc; font-size: 10px; }
.cost-lens > div b { font-size: 22px; }
.ticker-model { grid-template-columns: 28px 1fr; gap: 1px 8px; padding: 7px 10px; }
.ticker-model img { width: 21px; height: 21px; opacity: .82; }
.ticker-model b { color: #c3d2e0; font-size: 10px; }
.ticker-model small { color: #9dafc2; font-size: 9px; font-weight: 500; }

.portal-index { font-size: 9px; }
.portal-copy b { font-size: 12px; }
.telemetry-title span,
.telemetry-title small { color: #9caec1; font-size: 9px; font-weight: 500; }
.telemetry-strip article small { color: #9aacc0; font-size: 10px; }
.login-trigger-copy small { color: #a9bfd2; font-size: 9px; }
.login-channel,
.login-submit b,
.login-form-status { color: #91a5bb; font-size: 11px; font-weight: 500; }

.objective-console > span,
.telemetry-console > span,
.objective-console > small,
.objective-card > span,
.evidence-panel > span,
.evidence-score small,
.delivery-protocol > span,
.manifesto-panel > span { color: #a2b4c7; font-size: 9px; font-weight: 500; }
.objective-console > div b,
.objective-card i,
.agent-event small,
.agent-event > i,
.run-next span,
.run-next b,
.evidence-panel li,
.evidence-panel li b,
.protocol-strip article span,
.protocol-strip article b,
.protocol-strip article small,
.solution-core span,
.solution-node span,
.solution-hud > small,
.solution-model-list b,
.delivery-protocol b,
.manifesto-panel > div b,
.system-orbit span,
.system-logo small,
.vision-panel li > span,
.vision-panel li > b,
.vision-panel li small,
.vision-stats small { font-size: 9px; }
.agent-event b { font-size: 11px; }
.agent-event small,
.evidence-panel li,
.solution-model-list b,
.vision-panel li small { color: #95a8bd; }
.run-next span,
.run-next b { font-weight: 500; }
.command-footer { color: #8497ae; font-size: 9px; }
.command-footer button { color: #8295ac; font-size: 9px; }

.spatial-index { font-size: 9px; font-weight: 500; }
.spatial-index small { color: #99abc0; }
.spatial-index b { color: #879ab0; }
.spatial-center-copy > small,
.solution-spatial-focus > small,
.solution-spatial-focus > span,
.solution-spatial-focus > em { font-size: 9px; font-weight: 500; }
.spatial-center-copy p,
.solution-spatial-focus p,
.about-manifesto p { color: #a5b6c8; font-size: clamp(11px, .76vw, 14px); }
.spatial-float { color: #b2c2d2; font-size: 9px; font-weight: 500; }
.orchestration-objective b { font-size: 9px; }
.orchestration-telemetry small { color: #95a8bd; }
.spatial-route-node > span,
.spatial-route-node .pipeline-state { color: #9bacc0; font-size: 9px; }
.spatial-route-node h3 { font-size: clamp(12px, .9vw, 16px); }
.spatial-protocols i,
.spatial-protocols b,
.spatial-protocols small { font-size: 9px; }
.spatial-protocols small { color: #93a6bb; }
.project-rail > span,
.project-rail button > small,
.project-rail button em { font-size: 9px; }
.project-rail > span,
.project-rail button em { color: #93a6bb; }
.project-rail button > b { font-size: 12px; }
.memory-node > span:nth-child(2) b { font-size: 11px; }
.memory-node > span:nth-child(2) small,
.memory-node > i { color: #91a5bb; font-size: 9px; }
.memory-node > i { color: var(--green); }
.workspace-evidence > span,
.evidence-orbit small,
.workspace-evidence > div:last-child small,
.workspace-signal-rail span { color: #93a6bb; font-size: 9px; }
.spatial-action { font-size: 9px; }
.solution-model-cloud b { color: #b5c5d5; font-size: 9px; }
.solution-delivery > span { font-size: 9px; }
.solution-delivery b { color: #b3c3d3; font-size: 10px; }
.solution-tab span,
.solution-tab small { font-size: 9px; }
.solution-tab small { color: #91a4ba; }
.solution-tab b { font-size: clamp(10px, .78vw, 13px); }
.about-manifesto > span,
.about-core-logo span,
.about-layer small,
.about-layer b,
.about-layer em,
.about-principles span,
.about-stats small { font-size: 9px; }
.about-core-logo span,
.about-layer em,
.about-principles span,
.about-stats small { color: #91a5bb; }
.command-footer { color: #71859c; font-size: 8px; }
.command-footer button { color: #71849b; font-size: 8px; }

/* Spatial pages: functional text must remain readable */
.orchestration-view .spatial-index,
.workspace-view .spatial-index,
.about-view .spatial-index {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .1em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .72);
}
.orchestration-view .spatial-index small,
.workspace-view .spatial-index small,
.about-view .spatial-index small { color: #c8d5e1; }
.orchestration-view .spatial-index b,
.workspace-view .spatial-index b,
.about-view .spatial-index b { color: #bdcbd8; }

.spatial-center-copy > small,
.solution-spatial-focus > small,
.solution-spatial-focus > span,
.solution-spatial-focus > em {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-shadow: 0 1px 13px rgba(0, 0, 0, .72);
}
.spatial-center-copy p,
.solution-spatial-focus p,
.about-manifesto p {
  color: #bdcbd8;
  font-size: clamp(13px, .82vw, 16px);
  line-height: 1.72;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .78);
}

.spatial-float {
  color: #d0dfec;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .07em;
}
.orchestration-objective p { color: #d7e2eb; font-size: clamp(14px, .88vw, 17px); font-weight: 520; }
.orchestration-objective b { color: #e0e9f1; font-size: 12px; font-weight: 600; }
.orchestration-telemetry small { color: #c1d0de; font-size: 12px; }
.orchestration-telemetry b,
.orchestration-telemetry em { color: #c8d5e1; font-size: 12px; font-weight: 600; }
.spatial-route-node > span,
.spatial-route-node .pipeline-state {
  color: #b1c1d1;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
}
.spatial-route-node h3 { font-size: clamp(13px, .94vw, 17px); }
.spatial-protocols i,
.spatial-protocols b,
.spatial-protocols small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
}
.spatial-protocols b { color: #e0e9f1; }
.spatial-protocols small { color: #c1d0de; }

.workspace-thread-nav { width: min(280px, 19vw); }
.workspace-thread-nav > span {
  color: #adbdce;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
}
.workspace-thread-nav button { min-height: 62px; }
.project-rail button > small {
  color: #98abc0;
  font-size: 10px;
  font-weight: 600;
}
.project-rail button > b {
  color: #d0dbe6;
  font-size: 13px;
  font-weight: 600;
}
.project-rail button em {
  color: #9eb0c3;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .04em;
}
.project-rail button.is-active > b { color: #f2f8ff; }

.workspace-memory-flow { left: 25%; right: 21%; }
.memory-node { gap: 8px; }
.memory-node .mini-mark { width: 36px; height: 36px; }
.memory-node > span:nth-child(2) b {
  color: #edf5fc;
  font-size: 12px;
  font-weight: 600;
}
.memory-node > span:nth-child(2) small {
  color: #b0c0d0;
  font-size: 10px;
  line-height: 1.45;
}
.memory-node > i {
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
}

.workspace-evidence { width: min(225px, 16vw); }
.workspace-evidence > span {
  color: #b8c8d8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}
.evidence-orbit small,
.workspace-evidence > div:last-child small {
  color: #aec0d1;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
}
.workspace-evidence > div:last-child b { color: #f4f8ff; font-size: 24px; }

.spatial-run {
  width: min(500px, 36vw);
  min-height: 42px;
  padding-inline: 17px;
}
.spatial-run span,
.spatial-run b {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
}
.workspace-signal-rail span {
  color: #a9bbcc;
  font-size: 10px;
  font-weight: 550;
}
.workspace-signal-rail b { color: #d2dde7; }

.solution-model-cloud b { color: #c3d1df; font-size: 10px; font-weight: 600; }
.solution-delivery > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}
.solution-delivery b { color: #c2cfdd; font-size: 11px; }
.spatial-action { font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.spatial-solution-selector .solution-tab span,
.spatial-solution-selector .solution-tab small { font-size: 10px; }
.spatial-solution-selector .solution-tab b { font-size: clamp(12px, .82vw, 14px); }

.about-manifesto > span,
.about-core-logo span,
.about-layer small,
.about-layer b,
.about-layer em,
.about-principles span,
.about-stats small {
  font-size: 10px;
  font-weight: 550;
  letter-spacing: .06em;
}
.about-core-logo span,
.about-layer em,
.about-principles span,
.about-stats small { color: #aebfd0; }
.about-layer b { color: #d4dfe9; }

/* Functional information stays front-facing and readable at scaled viewport sizes. */
.workspace-view .spatial-index { font-size: 13px; }
.workspace-view .workspace-thread-nav {
  width: min(310px, 21vw);
  transform: none;
}
.workspace-view .workspace-thread-nav > span {
  color: #c7d5e2;
  font-size: 12px;
  font-weight: 650;
}
.workspace-view .workspace-thread-nav button { min-height: 68px; }
.workspace-view .project-rail button > small {
  color: #b7c9da;
  font-size: 11px;
  font-weight: 650;
}
.workspace-view .project-rail button > b {
  color: #e2ebf3;
  font-size: 15px;
  font-weight: 650;
}
.workspace-view .project-rail button em {
  color: #b5c5d4;
  font-size: 11px;
  font-weight: 600;
}
.workspace-view .memory-node > span:nth-child(2) b {
  color: #f4f9fd;
  font-size: 15px;
  font-weight: 650;
}
.workspace-view .memory-node > span:nth-child(2) small {
  color: #c2cfdb;
  font-size: 12px;
  font-weight: 550;
}
.workspace-view .memory-node > i {
  font-size: 11px;
  font-weight: 650;
}
.workspace-view .workspace-evidence > span { font-size: 12px; }
.workspace-view .evidence-orbit small,
.workspace-view .workspace-evidence > div:last-child small { font-size: 11px; }

/* About: keep the spatial composition while making every content label easy to scan. */
.about-manifesto > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
}
.about-manifesto p {
  color: #d0dfec;
  font-size: clamp(15px, .94vw, 18px);
  font-weight: 500;
}
.about-contact-heading small { font-size: 12px; }
.about-contact-heading > b { color: #94ead0; font-size: 12px; font-weight: 650; }
.about-contact > p { color: #c8d5e1; font-size: clamp(13px, .82vw, 16px); font-weight: 500; }
.about-contact-email span { color: #b6c7d6; font-size: 12px; font-weight: 600; }
.about-contact-email strong { color: #edf5fc; font-size: clamp(12px, .8vw, 14px); }
#contactCopyEmail { color: #c7eaf6; font-size: 12px; font-weight: 650; }
.about-contact-topics span { color: #d8e4ed; font-size: 13px; }
.about-core-logo span { color: #b7c8d7; font-size: 11px; font-weight: 650; }
.about-layer {
  grid-template-columns: 28px 1fr;
  color: #c8d5e1;
}
.about-layer small { font-size: 11px; font-weight: 650; }
.about-layer b { color: #edf5fc; font-size: 12px; font-weight: 650; }
.about-layer em { color: #b6c6d5; font-size: 11px; font-weight: 550; }
.about-view .about-principles span { color: #e5eef5; font-size: 13px; }
.about-stats b { color: #f3f8fc; font-weight: 430; }
.about-stats small { color: #c8d5e1; font-size: 13px; font-weight: 650; }
.about-site-info b { font-size: 12px; }
.about-site-info em,
.about-site-info a { color: #e0e9f1; font-size: 14px; font-weight: 560; }

.solutions-view .solution-delivery {
  width: min(300px, 20vw);
  transform: none;
}
.solutions-view .solution-delivery > span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
}
.solutions-view .solution-delivery > div {
  gap: 15px;
  margin-top: 19px;
}
.solutions-view .solution-delivery b {
  gap: 11px;
  color: #e0e8f1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.solutions-view .solution-delivery b::before { width: 7px; height: 7px; }

.app[data-performance-tier="balanced"] .command-header {
  background: linear-gradient(180deg, rgba(3, 7, 15, .97), rgba(3, 7, 15, .88));
  backdrop-filter: none;
}
.app[data-performance-tier="balanced"] .noise-layer {
  opacity: .042;
  mix-blend-mode: normal;
}
.app[data-performance-tier="balanced"] .model-node {
  box-shadow:
    0 7px 14px rgba(0, 0, 0, .56),
    0 0 11px color-mix(in srgb, var(--model-color), transparent 76%),
    inset -8px -10px 14px rgba(0, 0, 0, .73);
}
.app[data-performance-tier="balanced"] .model-node img {
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, .52));
}
.app[data-performance-tier="balanced"] .core-pulse { box-shadow: 0 0 38px rgba(var(--cyan-rgb), .17); }
.app[data-performance-tier="balanced"] .core-logo img {
  filter: brightness(1.4) saturate(1.02) drop-shadow(0 4px 4px rgba(0, 0, 0, .54));
}
.app[data-performance-tier="balanced"] .reactor-nebula i { mix-blend-mode: normal; }

.app[data-performance-tier="low"] .command-header {
  background: rgba(3, 7, 15, .94);
  backdrop-filter: none;
}
.app[data-performance-tier="low"] .noise-layer {
  opacity: .028;
  mix-blend-mode: normal;
}
.app[data-performance-tier="low"] .login-scrim { backdrop-filter: none; }
.app[data-performance-tier="low"] .reactor-nebula i,
.app[data-performance-tier="low"] .system-logo img { mix-blend-mode: normal; }
.app[data-performance-tier="low"] .core-pulse { box-shadow: 0 0 25px rgba(var(--cyan-rgb), .13); }
.app[data-performance-tier="low"] .core-logo img {
  filter: brightness(1.34) saturate(1.02) drop-shadow(0 4px 4px rgba(0, 0, 0, .55));
}
.app[data-performance-tier="low"] .model-node {
  box-shadow:
    0 7px 13px rgba(0, 0, 0, .56),
    0 0 10px color-mix(in srgb, var(--model-color), transparent 76%),
    inset -8px -9px 13px rgba(0, 0, 0, .74);
}
.app[data-performance-tier="low"] .model-node img,
.app[data-performance-tier="low"] .plaza-model-node img,
.app[data-performance-tier="low"] .ticker-model img {
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, .5));
}
.app[data-performance-tier="low"] .view.is-active.is-leaving {
  animation-name: deckDepartureLite;
}
.app[data-performance-tier="low"] .view.is-active.is-entering.is-entering-active {
  animation-name: deckArrivalLite;
}

@keyframes deckArrivalLite {
  0% { opacity: 0; transform: translate3d(var(--entry-shift-x, 5vw), 24px, -180px) rotateY(var(--entry-tilt-y, -7deg)) scale(.93); }
  58% { opacity: .84; transform: translate3d(1vw, -3px, -20px) rotateY(-1deg) scale(1.006); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotateY(0) scale(1); }
}

@keyframes deckDepartureLite {
  0% { opacity: 1; transform: translate3d(0, 0, 0) rotateY(0) scale(1); }
  100% { opacity: 0; transform: translate3d(-3vw, -12px, -150px) rotateY(6deg) scale(.95); }
}

@keyframes loginScan {
  0%, 100% { opacity: .18; transform: translateX(-72%); }
  50% { opacity: .9; transform: translateX(72%); }
}

@keyframes loginOrbit { to { transform: rotate(360deg); } }

@keyframes deckArrival {
  0% {
    opacity: 0;
    filter: brightness(.42) saturate(.55) contrast(1.12);
    transform: translate3d(var(--entry-shift-x), 30px, -620px) rotateX(12deg) rotateY(var(--entry-tilt-y)) scale(.84);
  }
  28% {
    opacity: 0;
    filter: brightness(.65) saturate(.75) contrast(1.08);
  }
  42% {
    opacity: .2;
  }
  64% {
    opacity: .86;
    filter: brightness(1.2) saturate(1.28) contrast(1.04);
    transform: translate3d(var(--entry-mid-shift-x), -8px, -85px) rotateX(2.8deg) rotateY(var(--entry-mid-tilt-y)) scale(.97);
  }
  82% {
    opacity: 1;
    filter: brightness(1.1) saturate(1.1) contrast(1.02);
    transform: translate3d(0, 0, 22px) rotateX(-.7deg) rotateY(var(--entry-overshoot-y)) scale(1.012);
  }
  100% {
    opacity: 1;
    filter: brightness(1) saturate(1) contrast(1);
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) scale(1);
  }
}

@keyframes deckDeparture {
  0% {
    opacity: 1;
    filter: brightness(1) saturate(1);
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) scale(1);
  }
  18% {
    opacity: .72;
    filter: brightness(.78) saturate(.78);
    transform: translate3d(var(--exit-mid-shift-x), -2px, -55px) rotateX(-1.2deg) rotateY(var(--entry-overshoot-y)) scale(.985);
  }
  42%, 100% {
    opacity: 0;
    filter: brightness(.32) saturate(.5);
    transform: translate3d(var(--exit-shift-x), -25px, -520px) rotateX(-8deg) rotateY(var(--exit-tilt-y)) scale(.8);
  }
}

.locale-control { position: relative; }
.locale-trigger {
  min-width: 52px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
  border: 1px solid rgba(var(--accent-rgb), .3);
  background: rgba(3, 12, 25, .88);
  color: #c4d5e5;
  cursor: pointer;
  font: 650 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  white-space: nowrap;
}
.locale-trigger:hover,
.locale-trigger[aria-expanded="true"] { border-color: rgba(var(--accent-rgb), .7); color: #fff; box-shadow: 0 0 18px rgba(var(--accent-rgb), .12); }
.locale-trigger b { color: var(--accent); font-size: 10px; }
.locale-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 8px);
  right: 0;
  width: 210px;
  max-height: 360px;
  padding: 7px;
  overflow: auto;
  border: 1px solid rgba(var(--accent-rgb), .46);
  background: rgba(2, 8, 19, .985);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .58), 0 0 28px rgba(var(--accent-rgb), .12);
}
.locale-menu[hidden] { display: none; }
.locale-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #afc0d1;
  cursor: pointer;
  font: 11px/1.2 Inter, "Microsoft YaHei", sans-serif;
  text-align: left;
}
.locale-menu button:hover,
.locale-menu button[aria-current="true"] { border-color: rgba(var(--accent-rgb), .3); background: rgba(var(--accent-rgb), .08); color: #fff; }
.locale-menu button small { color: var(--accent); font: 8px/1 ui-monospace, SFMono-Regular, Consolas, monospace; }

.catalog-currency { display: flex; align-items: center; gap: 6px; padding: 8px 14px 0; }
.catalog-currency small { margin-left: auto; color: #7f91a5; font: 8px/1 ui-monospace, SFMono-Regular, Consolas, monospace; }
.catalog-tier-list { margin: 8px 14px 0; max-height: 112px; overflow: auto; border: 1px solid rgba(var(--accent-rgb), .18); background: rgba(2, 8, 18, .58); }
.catalog-tier-list[hidden] { display: none; }
.catalog-tier-row { display: grid; grid-template-columns: minmax(90px, 1.2fr) repeat(4, minmax(64px, 1fr)); gap: 6px; padding: 7px 8px; border-bottom: 1px solid rgba(var(--accent-rgb), .1); color: #c4d3e1; font: 8px/1.35 ui-monospace, SFMono-Regular, Consolas, monospace; }
.catalog-tier-row:last-child { border-bottom: 0; }
.catalog-tier-row span { overflow-wrap: anywhere; }
.catalog-tier-row small { display: block; margin-bottom: 2px; color: #71869c; font-size: 7px; }
.catalog-empty-state { position: absolute; left: 50%; top: 50%; width: min(360px, 76%); padding: 18px; border: 1px solid rgba(var(--accent-rgb), .3); background: rgba(2, 8, 18, .88); color: #9eb1c5; text-align: center; transform: translate(-50%, -50%); font-size: 11px; line-height: 1.7; }
.catalog-empty-state b { display: block; margin-bottom: 7px; color: #eef7ff; font-size: 14px; }
html[dir="rtl"] .locale-menu { right: auto; left: 0; }
html[dir="rtl"] .locale-menu button,
html[dir="rtl"] .login-field,
html[dir="rtl"] .model-hud { text-align: right; }

@keyframes nexusLightSweep {
  0% { left: -65%; opacity: 0; }
  18% { opacity: .05; }
  47% { opacity: .9; }
  72% { opacity: .34; }
  100% { left: 122%; opacity: 0; }
}

@keyframes nexusViewportPulse {
  0%, 100% { filter: brightness(1); }
  45% { filter: brightness(.72); }
  62% { filter: brightness(1.18); }
}

@keyframes sceneMaterialize {
  0%, 20% { clip-path: inset(12% 9% 12% 9% round 26px); }
  58% { clip-path: inset(2% 1.5% 2% 1.5% round 7px); }
  100% { clip-path: inset(0 0 0 0 round 0); }
}

@keyframes interfaceLockOn {
  0%, 14% { opacity: 0; translate: 0 24px; filter: brightness(.55) saturate(.7); }
  58% { opacity: .76; translate: 0 -3px; filter: brightness(1.22) saturate(1.22); }
  100% { opacity: 1; translate: 0 0; filter: brightness(1) saturate(1); }
}

@keyframes interfaceCoreRise {
  0%, 9% { opacity: 0; translate: 0 46px; scale: .84; filter: brightness(.4) saturate(.58); }
  62% { opacity: .88; translate: 0 -7px; scale: 1.025; filter: brightness(1.24) saturate(1.28); }
  100% { opacity: 1; translate: 0 0; scale: 1; filter: brightness(1) saturate(1); }
}

@keyframes interfaceDataResolve {
  0%, 18% { opacity: 0; translate: 0 18px; clip-path: inset(0 50% 0 50%); filter: brightness(.55); }
  66% { opacity: .9; translate: 0 0; clip-path: inset(0 0 0 0); filter: brightness(1.28); }
  100% { opacity: 1; translate: 0 0; clip-path: inset(0 0 0 0); filter: brightness(1); }
}

@keyframes headerScan {
  0%, 100% { transform: translateX(-70%); opacity: .1; }
  50% { transform: translateX(230%); opacity: .8; }
}

@keyframes statusPulse {
  0%, 100% { opacity: .45; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.25); }
}

@keyframes coreSpin { to { transform: rotate(360deg); } }
@keyframes reactorSpin { to { transform: translate(-50%, -50%) rotateX(63deg) rotateZ(349deg); } }

@keyframes corePulse {
  0%, 100% { opacity: .38; transform: scale(.96); }
  50% { opacity: .9; transform: scale(1.04); }
}

@keyframes coreEnergyPulse {
  0%, 100% { opacity: .56; transform: translateZ(-10px) scale(.98); }
  50% { opacity: .74; transform: translateZ(-7px) scale(1.025); }
}

@keyframes coreOrbitLink {
  0%, 100% { opacity: .28; transform: rotateX(72deg) rotateZ(-14deg) translateZ(-16px) scale(.96); }
  50% { opacity: .68; transform: rotateX(66deg) rotateZ(8deg) translateZ(-10px) scale(1.07); }
}

@keyframes coreChamberFloat {
  0%, 100% { transform: translateZ(24px) rotateX(8deg) rotateY(-10deg) translateY(1px); }
  50% { transform: translateZ(31px) rotateX(4deg) rotateY(9deg) translateY(-2px); }
}

@keyframes coreEnergyRotor {
  from { transform: translateZ(-18px) rotate(0deg) scale(.96); }
  to { transform: translateZ(-18px) rotate(360deg) scale(1.04); }
}

@keyframes coreMarkFloat {
  0%, 100% { transform: translateZ(30px) rotateX(-4deg) rotateY(6deg) translateY(1px); }
  50% { transform: translateZ(38px) rotateX(2deg) rotateY(-7deg) translateY(-2px); }
}

@keyframes radarSweep { to { transform: rotate(360deg); } }

@keyframes radarBlip {
  0%, 100% { opacity: .28; transform: scale(.72); }
  45% { opacity: 1; transform: scale(1.45); }
}

@keyframes radarCore {
  0%, 100% { box-shadow: 0 0 7px rgba(var(--accent-rgb), .18); transform: translate(-50%, -50%) scale(.85); }
  50% { box-shadow: 0 0 18px rgba(var(--accent-rgb), .62); transform: translate(-50%, -50%) scale(1.25); }
}

@keyframes reactorBreath {
  0%, 100% { opacity: .66; transform: rotate(-9deg) scale(1.04, .8); }
  50% { opacity: .96; transform: rotate(-4deg) scale(1.12, .88); }
}

@keyframes reactorCloudDrift {
  0% { transform: translate3d(-1.2%, .8%, 0) rotate(-7deg) scale(1, .86); }
  100% { transform: translate3d(1.4%, -1%, 0) rotate(-3deg) scale(1.05, .91); }
}

@keyframes reactorRibbonPulse {
  0%, 100% { opacity: .7; }
  50% { opacity: .92; }
}

@keyframes scrollCue {
  0%, 100% { opacity: .38; transform: translateY(-2px); }
  50% { opacity: 1; transform: translateY(4px); }
}

@keyframes spatialGridDrift {
  from { opacity: .15; transform: perspective(780px) rotateX(67deg) translate3d(-1.2%, 29%, 0) scale(1.28); }
  to { opacity: .3; transform: perspective(780px) rotateX(67deg) translate3d(1.2%, 33%, 0) scale(1.34); }
}

@keyframes routeRunning {
  from { border-color: rgba(var(--accent-rgb), .25); box-shadow: inset 0 0 0 rgba(var(--accent-rgb), 0); }
  to { border-color: rgba(var(--accent-rgb), .7); box-shadow: inset 0 0 24px rgba(var(--accent-rgb), .08); }
}

/*
 * The uploaded command-deck composition keeps its cinematic desktop canvas,
 * but smaller viewports use a real reflow instead of shrinking 1920px into an
 * unreadable thumbnail. The app remains the only scroll owner on these sizes.
 */
@media (max-width: 1100px) {
  :root {
    --header-h: 112px;
    --screen-pad: 24px;
  }

  html,
  body {
    overflow: hidden;
  }

  .app {
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: 0;
    min-height: 0;
    transform: none !important;
    box-shadow: none;
  }

  .cursor-orb { display: none; }

  .command-header {
    height: var(--header-h);
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 60px 52px;
    padding: 0 20px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand::before {
    width: 44px;
    height: 44px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .deck-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .deck-nav::-webkit-scrollbar { display: none; }

  .deck-nav button {
    flex: 0 0 108px;
    min-width: 108px;
    padding: 8px 10px 7px;
  }

  .header-telemetry {
    grid-column: 2;
    grid-row: 1;
    gap: 9px;
  }

  .header-telemetry > span,
  .header-telemetry > em,
  .header-quicklinks > a {
    display: none;
  }

  .login-trigger {
    min-width: 132px;
    height: 42px;
  }

  .view-stack {
    top: var(--header-h);
    bottom: 0;
  }

  .view,
  .home-view {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .screen-shell {
    height: auto;
    min-height: 100%;
    overflow: visible;
  }

  .home-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 430px auto;
    gap: 30px;
    padding-top: 38px;
    padding-bottom: 28px;
  }

  .screen-coordinate,
  .home-scroll-cue {
    display: none;
  }

  .hero-command {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    width: min(100%, 660px);
    padding: 0;
    transform: none;
  }

  .hero-command h1 {
    font-size: clamp(46px, 8.6cqw, 70px);
  }

  .hero-command > p {
    font-size: 17px;
  }

  .intelligence-stage {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: 430px;
    min-height: 430px;
    margin: 0;
  }

  .telemetry-strip {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 170px;
  }

  .telemetry-title {
    grid-column: 1 / -1;
    min-height: 50px;
  }

  .telemetry-strip article {
    min-height: 76px;
    padding: 12px 16px;
  }

  .portal-shell {
    grid-template-rows: auto auto;
    gap: 22px;
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .screen-heading {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 14px;
    padding-top: 12px;
  }

  .screen-heading > div,
  .screen-heading h2,
  .screen-heading > p {
    grid-column: 1;
  }

  .screen-heading > p {
    max-width: 680px;
    margin: 0;
    font-size: 12px;
    text-align: left;
    white-space: normal;
  }

  .plaza-console {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 430px auto 82px;
    min-height: 0;
  }

  .model-locator {
    grid-row: 1;
    border-right: 0;
    border-bottom: 1px solid rgba(96, 145, 204, .14);
  }

  .locator-radar,
  .model-locator > small,
  .locator-status {
    display: none;
  }

  .filter-stack {
    display: flex;
    gap: 6px;
    padding: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .filter-stack button {
    flex: 0 0 145px;
    height: 48px;
  }

  .model-reactor {
    grid-row: 2;
    min-height: 430px;
  }

  .model-hud {
    grid-row: 3;
    overflow: visible;
    border-top: 1px solid rgba(96, 145, 204, .14);
    border-left: 0;
  }

  .model-price-ticker {
    grid-row: 4;
  }

  .spatial-shell {
    min-height: 900px;
  }

  .spatial-center-copy {
    left: var(--screen-pad);
    right: var(--screen-pad);
    width: auto;
    transform: none;
  }
}

@media (max-width: 600px) {
  :root {
    --header-h: 106px;
    --screen-pad: 16px;
  }

  .command-header {
    grid-template-rows: 56px 50px;
    padding: 0 12px;
  }

  .brand {
    gap: 8px;
    padding-left: 2px;
  }

  .brand > span {
    gap: 1px;
    padding-left: 9px;
  }

  .brand b { font-size: 9px; }
  .brand small { font-size: 7px; }

  .brand::before {
    width: 38px;
    height: 38px;
  }

  .brand img {
    width: 31px;
    height: 31px;
  }

  .header-quicklinks { gap: 6px; }

  .locale-trigger {
    min-width: 40px;
    height: 36px;
    padding: 0 8px;
  }

  .locale-trigger > span { display: none; }

  .login-trigger {
    min-width: 42px;
    width: 42px;
    height: 42px;
    padding: 3px;
    border-radius: 50%;
  }

  .login-trigger-copy { display: none; }

  .login-trigger-orb {
    width: 34px;
    height: 34px;
  }

  .deck-nav button {
    flex-basis: 94px;
    min-width: 94px;
    padding: 7px 8px 6px;
  }

  .deck-nav span { font-size: 14px; }
  .deck-nav small { font-size: 8px; }

  .home-shell {
    grid-template-rows: auto 330px auto;
    gap: 22px;
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .eyebrow {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 10px;
    line-height: 1.5;
  }

  .eyebrow::after { display: none; }

  .hero-command h1 {
    font-size: clamp(39px, 12.5cqw, 52px);
    line-height: .98;
  }

  .hero-statement { gap: 6px; }

  .hero-command > p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-route-map {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 12px 14px;
  }

  .hero-route-map > i {
    justify-self: start;
    transform: rotate(90deg);
  }

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

  .primary-action,
  .secondary-action {
    width: 100%;
    min-width: 0;
    height: 46px;
  }

  .hero-login-trigger {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    width: 100%;
  }

  .hero-login-copy b { font-size: 15px; }

  .hero-protocols {
    gap: 9px 14px;
    font-size: 10px;
    line-height: 1.5;
  }

  .intelligence-stage {
    height: 330px;
    min-height: 330px;
  }

  .node-inspector {
    left: 5%;
    bottom: 5%;
    width: 56%;
  }

  .telemetry-strip {
    grid-template-columns: 1fr 1fr;
  }

  .telemetry-strip article {
    min-height: 72px;
    gap: 10px;
    padding: 10px 12px;
  }

  .telemetry-strip article > i {
    width: 26px;
    height: 26px;
  }

  .telemetry-strip article b { font-size: 16px; }
  .telemetry-strip article small { font-size: 11px; }

  .login-dock {
    width: calc(100% - 24px);
    max-height: calc(100% - 24px);
    padding: 24px 20px 25px;
    overflow-y: auto;
  }

  .screen-heading h2 {
    font-size: 32px;
    line-height: 1.14;
  }

  .plaza-console {
    grid-template-rows: auto 340px auto 76px;
  }

  .model-reactor { min-height: 340px; }

  .model-pricing,
  .model-specs {
    grid-template-columns: 1fr;
  }

  .model-pricing article,
  .model-specs span {
    min-height: 64px;
  }

  .spatial-shell { min-height: 820px; }

  .spatial-index {
    left: 16px;
    right: 16px;
    grid-template-columns: auto 1fr auto;
  }

  .spatial-index small { display: none; }

  .spatial-center-copy {
    left: 16px;
    right: 16px;
    top: 18%;
  }

  .spatial-center-copy h2 { font-size: 34px; }
  .spatial-center-copy p { font-size: 11px; }
}

html[data-motion="reduce"] *,
html[data-motion="reduce"] *::before,
html[data-motion="reduce"] *::after {
  scroll-behavior: auto !important;
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .01ms !important;
}

/* Public type system: preserve the command-deck composition without scaling text. */
.app {
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  transform: none;
  box-shadow: none;
}

.noise-layer { z-index: 3; }
.space-vignette { z-index: 4; }

.view.is-active:not(.is-entering):not(.is-leaving) {
  transform: none;
  transform-style: flat;
  backface-visibility: visible;
  will-change: auto;
}

.stage-frame,
.orchestration-objective,
.orchestration-telemetry,
.spatial-route-node,
.spatial-route-node:nth-child(even),
.workspace-memory-flow,
.workspace-evidence,
.about-stats {
  transform: none;
}

.node-inspector { transform: none; }
.node-inspector.is-visible { transform: translateX(5px); }

:where([data-nexus-i18n], [data-nexus-i18n-placeholder]) {
  font-family: var(--font-ui) !important;
}

.brand b,
.brand small,
.deck-nav small,
.header-telemetry,
.screen-coordinate,
.filter-stack button > span,
.reactor-readout,
.catalog-currency,
.catalog-tier-row,
.spatial-index b {
  font-family: var(--font-data);
}

.brand b { font-size: 11px; font-weight: 600; }
.brand small { color: #b7c7d5; font-size: 10px; font-weight: 600; }
.deck-nav small { color: #91b6d0; font-size: 10px; font-weight: 600; }
.deck-nav span { color: #d8e4ed; font-size: 16px; font-weight: 700; }
.header-quicklinks a { font-size: 14px; font-weight: 600; }
.header-telemetry > span b,
.header-telemetry em,
.header-telemetry > span small { font-size: 12px; font-weight: 600; }
.locale-trigger { font-size: 12px; font-weight: 600; }
.locale-trigger b { font-size: 12px; }
.locale-menu button { color: #d3e0ea; font-size: 12px; font-weight: 600; }
.locale-menu button small { color: #afc0cf; font-size: 11px; }
.login-trigger-copy small { color: #bdd0df; font-size: 11px; font-weight: 600; }
.login-trigger-copy b { font-weight: 700; }
.login-channel,
.login-submit b,
.login-form-status { color: #afc1d1; font-size: 12px; font-weight: 600; }
.login-field input::placeholder { color: #8499ad; opacity: 1; }

.eyebrow,
.hero-route-map small,
.hero-login-copy small,
.hero-login-trigger > i,
.hero-protocols,
.home-view .telemetry-title small,
.home-view .telemetry-strip article small {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .035em;
}
.field-label small { font-size: inherit; }
.model-node-label { font-family: var(--font-ui); font-size: 12px; font-weight: 600; }

.screen-heading > div {
  color: #b9cad8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
}
.screen-heading > div small { color: #aebfd0; font-size: inherit; }
.screen-heading > p {
  color: #c5d3df;
  font-size: clamp(14px, .86vw, 16px);
  font-weight: 500;
  line-height: 1.65;
}
.module-label {
  color: #e2ebf3;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
}
.module-label b { color: #b0c1d0; font-weight: 600; }
.model-locator > small,
.locator-status {
  color: #c0cedb;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
}
.locator-status b { color: #d5e0e9; font-weight: 600; }
.filter-stack button {
  min-height: 58px;
  color: #c5d3df;
}
.filter-stack button > span {
  color: #91a8bd;
  font-size: 11px;
  font-weight: 600;
}
.filter-stack button b {
  color: #dbe6ee;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
}
.filter-stack button small {
  color: #b8c8d6;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
}
.filter-stack button:hover b,
.filter-stack button.is-active b { color: #f5f9fc; }
.filter-stack button:hover small,
.filter-stack button.is-active small { color: #d5e2eb; }

.plaza-model-node span {
  color: #e4eef7;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
}
.selected-model-core small,
.selected-model-core > b,
.reactor-readout,
.reactor-readout b,
.model-title small,
.variant-caption,
.variant-scroll-track > button b,
.variant-scroll-track > button small,
.billing-mode span,
.billing-mode small,
.model-pricing small,
.model-specs small,
.capability-tags span,
.cost-lens label small,
.cost-lens > div small,
.cost-lens > span,
.cost-lens label b,
.ticker-model b,
.ticker-model small,
.catalog-currency small,
.catalog-tier-row,
.catalog-tier-row small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.selected-model-core > b,
.reactor-readout b,
.model-specs b { color: #f2f8fd; font-size: 14px; font-weight: 700; }
.model-title p { color: #d1dde7; font-size: clamp(14px, .9vw, 16px); font-weight: 500; }
.variant-scroll-track > button b,
.ticker-model b { color: #dce7ef; }
.variant-scroll-track > button small,
.ticker-model small,
.billing-mode small { color: #b7c8d7; }
.catalog-empty-state { color: #c6d5e2; font-size: 13px; font-weight: 600; }

.spatial-index {
  color: #c4d3df;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-shadow: none;
}
.spatial-index small { color: #c8d6e2; font-size: inherit; }
.spatial-index b { color: #bdcdda; font-size: 12px; font-weight: 600; }
.spatial-center-copy > small,
.solution-spatial-focus > small,
.solution-spatial-focus > span,
.solution-spatial-focus > em {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-shadow: none;
}
.spatial-center-copy p,
.solution-spatial-focus p,
.about-manifesto p {
  color: #ccd9e4;
  font-size: clamp(15px, .94vw, 18px);
  font-weight: 500;
  text-shadow: none;
}
.spatial-float,
.orchestration-objective b,
.orchestration-telemetry small,
.orchestration-telemetry b,
.orchestration-telemetry em {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .035em;
}
.orchestration-objective p { font-family: var(--font-ui); font-size: clamp(15px, .94vw, 18px); font-weight: 500; }
.spatial-route-node > span,
.spatial-route-node .pipeline-state {
  color: #c1d0dd;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .035em;
}
.spatial-route-node h3 { color: #edf5fb; font-size: clamp(15px, 1vw, 18px); font-weight: 700; }
.spatial-protocols i,
.spatial-protocols b,
.spatial-protocols small { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .035em; }

.project-rail > span {
  color: #c5d4e0;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .035em;
}
.project-rail button > small { color: #b5c7d7; font-family: var(--font-data); font-size: 12px; font-weight: 600; }
.project-rail button > b { color: #e0eaf2; font-family: var(--font-ui); font-size: 15px; font-weight: 700; }
.project-rail button em { color: #bccbd8; font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.memory-node > span:nth-child(2) b { color: #f2f7fb; font-family: var(--font-ui); font-size: 15px; font-weight: 700; }
.memory-node > span:nth-child(2) small,
.memory-node > i,
.workspace-evidence > span,
.evidence-orbit small,
.workspace-evidence > div:last-child small,
.workspace-signal-rail span {
  color: #bdccd9;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .025em;
}
.memory-node > i { color: var(--green); }

.spatial-action,
.solution-model-cloud b,
.solution-delivery > span,
.solution-delivery b,
.spatial-solution-selector .solution-tab span,
.spatial-solution-selector .solution-tab small {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
}
.spatial-solution-selector .solution-tab { color: #b9c9d7; }
.spatial-solution-selector .solution-tab span { color: #9fb5c8; }
.spatial-solution-selector .solution-tab b { color: #e1eaf2; font-family: var(--font-ui); font-size: clamp(14px, .9vw, 16px); font-weight: 700; }
.about-layer small,
.about-layer b,
.about-layer em { font-family: var(--font-ui); font-size: 12px; font-weight: 600; }
.about-stats small { font-family: var(--font-ui); font-size: 13px; font-weight: 700; }

@media (max-width: 600px) {
  .brand b,
  .brand small,
  .deck-nav small { font-size: 10px; }
  .eyebrow,
  .hero-protocols,
  .home-view .telemetry-strip article small { font-size: 12px; }
  .spatial-center-copy p,
  .solution-spatial-focus p,
  .about-manifesto p { font-size: 14px; }
}

/* Public chrome cleanup r48: remove decorative labels while preserving live controls. */
.deck-nav > .route-link > small,
.header-telemetry > span > b,
.plaza-view .screen-heading > div,
.spatial-shell > .spatial-index {
  display: none;
}

.deck-nav button {
  display: flex;
  align-items: center;
  padding-block: 0;
}

.header-telemetry > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.header-telemetry i { grid-row: auto; }

@media (min-width: 1101px) {
  .plaza-view .portal-shell {
    grid-template-rows: clamp(78px, 9vh, 96px) minmax(0, 1fr);
    gap: clamp(8px, 1.1vh, 12px);
    padding-top: 10px;
  }

  .plaza-view .screen-heading {
    grid-template-rows: 1fr;
    padding-top: 0;
  }

  .plaza-view .screen-heading h2 {
    grid-column: 1;
    grid-row: 1;
  }

  .plaza-view .screen-heading > p {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 1100px) {
  .plaza-view .portal-shell {
    grid-template-rows: auto auto;
    gap: 16px;
    padding-top: 20px;
  }

  .plaza-view .screen-heading {
    grid-template-rows: auto auto;
    gap: 10px;
    padding-top: 0;
  }

  .plaza-view .screen-heading h2 {
    grid-column: 1;
    grid-row: 1;
  }

  .plaza-view .screen-heading > p {
    grid-column: 1;
    grid-row: 2;
  }
}

/* Public multilingual reflow and model HUD cleanup r49. */
.model-title p[hidden],
.model-hud[hidden],
.model-price-ticker[hidden],
.selected-model-core[hidden] {
  display: none !important;
}

.plaza-view .model-hud .model-pricing > article > b {
  font-size: clamp(17px, 1.12vw, 22px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .command-header {
    grid-template-columns: max-content minmax(0, 720px) max-content;
    column-gap: clamp(16px, 1.6vw, 30px);
    justify-content: space-between;
  }

  .deck-nav {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 4px;
  }

  .deck-nav button {
    width: auto;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .header-telemetry { min-width: 0; }

  html:not([data-locale="zh-CN"]) .deck-nav span {
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
    line-height: 1.12;
  }

  html:not([data-locale="zh-CN"]) .plaza-view .portal-shell {
    grid-template-rows: minmax(96px, auto) minmax(0, 1fr);
  }

  html:not([data-locale="zh-CN"]) .plaza-view .screen-heading {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    align-items: start;
    gap: 8px;
  }

  html:not([data-locale="zh-CN"]) .plaza-view .screen-heading h2,
  html:not([data-locale="zh-CN"]) .plaza-view .screen-heading > p {
    grid-column: 1;
  }

  html:not([data-locale="zh-CN"]) .plaza-view .screen-heading h2 {
    grid-row: 1;
    max-width: min(100%, 44ch);
    font-size: clamp(30px, 2.1vw, 40px);
    line-height: 1.08;
    letter-spacing: -.025em;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  html:not([data-locale="zh-CN"]) .plaza-view .screen-heading > p {
    grid-row: 2;
    max-width: min(100%, 96ch);
    margin: 0;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .plaza-console.is-empty {
    grid-template-columns: clamp(188px, 13.8vw, 250px) minmax(420px, 1fr);
    grid-template-rows: minmax(0, 1fr);
  }

  .plaza-console.is-empty .model-reactor { grid-column: 2; }
}

@media (min-width: 1101px) and (max-width: 1600px) {
  .command-header {
    grid-template-columns: max-content minmax(0, 720px) max-content;
  }

  .header-quicklinks > a,
  .header-telemetry > span,
  .header-telemetry > em {
    display: none;
  }
}

@media (max-width: 1100px) {
  .plaza-console.is-empty {
    grid-template-rows: auto 430px;
  }
}

@media (max-width: 600px) {
  .plaza-console.is-empty {
    grid-template-rows: auto 340px;
  }
}

/* Public Filipino desktop fit r50. */
@media (min-width: 1101px) {
  html[data-locale="fil-PH"] .command-header {
    grid-template-columns: max-content minmax(0, 820px) max-content;
  }

  html[data-locale="fil-PH"] .deck-nav button {
    padding-inline: 6px;
  }

  html[data-locale="fil-PH"] .deck-nav span {
    font-size: clamp(13px, .74vw, 14px);
    line-height: 1.05;
    letter-spacing: .01em;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: nowrap;
  }

  html[data-locale="fil-PH"] .hero-command {
    width: min(100%, 760px);
    transform: none;
  }

  html[data-locale="fil-PH"] .hero-command h1 {
    font-size: clamp(48px, min(3.6vw, 6.2vh), 64px);
  }

  html[data-locale="fil-PH"] .plaza-view .model-hud {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }
}

@media (min-width: 1101px) and (max-width: 1840px) {
  html[data-locale="fil-PH"] .header-quicklinks > a,
  html[data-locale="fil-PH"] .header-telemetry > span,
  html[data-locale="fil-PH"] .header-telemetry > em {
    display: none;
  }
}

/* Public locale-aware spatial page reflow r52. */
@media (min-width: 1101px) {
  html[data-locale]:not([data-locale="zh-CN"]) :where(
    .orchestration-view,
    .workspace-view,
    .solutions-view,
    .about-view
  ) {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-shell {
    width: 100%;
    height: auto;
    min-height: calc(100dvh - var(--header-h));
    display: grid;
    gap: 16px clamp(18px, 2vw, 34px);
    padding: 24px clamp(36px, 5vw, 92px) 28px;
    overflow: hidden;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-index {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 42px;
    align-self: start;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .08em;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-center-copy,
  html[data-locale]:not([data-locale="zh-CN"]) .solution-spatial-focus {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 760px;
    align-self: center;
    justify-self: center;
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-center-copy h2,
  html[data-locale]:not([data-locale="zh-CN"]) .solution-spatial-focus h2 {
    font-size: clamp(34px, min(2.75vw, 4.9vh), 52px);
    line-height: 1.13;
    letter-spacing: -.035em;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  html[data-locale]:not([data-locale="zh-CN"]) :where(.spatial-center-copy p, .solution-spatial-focus p) {
    max-width: 62ch;
    font-size: clamp(13px, .82vw, 16px);
    line-height: 1.62;
  }

  html[data-locale]:is([data-locale="lo"], [data-locale="km"], [data-locale="th-TH"], [data-locale="my-MM"]) :where(
    .spatial-center-copy h2,
    .solution-spatial-focus h2,
    .about-manifesto h2
  ) {
    font-size: clamp(30px, min(2.35vw, 4.2vh), 44px);
    line-height: 1.3;
    letter-spacing: -.01em;
  }

  html[data-locale][data-locale="my-MM"] :where(
    .spatial-center-copy h2,
    .solution-spatial-focus h2,
    .about-manifesto h2
  ) {
    font-size: clamp(28px, min(2.15vw, 3.8vh), 39px);
    line-height: 1.42;
    letter-spacing: 0;
  }

  /* Orchestration: reserve independent columns for objective, narrative and
   * telemetry, then give the route and protocol rows their own vertical space. */
  html[data-locale]:not([data-locale="zh-CN"]) .orchestration-space {
    grid-template-columns: minmax(250px, .78fr) minmax(440px, 1.75fr) minmax(220px, .68fr);
    grid-template-rows: auto minmax(250px, 1fr) minmax(180px, auto) auto;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .orchestration-copy {
    grid-column: 2;
    grid-row: 2;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .orchestration-objective,
  html[data-locale]:not([data-locale="zh-CN"]) .orchestration-telemetry {
    position: relative;
    inset: auto;
    width: 100%;
    align-self: center;
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .orchestration-objective {
    grid-column: 1;
    grid-row: 2;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .orchestration-objective p {
    font-size: clamp(13px, .82vw, 16px);
    line-height: 1.6;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .orchestration-telemetry {
    grid-column: 3;
    grid-row: 2;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-route {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    align-self: end;
    gap: clamp(18px, 4vw, 70px);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-route-node {
    grid-template-rows: auto clamp(47px, 3.7vw, 64px) minmax(38px, auto) auto;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-route-node h3,
  html[data-locale]:not([data-locale="zh-CN"]) .spatial-route-node .pipeline-state,
  html[data-locale]:not([data-locale="zh-CN"]) .spatial-route-node > span {
    line-height: 1.28;
    white-space: normal;
    text-wrap: balance;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-protocols {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    grid-row: 4;
    width: min(100%, 900px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px clamp(14px, 2.4vw, 42px);
    justify-self: center;
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-protocols > span {
    min-width: 0;
    grid-template-columns: 22px minmax(0, 1fr);
    white-space: normal;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-protocols :where(b, small) {
    line-height: 1.3;
    white-space: normal;
  }

  /* Workspace: thread rail, shared copy and evidence own separate columns;
   * the model-memory route occupies a dedicated lower row. */
  html[data-locale]:not([data-locale="zh-CN"]) .workspace-space {
    grid-template-columns: minmax(270px, .72fr) minmax(440px, 1.55fr) minmax(210px, .58fr);
    grid-template-rows: auto minmax(330px, 1fr) minmax(145px, auto);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .workspace-thread-nav {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    align-self: center;
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .workspace-thread-nav button {
    height: auto;
    min-height: 70px;
    grid-template-columns: 30px minmax(0, 1fr);
    padding-block: 9px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .workspace-thread-nav button :where(span, em) {
    line-height: 1.32;
    white-space: normal;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .workspace-copy {
    grid-column: 2;
    grid-row: 2;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .workspace-evidence {
    position: relative;
    inset: auto;
    grid-column: 3;
    grid-row: 2;
    width: 100%;
    align-self: center;
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .workspace-memory-flow {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    padding-inline: clamp(90px, 14vw, 250px);
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .memory-node > span:nth-child(2) :where(b, small) {
    overflow: visible;
    line-height: 1.3;
    text-overflow: clip;
    white-space: normal;
    text-wrap: balance;
  }

  /* Solutions: let the bottom selector grow with translations instead of
   * clipping every tab to the original 48px decorative strip. */
  html[data-locale]:not([data-locale="zh-CN"]) .solutions-space {
    grid-template-columns: minmax(150px, .42fr) minmax(480px, 1.5fr) minmax(260px, .66fr);
    grid-template-rows: auto minmax(330px, 1fr) minmax(90px, auto) auto;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .solution-spatial-focus {
    grid-column: 1 / 3;
    grid-row: 2;
    width: min(100%, 800px);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .solution-spatial-focus h2 {
    max-width: 18ch;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .solution-model-cloud {
    position: relative;
    inset: auto;
    grid-column: 1 / 3;
    grid-row: 3;
    width: min(100%, 760px);
    justify-self: center;
    justify-content: space-evenly;
    gap: clamp(36px, 7vw, 110px);
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .solution-delivery {
    position: relative;
    inset: auto;
    grid-column: 3;
    grid-row: 2;
    width: 100%;
    align-self: center;
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .solution-delivery b {
    align-items: flex-start;
    line-height: 1.4;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-solution-selector {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    grid-row: 4;
    width: min(100%, 1060px);
    height: auto;
    min-height: 72px;
    justify-self: center;
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-solution-selector .solution-tab {
    min-height: 72px;
    grid-template-columns: 28px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    padding: 9px 12px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-solution-selector .solution-tab :where(b, small) {
    align-self: center;
    line-height: 1.25;
    white-space: normal;
  }

  /* About: manifesto/contact stack in the left lane, while the animated core
   * and statistics keep their spatial relationship in independent columns. */
  html[data-locale]:not([data-locale="zh-CN"]) .about-space {
    grid-template-columns: minmax(440px, .84fr) minmax(410px, 1.12fr) minmax(170px, .42fr);
    grid-template-rows: auto minmax(300px, 1fr) auto auto;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-manifesto {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 520px;
    align-self: center;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-manifesto h2 {
    margin: 10px 0 12px;
    font-size: clamp(32px, min(2.45vw, 4.4vh), 46px);
    line-height: 1.2;
    letter-spacing: -.035em;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-manifesto p {
    max-width: 48ch;
    font-size: clamp(14px, .86vw, 17px);
    line-height: 1.65;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-contact {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    max-width: 650px;
    align-self: end;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-contact-heading {
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-contact-heading > b {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-contact-actions {
    grid-template-columns: minmax(0, 1fr) minmax(100px, auto);
  }

  html[data-locale]:not([data-locale="zh-CN"]) #contactCopyEmail {
    min-height: 40px;
    white-space: normal;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-spatial-core {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 2 / 4;
    width: min(100%, 610px);
    align-self: center;
    justify-self: center;
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-layer {
    min-width: 150px;
    max-width: 44%;
    grid-template-columns: 28px minmax(0, 1fr);
    height: auto;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-layer :where(b, em) {
    line-height: 1.25;
    white-space: normal;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-stats {
    position: relative;
    inset: auto;
    grid-column: 3;
    grid-row: 2 / 4;
    align-self: center;
    justify-self: end;
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-stats small {
    max-width: 16ch;
    line-height: 1.3;
    text-align: end;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-site-info {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    grid-row: 4;
    min-height: 76px;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-site-info > span {
    min-height: 76px;
    padding: 10px 13px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-site-info :where(b, em, a) {
    line-height: 1.35;
    white-space: normal;
  }
}

@media (min-width: 1101px) and (max-width: 1279px) {
  html[data-locale="fil-PH"] .command-header {
    grid-template-columns: max-content minmax(0, 1fr) max-content;
  }

  html[data-locale="fil-PH"] .deck-nav span {
    font-size: 12px;
    line-height: 1.05;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }
}

/* Public content cleanup and adaptive node inspector r51. */
.brand .brand-wordmark {
  color: #e7f3fb;
  font-family: var(--font-ui);
  font-size: clamp(14px, .9vw, 17px);
  font-weight: 750;
  line-height: 1;
  letter-spacing: .045em;
  text-transform: none;
  white-space: nowrap;
}

.node-inspector {
  width: clamp(360px, 32vw, 500px);
  max-width: calc(100% - 12%);
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  gap: 12px;
  padding: 10px 14px;
}

.node-inspector > span,
.node-inspector > em {
  font-size: 11px;
  line-height: 1.25;
  white-space: nowrap;
}

.node-inspector small,
.node-inspector b {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.node-inspector small {
  font-size: 11px;
  line-height: 1.25;
}

.node-inspector b {
  font-size: clamp(12px, .72vw, 14px);
  line-height: 1.35;
}

html:not(:lang(zh-CN)) .node-inspector {
  width: clamp(390px, 36vw, 560px);
}

.about-site-info > span:not(:first-child) {
  justify-items: start;
}

@media (max-width: 1100px) {
  .node-inspector,
  html:not(:lang(zh-CN)) .node-inspector {
    width: min(560px, 82%);
    max-width: 92%;
  }
}

@media (max-width: 600px) {
  .brand .brand-wordmark { font-size: 13px; }

  .node-inspector,
  html:not(:lang(zh-CN)) .node-inspector {
    left: 4%;
    width: 92%;
    max-width: 92%;
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    gap: 8px;
    padding: 9px 10px;
  }

  .node-inspector > span,
  .node-inspector > em,
  .node-inspector small { font-size: 10px; }

  .node-inspector b { font-size: 12px; }
}

/* Compact-desktop height fit: keep the Filipino hero treatment locale-specific
 * while sharing the plaza collision guard across 16:9 laptop layouts. */
@media (min-width: 1101px) and (max-width: 1600px) and (max-height: 820px) {
  html[data-locale="fil-PH"] .eyebrow {
    margin-bottom: 10px;
  }

  html[data-locale="fil-PH"] .hero-statement {
    gap: 6px;
  }

  html[data-locale="fil-PH"] .hero-command > p {
    margin-top: 14px;
    line-height: 1.55;
  }

  html[data-locale="fil-PH"] .hero-route-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
    padding-block: 9px;
  }

  html[data-locale="fil-PH"] .hero-route-map > i {
    display: none;
  }

  html[data-locale="fil-PH"] .hero-route-map small {
    line-height: 1.2;
    letter-spacing: .04em;
    white-space: normal;
    text-wrap: balance;
  }

  html[data-locale="fil-PH"] .hero-route-map b {
    line-height: 1.15;
    text-wrap: balance;
  }

  html[data-locale="fil-PH"] .hero-actions {
    margin-top: 10px;
  }

  html[data-locale="fil-PH"] .hero-login-trigger {
    margin-top: 8px;
  }

  html[data-locale="fil-PH"] .hero-protocols,
  html[data-locale="fil-PH"] .home-scroll-cue {
    display: none;
  }

  .plaza-view .plaza-console {
    grid-template-rows: minmax(0, 1fr);
  }

  .plaza-view .locator-radar,
  .plaza-view .model-price-ticker {
    display: none;
  }

  .plaza-view .filter-stack {
    padding-bottom: 66px;
  }

  .plaza-view .model-hud {
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }
}

/* Public locale-aware layout resilience r52.
 * Keep the Chinese command-deck composition unchanged. Other locales receive
 * script-appropriate fonts and reflow tokens so translated labels can grow
 * without colliding with neighbouring controls or fixed spatial panels. */
html[data-locale="ar"] {
  --font-ui: "Segoe UI", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

html[data-locale="lo"] {
  --font-ui: "Lao UI", "Noto Sans Lao", "Leelawadee UI", "Segoe UI", sans-serif;
}

html[data-locale="km"] {
  --font-ui: "Khmer UI", "Noto Sans Khmer", "Leelawadee UI", "Segoe UI", sans-serif;
}

html[data-locale="th-TH"] {
  --font-ui: "Leelawadee UI", "Noto Sans Thai", Tahoma, "Segoe UI", sans-serif;
}

html[data-locale][data-locale="my-MM"] {
  --font-ui: "Nirmala UI", "Myanmar Text", "Noto Sans Myanmar", "Segoe UI", sans-serif;
}

html[data-locale]:not([data-locale="zh-CN"]) :where(
  .command-header > *,
  .deck-nav,
  .deck-nav button,
  .home-shell > *,
  .hero-command,
  .hero-route-map > *,
  .telemetry-strip > *,
  .portal-shell > *,
  .screen-heading > *,
  .plaza-console > *,
  .filter-stack button > *,
  .model-hud > *,
  .spatial-shell > *,
  .spatial-center-copy,
  .spatial-float,
  .spatial-protocols > *,
  .workspace-thread-nav,
  .workspace-memory-flow > *,
  .solution-delivery,
  .spatial-solution-selector > *,
  .about-manifesto,
  .about-contact,
  .about-site-info > *
) {
  min-width: 0;
}

html[data-locale]:not([data-locale="zh-CN"]) :where(
  .deck-nav span,
  .hero-command p,
  .hero-route-map small,
  .hero-route-map b,
  .hero-actions span,
  .hero-login-copy,
  .telemetry-strip small,
  .screen-heading h2,
  .screen-heading p,
  .module-label,
  .filter-stack button b,
  .filter-stack button small,
  .model-title p,
  .billing-mode,
  .model-pricing small,
  .model-specs,
  .spatial-index,
  .spatial-center-copy,
  .spatial-float,
  .spatial-route-node,
  .spatial-protocols,
  .workspace-thread-nav,
  .memory-node,
  .workspace-evidence,
  .solution-delivery,
  .solution-tab,
  .about-manifesto,
  .about-contact,
  .about-layer,
  .about-stats,
  .about-site-info
) {
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

@media (min-width: 1101px) {
  html[data-locale]:not([data-locale="zh-CN"]) {
    --header-h: 82px;
  }

  html[data-locale]:is([data-locale="lo"], [data-locale="km"], [data-locale="th-TH"], [data-locale="my-MM"]) {
    --header-h: 90px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .command-header {
    grid-template-columns: max-content minmax(0, 820px) max-content;
    column-gap: clamp(10px, 1.25vw, 24px);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .deck-nav {
    gap: 2px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .deck-nav button {
    min-width: 0;
    padding: 10px 5px 8px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .deck-nav span {
    font-size: clamp(12px, .72vw, 14px);
    font-weight: 720;
    line-height: 1.16;
    letter-spacing: .01em;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  html[data-locale]:is([data-locale="lo"], [data-locale="km"], [data-locale="th-TH"], [data-locale="my-MM"]) .deck-nav span {
    font-size: clamp(11px, .66vw, 13px);
    line-height: 1.34;
  }

  html[data-locale][data-locale="my-MM"] .deck-nav span {
    font-size: clamp(10px, .62vw, 12px);
    line-height: 1.46;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .home-shell {
    grid-template-columns: minmax(470px, .47fr) minmax(520px, .53fr);
    grid-template-rows: minmax(0, 1fr) minmax(96px, auto);
    min-height: 100%;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-command {
    align-self: start;
    width: min(100%, 760px);
    max-height: 100%;
    padding: clamp(26px, 3.5vh, 42px) 20px 22px clamp(34px, 4vw, 78px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .eyebrow {
    flex-wrap: wrap;
    gap: 7px 10px;
    margin-bottom: clamp(11px, 1.6vh, 18px);
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .08em;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-command h1 {
    max-width: 12.5ch;
    font-size: clamp(40px, min(3.1vw, 5.6vh), 60px);
    line-height: 1.04;
    letter-spacing: -.045em;
    word-break: normal;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  html[data-locale]:is([data-locale="lo"], [data-locale="km"], [data-locale="th-TH"], [data-locale="my-MM"]) .hero-command h1 {
    max-width: 13.5ch;
    font-size: clamp(34px, min(2.7vw, 4.8vh), 50px);
    line-height: 1.22;
    letter-spacing: -.02em;
  }

  html[data-locale][data-locale="my-MM"] .hero-command h1 {
    max-width: 15ch;
    font-size: clamp(31px, min(2.45vw, 4.25vh), 44px);
    line-height: 1.46;
    letter-spacing: 0;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-command > p {
    max-width: 61ch;
    margin-top: clamp(14px, 2vh, 22px);
    font-size: clamp(13px, .82vw, 16px);
    line-height: 1.65;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-route-map {
    width: min(100%, 620px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
    margin-top: 13px;
    padding: 10px 12px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-route-map > i {
    display: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-route-map small,
  html[data-locale]:not([data-locale="zh-CN"]) .hero-route-map b {
    line-height: 1.25;
    letter-spacing: .02em;
    white-space: normal;
    text-wrap: balance;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-route-map small { font-size: 9px; }
  html[data-locale]:not([data-locale="zh-CN"]) .hero-route-map b { font-size: 13px; }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-actions {
    width: min(100%, 620px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) :where(.primary-action, .secondary-action) {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 46px;
    padding: 8px 14px;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-login-trigger {
    width: min(100%, 620px);
    grid-template-columns: 36px minmax(0, 1fr) auto;
    margin-top: 9px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-login-copy b {
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: .02em;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-protocols {
    width: min(100%, 620px);
    flex-wrap: wrap;
    gap: 7px 18px;
    margin-top: 10px;
    line-height: 1.3;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .telemetry-strip {
    min-height: 96px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .telemetry-strip article {
    min-width: 0;
    gap: 9px;
    padding: 8px clamp(8px, .85vw, 15px);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .telemetry-strip article span {
    min-width: 0;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .telemetry-strip article b {
    font-size: clamp(14px, 1.05vw, 19px);
    line-height: 1.12;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .telemetry-strip article small {
    font-size: 10px;
    line-height: 1.28;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .portal-shell {
    grid-template-rows: minmax(112px, auto) minmax(0, 1fr);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .plaza-view .screen-heading {
    gap: 7px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .plaza-view .screen-heading h2 {
    max-width: min(100%, 32ch);
    font-size: clamp(28px, 1.85vw, 36px);
    line-height: 1.15;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .plaza-view .screen-heading > p {
    max-width: min(100%, 92ch);
    line-height: 1.45;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .plaza-view .plaza-console {
    grid-template-columns: clamp(220px, 15vw, 285px) minmax(360px, 1fr) clamp(330px, 24vw, 440px);
    grid-template-rows: minmax(0, 1fr) minmax(84px, auto);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .plaza-view .plaza-console.is-empty {
    grid-template-columns: clamp(220px, 15vw, 285px) minmax(360px, 1fr);
    grid-template-rows: minmax(0, 1fr);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .model-locator {
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .filter-stack {
    min-height: 0;
    flex: 1 1 auto;
    grid-auto-rows: minmax(58px, auto);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .filter-stack button {
    height: auto;
    min-height: 58px;
    grid-template-rows: auto auto;
    align-items: center;
    padding-block: 8px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .filter-stack button b,
  html[data-locale]:not([data-locale="zh-CN"]) .filter-stack button small {
    align-self: center;
    line-height: 1.25;
    white-space: normal;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .filter-stack button b { font-size: 13px; }
  html[data-locale]:not([data-locale="zh-CN"]) .filter-stack button small { font-size: 10px; }

  html[data-locale]:not([data-locale="zh-CN"]) .model-hud {
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .model-hud :where(.module-label, .billing-mode, .catalog-currency) {
    flex-wrap: wrap;
    height: auto;
    min-height: 36px;
    line-height: 1.3;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .model-hud .model-pricing small {
    min-height: 2.6em;
    line-height: 1.3;
    letter-spacing: .02em;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .model-hud .model-pricing > article > b {
    font-size: clamp(16px, 1vw, 19px);
    white-space: normal;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .model-price-ticker {
    min-height: 84px;
    align-items: stretch;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .ticker-model {
    flex-basis: clamp(158px, 11vw, 196px);
    min-width: 158px;
    grid-template-rows: auto auto;
    align-content: center;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .ticker-model b,
  html[data-locale]:not([data-locale="zh-CN"]) .ticker-model small {
    overflow: visible;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
  }
}

@media (min-width: 1101px) and (max-width: 1840px) {
  html[data-locale]:not([data-locale="zh-CN"]) .header-quicklinks > a,
  html[data-locale]:not([data-locale="zh-CN"]) .header-telemetry > span,
  html[data-locale]:not([data-locale="zh-CN"]) .header-telemetry > em {
    display: none;
  }
}

@media (min-width: 1101px) {
  html[data-locale]:not([data-locale="zh-CN"]) .home-view,
  html[data-locale]:not([data-locale="zh-CN"]) .plaza-view {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .home-shell {
    height: auto;
    min-height: 900px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-command {
    max-height: none;
    overflow-y: visible;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .intelligence-stage {
    margin: 0;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .home-scroll-cue {
    display: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .plaza-model-node span {
    width: max-content;
    max-width: min(220px, 42vw);
    line-height: 1.3;
    white-space: normal;
    text-align: center;
    text-wrap: balance;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-spatial-core .layer-one {
    left: -5%;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-spatial-core .layer-two {
    right: -5%;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-spatial-core .layer-three {
    right: -3%;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-spatial-core .layer-four {
    left: -3%;
  }
}

@media (min-width: 1101px) and (max-width: 1450px) {
  html[data-locale]:not([data-locale="zh-CN"]) .command-header {
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    padding-inline: 22px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .deck-nav span {
    font-size: 12px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-shell {
    gap: 14px 18px;
    padding-inline: 28px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .orchestration-space {
    grid-template-columns: minmax(220px, .72fr) minmax(400px, 1.55fr) minmax(190px, .6fr);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .workspace-space {
    grid-template-columns: minmax(235px, .68fr) minmax(400px, 1.45fr) minmax(185px, .54fr);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .solutions-space {
    grid-template-columns: minmax(105px, .32fr) minmax(420px, 1.42fr) minmax(225px, .62fr);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-space {
    grid-template-columns: minmax(360px, .82fr) minmax(360px, 1.08fr) minmax(145px, .4fr);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .workspace-memory-flow {
    padding-inline: clamp(45px, 9vw, 130px);
  }
}

@media (min-width: 1101px) and (max-height: 880px) {
  .view:is(
    .home-view,
    .plaza-view,
    .orchestration-view,
    .workspace-view,
    .solutions-view,
    .about-view
  ) {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  .home-shell {
    height: auto;
    min-height: 920px;
  }

  .portal-shell {
    height: auto;
    min-height: 980px;
  }

  .spatial-shell {
    height: auto;
    min-height: 960px;
  }

  .screen-coordinate,
  .home-scroll-cue {
    display: none;
  }

  html[data-locale="zh-CN"] .orchestration-copy {
    width: min(660px, 48vw);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .plaza-view .locator-radar {
    display: block;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .plaza-view .model-price-ticker {
    display: flex;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .plaza-view .filter-stack {
    padding-bottom: 10px;
  }
}

@media (max-width: 1100px) {
  html[data-locale]:not([data-locale="zh-CN"]) .deck-nav button {
    flex-basis: 118px;
    min-width: 118px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .deck-nav span {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .01em;
    white-space: normal;
    text-wrap: balance;
  }

  html[data-locale]:is([data-locale="lo"], [data-locale="km"], [data-locale="th-TH"], [data-locale="my-MM"]) .deck-nav span {
    font-size: 12px;
    line-height: 1.38;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-command h1 {
    max-width: 13ch;
    font-size: clamp(38px, 7.8cqw, 58px);
    line-height: 1.08;
    letter-spacing: -.035em;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  html[data-locale]:is([data-locale="lo"], [data-locale="km"], [data-locale="th-TH"], [data-locale="my-MM"]) .hero-command h1 {
    max-width: 15ch;
    font-size: clamp(31px, 6.5cqw, 46px);
    line-height: 1.28;
    letter-spacing: -.01em;
  }

  html[data-locale][data-locale="my-MM"] .hero-command h1 {
    font-size: clamp(28px, 5.8cqw, 40px);
    line-height: 1.48;
    letter-spacing: 0;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-route-map small,
  html[data-locale]:not([data-locale="zh-CN"]) .hero-route-map b,
  html[data-locale]:not([data-locale="zh-CN"]) :where(.primary-action, .secondary-action),
  html[data-locale]:not([data-locale="zh-CN"]) .hero-login-copy b {
    line-height: 1.32;
    white-space: normal;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .plaza-view .screen-heading h2 {
    font-size: clamp(27px, 5.6vw, 38px);
    line-height: 1.18;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .filter-stack button {
    flex-basis: 170px;
    height: auto;
    min-height: 62px;
    grid-template-rows: auto auto;
    padding-block: 8px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .filter-stack button :where(b, small) {
    align-self: center;
    line-height: 1.28;
    white-space: normal;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .model-hud :where(.module-label, .billing-mode, .catalog-currency) {
    flex-wrap: wrap;
    height: auto;
    min-height: 40px;
    line-height: 1.3;
  }

  /* Tablets and narrow windows use a single document flow. Background canvases
   * remain spatial, while readable content no longer shares desktop offsets. */
  html[data-locale]:not([data-locale="zh-CN"]) .spatial-shell {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 28px;
    padding: 24px var(--screen-pad) 32px;
    overflow: hidden;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-index {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
    min-height: 42px;
    font-size: 10px;
    line-height: 1.35;
  }

  html[data-locale]:not([data-locale="zh-CN"]) :where(
    .spatial-center-copy,
    .spatial-float,
    .spatial-route,
    .spatial-protocols,
    .workspace-thread-nav,
    .workspace-memory-flow,
    .workspace-evidence,
    .solution-spatial-focus,
    .solution-model-cloud,
    .solution-delivery,
    .spatial-solution-selector,
    .about-manifesto,
    .about-contact,
    .about-spatial-core,
    .about-stats,
    .about-site-info
  ) {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    transform: none;
  }

  html[data-locale]:not([data-locale="zh-CN"]) :where(.spatial-center-copy, .solution-spatial-focus) {
    justify-self: center;
  }

  html[data-locale]:not([data-locale="zh-CN"]) :where(.spatial-center-copy h2, .solution-spatial-focus h2, .about-manifesto h2) {
    font-size: clamp(30px, 5.4vw, 46px);
    line-height: 1.2;
    letter-spacing: -.025em;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  html[data-locale]:is([data-locale="lo"], [data-locale="km"], [data-locale="th-TH"], [data-locale="my-MM"]) :where(
    .spatial-center-copy h2,
    .solution-spatial-focus h2,
    .about-manifesto h2
  ) {
    font-size: clamp(27px, 4.8vw, 39px);
    line-height: 1.36;
    letter-spacing: 0;
  }

  html[data-locale][data-locale="my-MM"] :where(.spatial-center-copy h2, .solution-spatial-focus h2, .about-manifesto h2) {
    font-size: clamp(25px, 4.4vw, 35px);
    line-height: 1.48;
  }

  html[data-locale]:not([data-locale="zh-CN"]) :where(.spatial-center-copy p, .solution-spatial-focus p, .about-manifesto p, .about-contact > p) {
    max-width: 62ch;
    font-size: clamp(13px, 2vw, 16px);
    line-height: 1.68;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .orchestration-copy { grid-row: 2; }
  html[data-locale]:not([data-locale="zh-CN"]) .orchestration-objective { grid-row: 3; }
  html[data-locale]:not([data-locale="zh-CN"]) .spatial-route { grid-row: 4; }
  html[data-locale]:not([data-locale="zh-CN"]) .orchestration-telemetry { grid-row: 5; }
  html[data-locale]:not([data-locale="zh-CN"]) .spatial-protocols { grid-row: 6; }

  html[data-locale]:not([data-locale="zh-CN"]) .workspace-copy { grid-row: 2; }
  html[data-locale]:not([data-locale="zh-CN"]) .workspace-thread-nav { grid-row: 3; }
  html[data-locale]:not([data-locale="zh-CN"]) .workspace-memory-flow { grid-row: 4; }
  html[data-locale]:not([data-locale="zh-CN"]) .workspace-evidence { grid-row: 5; }

  html[data-locale]:not([data-locale="zh-CN"]) .solution-spatial-focus { grid-row: 2; }
  html[data-locale]:not([data-locale="zh-CN"]) .solution-model-cloud { grid-row: 3; }
  html[data-locale]:not([data-locale="zh-CN"]) .solution-delivery { grid-row: 4; }
  html[data-locale]:not([data-locale="zh-CN"]) .spatial-solution-selector { grid-row: 5; }

  html[data-locale]:not([data-locale="zh-CN"]) .about-manifesto { grid-row: 2; }
  html[data-locale]:not([data-locale="zh-CN"]) .about-contact { grid-row: 3; }
  html[data-locale]:not([data-locale="zh-CN"]) .about-spatial-core { grid-row: 4; }
  html[data-locale]:not([data-locale="zh-CN"]) .about-stats { grid-row: 5; }
  html[data-locale]:not([data-locale="zh-CN"]) .about-site-info { grid-row: 6; }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-route,
  html[data-locale]:not([data-locale="zh-CN"]) .workspace-memory-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 18px 0;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-protocols {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-protocols > span {
    min-width: 0;
    white-space: normal;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .workspace-thread-nav button {
    height: auto;
    min-height: 68px;
    padding-block: 9px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .solution-model-cloud {
    min-height: 100px;
    justify-content: space-evenly;
    gap: 32px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-solution-selector {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[data-locale]:not([data-locale="zh-CN"]) .spatial-solution-selector .solution-tab {
    min-height: 78px;
    grid-template-columns: 28px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-spatial-core {
    width: min(100%, 600px);
    aspect-ratio: 1;
    justify-self: center;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: stretch;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-stats span {
    justify-items: center;
    text-align: center;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-site-info {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  html[data-locale]:not([data-locale="zh-CN"]) .deck-nav button {
    flex-basis: 104px;
    min-width: 104px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .hero-command h1 {
    font-size: clamp(34px, 10.5cqw, 48px);
  }

  html[data-locale]:is([data-locale="lo"], [data-locale="km"], [data-locale="th-TH"], [data-locale="my-MM"]) .hero-command h1 {
    font-size: clamp(28px, 8.5cqw, 39px);
  }

  html[data-locale][data-locale="my-MM"] .hero-command h1 {
    font-size: clamp(25px, 7.5cqw, 34px);
  }

  html[data-locale]:not([data-locale="zh-CN"]) :where(.spatial-route, .workspace-memory-flow, .spatial-protocols) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-contact-actions,
  html[data-locale]:not([data-locale="zh-CN"]) .about-site-info {
    grid-template-columns: minmax(0, 1fr);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-contact-email {
    grid-template-columns: auto minmax(0, 1fr);
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-contact-email i {
    display: none;
  }
}

/* Complex scripts need extra ascender/descender room even in dense telemetry. */
html[data-locale]:is([data-locale="lo"], [data-locale="km"], [data-locale="th-TH"], [data-locale="my-MM"]) :where(
  .eyebrow,
  .hero-route-map small,
  .hero-route-map b,
  .hero-login-copy,
  .hero-protocols,
  .telemetry-title,
  .telemetry-strip small,
  .module-label,
  .filter-stack button,
  .locator-status,
  .model-title p,
  .billing-mode,
  .catalog-currency,
  .model-pricing small,
  .model-specs,
  .cost-lens,
  .spatial-index,
  .spatial-center-copy > small,
  .spatial-center-copy p,
  .orchestration-objective,
  .orchestration-telemetry,
  .spatial-route-node,
  .spatial-protocols,
  .workspace-thread-nav,
  .memory-node,
  .workspace-evidence,
  .solution-delivery,
  .solution-tab,
  .about-manifesto,
  .about-contact,
  .about-layer,
  .about-stats,
  .about-site-info
) {
  line-height: 1.38;
}

html[data-locale][data-locale="my-MM"] :where(
  .eyebrow,
  .hero-route-map small,
  .hero-route-map b,
  .hero-login-copy,
  .hero-protocols,
  .telemetry-title,
  .telemetry-strip small,
  .module-label,
  .filter-stack button,
  .locator-status,
  .model-title p,
  .billing-mode,
  .catalog-currency,
  .model-pricing small,
  .model-specs,
  .cost-lens,
  .spatial-index,
  .spatial-center-copy > small,
  .spatial-center-copy p,
  .orchestration-objective,
  .orchestration-telemetry,
  .spatial-route-node,
  .spatial-protocols,
  .workspace-thread-nav,
  .memory-node,
  .workspace-evidence,
  .solution-delivery,
  .solution-tab,
  .about-manifesto,
  .about-contact,
  .about-layer,
  .about-stats,
  .about-site-info
) {
  line-height: 1.5;
}

/* Myanmar glyphs use materially taller ink boxes than Latin text on Windows.
 * Give the affected components explicit line boxes and row gaps so diacritics
 * never collide even when Nirmala UI falls back to Myanmar Text. */
@media (min-width: 1101px) {
  html[data-locale]:not([data-locale="zh-CN"]) .plaza-view .filter-stack {
    padding-bottom: 72px;
    scroll-padding-bottom: 72px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .solution-model-cloud {
    min-height: 132px;
    align-items: flex-start;
    padding-bottom: 34px;
  }

  html[data-locale]:not([data-locale="zh-CN"]) .about-contact-email strong {
    min-width: 0;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.4;
  }

  html[data-locale][data-locale="my-MM"] .plaza-view .locator-status {
    position: static;
    flex: 0 0 auto;
    margin: 8px 13px 12px;
  }

  html[data-locale][data-locale="my-MM"] .plaza-view .filter-stack {
    padding-bottom: 0;
    scroll-padding-bottom: 0;
  }

  html[data-locale][data-locale="my-MM"] .hero-command h1 {
    max-width: 16ch;
    font-size: clamp(26px, min(2.05vw, 3.5vh), 34px);
    line-height: 1.9;
  }

  html[data-locale][data-locale="my-MM"] :is(
    .spatial-center-copy h2,
    .solution-spatial-focus h2,
    .about-manifesto h2
  ) {
    font-size: clamp(27px, min(2vw, 3.3vh), 35px);
    line-height: 1.85;
    letter-spacing: 0;
  }

  html[data-locale][data-locale="my-MM"] .node-inspector div {
    gap: 9px;
  }

  html[data-locale][data-locale="my-MM"] .node-inspector small,
  html[data-locale][data-locale="my-MM"] .node-inspector b {
    line-height: 1.75;
  }

  html[data-locale][data-locale="my-MM"] .telemetry-strip {
    min-height: 118px;
  }

  html[data-locale][data-locale="my-MM"] .telemetry-strip article span {
    gap: 10px;
  }

  html[data-locale][data-locale="my-MM"] .telemetry-strip article b {
    font-size: 14px;
    line-height: 1.65;
  }

  html[data-locale][data-locale="my-MM"] .telemetry-strip article small {
    line-height: 1.7;
  }

  html[data-locale][data-locale="my-MM"] .about-contact-heading {
    align-items: start;
    row-gap: 10px;
  }

  html[data-locale][data-locale="my-MM"] .about-contact-heading > div {
    display: grid;
    gap: 10px;
  }

  html[data-locale][data-locale="my-MM"] .about-contact-heading small {
    margin-bottom: 0;
    line-height: 1.75;
  }

  html[data-locale][data-locale="my-MM"] .about-contact-heading h3,
  html[data-locale][data-locale="my-MM"] .about-contact-heading > b {
    line-height: 1.7;
  }

  html[data-locale][data-locale="my-MM"] .about-stats {
    gap: 28px;
  }

  html[data-locale][data-locale="my-MM"] .about-stats span {
    row-gap: 14px;
  }

  html[data-locale][data-locale="my-MM"] .about-stats b {
    line-height: 1.25;
  }

  html[data-locale][data-locale="my-MM"] .about-stats small {
    line-height: 1.75;
  }
}

@media (min-width: 1101px) and (max-width: 1450px) {
  html[data-locale]:not([data-locale="zh-CN"]) .about-contact-actions {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 1101px) {
  html[data-locale="zh-CN"] .about-contact {
    bottom: 14%;
  }
}

@media (max-width: 1100px) {
  html[data-locale][data-locale="my-MM"] .hero-command h1,
  html[data-locale][data-locale="my-MM"] :is(
    .spatial-center-copy h2,
    .solution-spatial-focus h2,
    .about-manifesto h2
  ) {
    line-height: 1.75;
  }
}

/* Compact Chinese spatial pages still use the original absolute composition.
 * Widen the model rail and move the About core into its own lane so functional
 * labels remain complete at common 1366x768 desktop viewports. */
@media (min-width: 1101px) and (max-width: 1600px) and (max-height: 820px) {
  html[data-locale="zh-CN"] .workspace-memory-flow {
    left: 20%;
    right: 16%;
    gap: 14px;
  }

  html[data-locale="zh-CN"] .memory-node > span:nth-child(2) b {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
    line-height: 1.35;
  }

  html[data-locale="zh-CN"] .about-spatial-core {
    left: 67%;
    width: min(520px, 37vw);
  }
}
