:root {
  --nx-ink: #0a0d0f;
  --nx-ink-2: #111619;
  --nx-panel: #171d20;
  --nx-paper: #eef0ec;
  --nx-paper-2: #e3e6e1;
  --nx-white: #f8faf7;
  --nx-copy: #a3adb0;
  --nx-muted: #8f9da1;
  --nx-paper-copy: #465154;
  --nx-paper-muted: #596367;
  --nx-blue-copy: #25383b;
  --nx-line: rgba(234, 240, 237, 0.13);
  --nx-line-dark: rgba(10, 13, 15, 0.16);
  --nx-blue: #63d9e5;
  --nx-blue-dark: #066a74;
  --nx-green: #58d39a;
  --nx-red: #ef777c;
  --nx-display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --nx-body: Inter, "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nx-sans: var(--nx-display);
  --nx-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --nx-width: 1380px;
  --nx-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body.nx-home {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--nx-ink) !important;
  color: var(--nx-white) !important;
  font-family: var(--nx-body) !important;
  -webkit-font-smoothing: antialiased;
}

.nx-home *, .nx-home *::before, .nx-home *::after { box-sizing: border-box; }
.nx-home section { border: 0 !important; }
.nx-home a { color: inherit; }
.nx-home h1, .nx-home h2, .nx-home h3, .nx-home p { text-wrap: pretty; }
.nx-home h1, .nx-home h2, .nx-home h3 { font-family: var(--nx-display) !important; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 11px 14px; color: var(--nx-ink) !important; background: var(--nx-blue); font: 600 11px/1 var(--nx-mono); text-decoration: none; transform: translateY(-170%); transition: transform 180ms ease; }
.skip-link:focus { transform: translateY(0); }

/* Header */

.nx-header { position: fixed; z-index: 100; top: 0; right: 0; left: 0; height: 72px; border-bottom: 1px solid transparent; transition: height 280ms var(--nx-ease), border-color 280ms ease; }
.nx-header::before { position: absolute; inset: 0; content: ""; background: rgba(10, 13, 15, 0.9); opacity: 0; backdrop-filter: blur(18px); transition: opacity 220ms ease; }
.nx-header.is-scrolled { height: 62px; border-color: var(--nx-line); }
.nx-header.is-scrolled::before, .nx-header.is-open::before { opacity: 1; }
.nx-header__inner { position: relative; display: flex; width: min(calc(100% - 48px), var(--nx-width)); height: 100%; margin: 0 auto; align-items: center; justify-content: space-between; }

.nx-wordmark { display: inline-flex; align-items: center; gap: 12px; color: var(--nx-white) !important; font: 600 11px/1 var(--nx-mono); letter-spacing: .12em; text-decoration: none; }
.nx-wordmark em { color: var(--nx-muted); font-style: normal; }
.nx-wordmark__mark { position: relative; display: block; width: 25px; height: 20px; }
.nx-wordmark__mark i { position: absolute; top: 0; display: block; width: 1px; height: 20px; background: var(--nx-blue); }
.nx-wordmark__mark i:nth-child(1) { left: 2px; }
.nx-wordmark__mark i:nth-child(2) { left: 12px; transform: rotate(-34deg); }
.nx-wordmark__mark i:nth-child(3) { right: 2px; }

.nx-nav { display: flex; padding: 0 !important; align-items: center; gap: clamp(16px, 2vw, 30px); background: transparent !important; border: 0 !important; backdrop-filter: none !important; }
.nx-nav a { color: #aab3b4 !important; font: 500 11px/1 var(--nx-mono); letter-spacing: .05em; text-decoration: none; text-transform: uppercase; transition: color 160ms ease; }
.nx-nav a:hover, .nx-nav a:focus-visible { color: var(--nx-white) !important; }
.nx-nav a.nx-nav__terminal { display: inline-flex; min-height: 36px; padding: 0 12px !important; align-items: center; gap: 20px; color: var(--nx-ink) !important; background: var(--nx-blue); }
.nx-nav a.nx-nav__terminal:hover { color: var(--nx-ink) !important; background: #a7f4f7; }
.nx-menu-toggle { display: none; width: 40px; height: 40px; padding: 0; border: 1px solid var(--nx-line); background: transparent; }
.nx-menu-toggle i { display: block; width: 16px; height: 1px; margin: 5px auto; background: var(--nx-white); transition: transform 200ms ease; }

/* Shared type and controls */

.nx-kicker { display: flex; margin: 0 0 26px; align-items: center; gap: 12px; color: var(--nx-blue-dark) !important; font: 500 11px/1 var(--nx-mono) !important; letter-spacing: .09em !important; text-transform: uppercase; }
.nx-kicker::before { width: 22px; height: 1px; content: ""; background: currentColor; }
.nx-kicker span { color: inherit; opacity: .82; }
.nx-actions { display: flex; margin-top: 34px; flex-wrap: wrap; gap: 8px; }
.nx-button { display: inline-flex; min-width: 198px; min-height: 50px; padding: 0 15px; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid rgba(255, 255, 255, .24); font: 500 11px/1 var(--nx-mono); letter-spacing: .05em; text-decoration: none; text-transform: uppercase; transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease; }
.nx-button--primary { color: var(--nx-ink) !important; background: var(--nx-blue); border-color: var(--nx-blue); }
.nx-button--primary:hover { background: #a7f4f7; border-color: #a7f4f7; }
.nx-button--quiet { color: var(--nx-white) !important; }
.nx-button--quiet:hover { border-color: var(--nx-blue); }
.nx-button--dark { color: var(--nx-white) !important; background: var(--nx-ink); border-color: var(--nx-ink); }
.nx-live-dot { display: inline-block; width: 5px; height: 5px; margin-right: 7px; border-radius: 50%; background: var(--nx-green); box-shadow: 0 0 9px rgba(88, 211, 154, .4); }

.nx-section-intro { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 60px; }
.nx-section-intro .nx-kicker { grid-column: 1 / -1; }
.nx-section-intro h2 { max-width: 920px; margin: 0; color: var(--nx-ink) !important; font-size: clamp(48px, 6.2vw, 88px) !important; font-weight: 500 !important; line-height: .98; letter-spacing: -.055em !important; }
.nx-section-intro > p:last-child { max-width: 480px; margin: 0 0 7px; color: var(--nx-paper-copy) !important; font-size: 16px; font-weight: 450; line-height: 1.65; }
.nx-section-intro--dark h2 { color: var(--nx-white) !important; }
.nx-section-intro--dark > p:last-child { color: var(--nx-copy) !important; }
.nx-section-intro--dark .nx-kicker { color: var(--nx-blue) !important; }

/* Hero */

.nx-hero { position: relative; min-height: 820px; background: var(--nx-ink) !important; overflow: hidden; }
.nx-hero::before { position: absolute; top: -20%; right: -12%; width: min(60vw, 880px); aspect-ratio: 1; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(99, 217, 229, .12), rgba(99, 217, 229, .035) 38%, transparent 70%); filter: blur(10px); }
.nx-hero__inner { position: relative; display: grid; width: min(calc(100% - 48px), var(--nx-width)); min-height: 820px; margin: 0 auto; padding: 148px 0 44px; grid-template-columns: minmax(0, 1.18fr) minmax(400px, .82fr); grid-template-rows: 1fr auto; align-items: center; gap: 72px; }
.nx-hero__copy { max-width: 810px; }
.nx-hero .nx-kicker { color: var(--nx-blue) !important; }
.nx-hero h1 { margin: 0; color: var(--nx-white) !important; font-size: clamp(64px, 7vw, 104px) !important; font-weight: 500 !important; line-height: .91; letter-spacing: -.065em !important; }
.nx-hero__lede { max-width: 650px; margin: 30px 0 0; color: var(--nx-copy) !important; font-size: clamp(16px, 1.15vw, 18px); font-weight: 450; line-height: 1.7; }

.nx-market-tape { align-self: center; border: 1px solid rgba(255, 255, 255, .19); background: rgba(17, 22, 25, .82); box-shadow: 0 30px 80px rgba(0, 0, 0, .26); }
.nx-market-tape__head { display: flex; min-height: 58px; padding: 0 18px; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--nx-line); }
.nx-market-tape__head > span { color: var(--nx-white); font-size: 14px; font-weight: 600; }
.nx-market-tape__head strong { color: var(--nx-copy); font: 500 11px/1.35 var(--nx-mono); letter-spacing: .04em; text-align: right; text-transform: uppercase; }
.nx-market-tape > a { display: flex; min-height: 54px; padding: 0 18px; align-items: center; justify-content: space-between; color: var(--nx-blue) !important; border-top: 1px solid var(--nx-line); font: 500 11px/1 var(--nx-mono); letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.nx-terminal__market-head, .nx-terminal__market-row { display: grid; min-height: 62px; padding: 0 18px; grid-template-columns: 1.25fr 1fr .72fr .78fr; align-items: center; gap: 12px; border-bottom: 1px solid var(--nx-line); }
.nx-terminal__market-head { min-height: 38px; color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); letter-spacing: .04em; text-transform: uppercase; }
.nx-terminal__market-row { color: var(--nx-copy); font: 500 12px/1 var(--nx-mono); }
.nx-terminal__market-row strong { color: var(--nx-white); font-weight: 500; }
.nx-terminal__market-row .is-up { color: var(--nx-green); }
.nx-terminal__market-row .is-down { color: var(--nx-red); }

.nx-hero__facts { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr) 1.45fr; border-top: 1px solid var(--nx-line); }
.nx-hero__facts > div { padding: 18px 18px 3px 0; border-right: 1px solid var(--nx-line); }
.nx-hero__facts > div:not(:first-child) { padding-left: 18px; }
.nx-hero__facts span, .nx-hero__facts strong { display: block; font: 500 11px/1.4 var(--nx-mono); letter-spacing: .04em; text-transform: uppercase; }
.nx-hero__facts span { color: var(--nx-muted); }
.nx-hero__facts strong { margin-top: 7px; color: var(--nx-white); font-weight: 500; }
.nx-hero__facts p { margin: 0; padding: 18px 0 3px 24px; color: var(--nx-muted) !important; font: 500 11px/1.6 var(--nx-mono); letter-spacing: .025em; text-transform: uppercase; }

/* Products */

.nx-products { padding: clamp(96px, 10vw, 148px) max(24px, calc((100vw - var(--nx-width)) / 2)) !important; color: var(--nx-ink) !important; background: var(--nx-paper) !important; }
.nx-product-grid { display: grid; margin-top: 76px; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--nx-line-dark); border-left: 1px solid var(--nx-line-dark); }
.nx-product { display: flex; min-width: 0; min-height: 620px; flex-direction: column; border-right: 1px solid var(--nx-line-dark); border-bottom: 1px solid var(--nx-line-dark); background: rgba(255, 255, 255, .25); }
.nx-product__top { display: flex; min-height: 48px; padding: 0 20px; align-items: center; justify-content: space-between; gap: 20px; color: var(--nx-paper-muted); border-bottom: 1px solid var(--nx-line-dark); font: 500 11px/1 var(--nx-mono); letter-spacing: .04em; text-transform: uppercase; }
.nx-product__top strong { color: #256842; font-weight: 500; }
.nx-product__body { padding: clamp(34px, 4.5vw, 64px); }
.nx-product__body > span { color: var(--nx-blue-dark); font: 500 11px/1 var(--nx-mono); }
.nx-product h3 { max-width: 600px; margin: 48px 0 0; color: var(--nx-ink) !important; font-size: clamp(36px, 4vw, 58px) !important; font-weight: 500 !important; line-height: 1; letter-spacing: -.05em !important; }
.nx-product__body > p { max-width: 550px; margin: 26px 0 0; color: var(--nx-paper-copy) !important; font-size: 16px; font-weight: 450; line-height: 1.65; }
.nx-product dl { display: grid; margin: 46px 0 0; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--nx-line-dark); }
.nx-product dl div { padding: 16px 10px 0 0; }
.nx-product dt { color: var(--nx-paper-muted); font: 500 11px/1 var(--nx-mono); letter-spacing: .04em; text-transform: uppercase; }
.nx-product dd { margin: 8px 0 0; color: var(--nx-ink); font: 500 12px/1.35 var(--nx-mono); }
.nx-product__route { margin-top: auto; padding: 17px 20px; color: var(--nx-paper-copy); border-top: 1px solid var(--nx-line-dark); font: 500 12px/1.55 var(--nx-mono); letter-spacing: .02em; }
.nx-product > a { display: flex; min-height: 58px; padding: 0 20px; align-items: center; justify-content: space-between; color: var(--nx-ink) !important; border-top: 1px solid var(--nx-line-dark); font: 500 11px/1 var(--nx-mono); letter-spacing: .04em; text-decoration: none; text-transform: uppercase; transition: background-color 160ms ease; }
.nx-product > a:hover { background: var(--nx-blue); }

/* Markets */

.nx-markets { padding: clamp(96px, 10vw, 148px) max(24px, calc((100vw - var(--nx-width)) / 2)) !important; background: var(--nx-ink-2) !important; }
.nx-market-layout { display: grid; margin-top: 76px; gap: 18px; }
.nx-instrument { border: 1px solid rgba(255, 255, 255, .18); background: var(--nx-ink); }
.nx-instrument__bar, .nx-instrument__foot { display: flex; min-height: 48px; padding: 0 18px; align-items: center; justify-content: space-between; gap: 20px; color: var(--nx-muted); border-bottom: 1px solid var(--nx-line); font: 500 11px/1.4 var(--nx-mono); letter-spacing: .04em; text-transform: uppercase; }
.nx-instrument__bar strong { color: var(--nx-copy); font-weight: 500; }
.nx-scanner-head, .nx-scanner-row { display: grid; grid-template-columns: 1.35fr 1fr .75fr .55fr; align-items: center; }
.nx-scanner-head { min-height: 38px; padding: 0 18px; color: var(--nx-muted); border-bottom: 1px solid var(--nx-line); font: 500 11px/1 var(--nx-mono); letter-spacing: .04em; text-transform: uppercase; }
.nx-scanner-row { min-height: 68px; padding: 0 18px; color: var(--nx-copy) !important; border-bottom: 1px solid var(--nx-line); text-decoration: none; transition: background-color 160ms ease; }
.nx-scanner-row:hover { background: rgba(99, 217, 229, .06); }
.nx-scanner-row strong { color: var(--nx-white); font: 500 12px/1 var(--nx-mono); }
.nx-scanner-row span, .nx-scanner-row em { font: 500 12px/1 var(--nx-mono); font-style: normal; }
.nx-scanner-row span.is-up { color: var(--nx-green); }
.nx-scanner-row span.is-down { color: var(--nx-red); }
.nx-scanner-row em { text-align: right; }
.nx-instrument__foot { min-height: 50px; border-bottom: 0; }
.nx-text-link { display: flex; min-height: 54px; padding: 0 18px; align-items: center; justify-content: space-between; color: var(--nx-blue) !important; border-top: 1px solid var(--nx-line); font: 500 11px/1 var(--nx-mono); text-decoration: none; text-transform: uppercase; }

.nx-magnets { position: relative; display: grid; min-height: 520px; padding: clamp(26px, 4vw, 54px); grid-template-columns: .75fr 1.25fr; align-items: center; gap: clamp(34px, 5vw, 78px); border: 1px solid rgba(255, 255, 255, .18); background: var(--nx-ink); }
.nx-magnets__copy > span { color: var(--nx-blue); font: 500 11px/1 var(--nx-mono); letter-spacing: .06em; }
.nx-magnets h3 { margin: 24px 0 0; color: var(--nx-white) !important; font-size: clamp(38px, 4.4vw, 64px) !important; font-weight: 500 !important; line-height: .98; letter-spacing: -.05em !important; }
.nx-magnets__copy p { max-width: 420px; margin: 24px 0 0; color: var(--nx-copy) !important; font-size: 16px; font-weight: 450; line-height: 1.65; }
.nx-magnets__copy a { display: inline-flex; margin-top: 28px; padding-bottom: 8px; color: var(--nx-blue) !important; border-bottom: 1px solid rgba(99, 217, 229, .42); font: 500 11px/1 var(--nx-mono); text-decoration: none; text-transform: uppercase; }
.nx-magnets__field { position: relative; min-height: 390px; overflow: hidden; border: 1px solid var(--nx-line); background: #0d1214; }
.nx-magnets__field canvas { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.nx-magnets__symbols { position: absolute; z-index: 3; top: 12px; left: 12px; display: flex; border: 1px solid var(--nx-line); background: rgba(10, 13, 15, .9); }
.nx-magnets__symbols button { min-width: 48px; min-height: 34px; padding: 0 10px; color: var(--nx-muted); border: 0; border-right: 1px solid var(--nx-line); background: transparent; font: 500 11px/1 var(--nx-mono); cursor: pointer; }
.nx-magnets__symbols button:last-child { border-right: 0; }
.nx-magnets__symbols button:hover, .nx-magnets__symbols button.is-active { color: var(--nx-ink); background: var(--nx-blue); }
.nx-magnets__legend { position: absolute; z-index: 3; top: 17px; right: 12px; display: flex; gap: 14px; color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); }
.nx-magnets__legend span { display: flex; align-items: center; gap: 6px; }
.nx-magnets__legend i { display: inline-block; width: 12px; height: 2px; background: var(--nx-blue); }
.nx-magnets__legend span:last-child i { background: #d4ad68; }
.nx-magnets__field > p { position: absolute; z-index: 3; right: 12px; bottom: 10px; left: 12px; margin: 0; color: var(--nx-muted) !important; font: 500 11px/1.45 var(--nx-mono); text-transform: uppercase; }
.nx-magnets__meta { position: absolute; right: clamp(26px, 4vw, 54px); bottom: 16px; color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); text-transform: uppercase; }

/* Research */

.nx-research { padding: clamp(96px, 10vw, 148px) max(24px, calc((100vw - var(--nx-width)) / 2)) !important; color: var(--nx-ink) !important; background: var(--nx-paper) !important; }
.nx-intelligence { margin-top: 76px; padding: clamp(28px, 4vw, 52px); border: 1px solid var(--nx-line-dark); background: rgba(255, 255, 255, .25); }
.nx-intelligence__edition { display: flex; padding-bottom: 16px; justify-content: space-between; gap: 20px; color: var(--nx-paper-muted); border-bottom: 1px solid var(--nx-line-dark); font: 500 11px/1 var(--nx-mono); }
.nx-intelligence__statement { display: grid; padding: clamp(48px, 6vw, 86px) 0; grid-template-columns: .36fr 1.2fr .64fr; align-items: start; gap: 38px; }
.nx-intelligence__statement > p:first-child { margin: 8px 0 0; color: var(--nx-blue-dark) !important; font: 500 11px/1.4 var(--nx-mono); text-transform: uppercase; }
.nx-intelligence__statement h3 { margin: 0; color: var(--nx-ink) !important; font-size: clamp(38px, 4.5vw, 66px) !important; font-weight: 500 !important; line-height: 1; letter-spacing: -.05em !important; }
.nx-intelligence__statement > p:last-child { margin: 8px 0 0; color: var(--nx-paper-copy) !important; font-size: 15px; font-weight: 450; line-height: 1.65; }
.nx-intelligence__metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--nx-line-dark); border-bottom: 1px solid var(--nx-line-dark); }
.nx-intelligence__metrics > div { min-width: 0; padding: 18px 14px; border-right: 1px solid var(--nx-line-dark); }
.nx-intelligence__metrics > div:last-child { border-right: 0; }
.nx-intelligence__metrics span { display: block; color: var(--nx-paper-muted); font: 500 11px/1 var(--nx-mono); text-transform: uppercase; }
.nx-intelligence__metrics strong { display: block; margin-top: 8px; overflow: hidden; color: var(--nx-ink); font: 500 13px/1.2 var(--nx-mono); text-overflow: ellipsis; white-space: nowrap; }
.nx-intelligence > a { display: inline-flex; margin-top: 28px; padding-bottom: 8px; gap: 18px; color: var(--nx-blue-dark) !important; border-bottom: 1px solid rgba(8, 114, 125, .3); font: 500 11px/1 var(--nx-mono); text-decoration: none; text-transform: uppercase; }

.nx-sensei { margin-top: 18px; overflow: hidden; scroll-margin-top: 72px; border: 1px solid var(--nx-line-dark); background: var(--nx-ink); }
.nx-sensei__showcase { display: grid; grid-template-columns: .78fr 1.22fr; border-bottom: 1px solid var(--nx-line); }
.nx-sensei__product { display: flex; min-width: 0; padding: clamp(34px, 4.8vw, 68px); flex-direction: column; justify-content: center; border-right: 1px solid var(--nx-line); }
.nx-sensei__badges { display: flex; flex-wrap: wrap; gap: 9px; }
.nx-sensei__badges span { display: inline-flex; min-height: 30px; padding: 0 11px; align-items: center; gap: 8px; color: var(--nx-white); border: 1px solid rgba(255, 255, 255, .16); font: 600 11px/1 var(--nx-mono); letter-spacing: .04em; text-transform: uppercase; }
.nx-sensei__badges span:first-child { color: var(--nx-blue); border-color: rgba(99, 217, 229, .4); background: rgba(99, 217, 229, .06); }
.nx-sensei__name { margin: 34px 0 0; color: var(--nx-blue) !important; font: 600 12px/1 var(--nx-mono); letter-spacing: .12em; text-transform: uppercase; }
.nx-sensei__product h3 { max-width: 640px; margin: 17px 0 0; color: var(--nx-white) !important; font-size: clamp(42px, 5vw, 72px) !important; font-weight: 500 !important; line-height: .95; letter-spacing: -.052em !important; }
.nx-sensei__product h3 em { color: var(--nx-copy); font-style: normal; }
.nx-sensei__lede { max-width: 620px; margin: 27px 0 0; color: var(--nx-copy) !important; font-size: 16px; font-weight: 450; line-height: 1.65; }
.nx-sensei__cta { width: fit-content; margin-top: 32px; }
.nx-sensei__proof { position: relative; display: grid; min-width: 0; margin: 0; overflow: hidden; grid-template-rows: auto minmax(0, 1fr) auto; background: #080b0e; }
.nx-sensei__proof-bar { display: flex; min-height: 44px; padding: 0 16px; align-items: center; justify-content: space-between; gap: 18px; color: var(--nx-muted); border-bottom: 1px solid var(--nx-line); font: 500 11px/1.35 var(--nx-mono); text-transform: uppercase; }
.nx-sensei__proof-bar span:first-child { color: var(--nx-blue); }
.nx-sensei__proof img { display: block; width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: 58% center; }
.nx-sensei__proof figcaption { min-height: 42px; padding: 13px 16px; color: var(--nx-muted); border-top: 1px solid var(--nx-line); font: 500 11px/1.45 var(--nx-mono); text-transform: uppercase; }
.nx-sensei__specs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid var(--nx-line); }
.nx-sensei__specs > div { min-width: 0; min-height: 108px; padding: 21px 20px; border-right: 1px solid var(--nx-line); }
.nx-sensei__specs > div:last-child { border-right: 0; }
.nx-sensei__specs span, .nx-sensei__specs small { display: block; color: var(--nx-muted); font: 500 11px/1.35 var(--nx-mono); text-transform: uppercase; }
.nx-sensei__specs strong { display: block; margin-top: 12px; color: var(--nx-white); font-size: 14px; font-weight: 650; line-height: 1.35; }
.nx-sensei__specs small { margin-top: 8px; color: var(--nx-copy); text-transform: none; }
.nx-sensei__tier-note { margin: 0; padding: 20px clamp(20px, 3vw, 36px); color: var(--nx-copy) !important; border-bottom: 1px solid var(--nx-line); font-size: 15px; font-weight: 450; line-height: 1.65; }
.nx-sensei__roles { display: grid; margin: 0; grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid var(--nx-line); }
.nx-sensei__roles > div { min-width: 0; min-height: 80px; padding: 18px 20px; border-right: 1px solid var(--nx-line); }
.nx-sensei__roles > div:last-child { border-right: 0; }
.nx-sensei__roles dt { color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); text-transform: uppercase; }
.nx-sensei__roles dd { margin: 10px 0 0; color: var(--nx-white); font-size: 13px; font-weight: 600; line-height: 1.35; }

/* Academy and directory */

.nx-academy { display: grid; padding: clamp(96px, 10vw, 148px) max(24px, calc((100vw - var(--nx-width)) / 2)) !important; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(60px, 9vw, 140px); color: var(--nx-ink) !important; background: var(--nx-paper-2) !important; }
.nx-academy h2 { margin: 0; color: var(--nx-ink) !important; font-size: clamp(48px, 6.2vw, 88px) !important; font-weight: 500 !important; line-height: .98; letter-spacing: -.055em !important; }
.nx-academy__copy > p:not(.nx-kicker) { max-width: 560px; margin: 28px 0 0; color: var(--nx-paper-copy) !important; font-size: 16px; font-weight: 450; line-height: 1.65; }
.nx-academy .nx-button { margin-top: 34px; }
.nx-academy ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--nx-line-dark); }
.nx-academy li { display: grid; min-height: 82px; padding: 0 4px; grid-template-columns: 50px 1fr auto; align-items: center; gap: 16px; border-bottom: 1px solid var(--nx-line-dark); }
.nx-academy li span, .nx-academy li small { color: var(--nx-paper-muted); font: 500 11px/1 var(--nx-mono); text-transform: uppercase; }
.nx-academy li strong { color: var(--nx-ink); font-size: 15px; font-weight: 600; }

.nx-directory { padding: clamp(94px, 9vw, 132px) max(24px, calc((100vw - var(--nx-width)) / 2)) !important; background: var(--nx-ink-2) !important; }
.nx-directory__head { display: grid; grid-template-columns: 1.15fr .55fr; align-items: end; gap: 60px; }
.nx-directory__head .nx-kicker { color: var(--nx-blue) !important; }
.nx-directory__head h2 { max-width: 850px; margin: 0; color: var(--nx-white) !important; font-size: clamp(44px, 5.6vw, 78px) !important; font-weight: 500 !important; line-height: 1; letter-spacing: -.05em !important; }
.nx-directory__head > p { margin: 0 0 7px; color: var(--nx-copy) !important; font-size: 15px; font-weight: 450; line-height: 1.65; }
.nx-directory__head > p a { color: var(--nx-blue) !important; }
.nx-directory__grid { display: grid; margin-top: 66px; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--nx-line); border-left: 1px solid var(--nx-line); }
.nx-directory__grid a { display: grid; min-height: 142px; padding: 24px; align-content: space-between; grid-template-columns: 1fr auto; color: var(--nx-white) !important; border-right: 1px solid var(--nx-line); border-bottom: 1px solid var(--nx-line); text-decoration: none; transition: background-color 160ms ease; }
.nx-directory__grid a:hover { background: rgba(99, 217, 229, .06); }
.nx-directory__grid span { font-size: 20px; font-weight: 500; letter-spacing: -.025em; }
.nx-directory__grid small { grid-column: 1; color: var(--nx-muted); font: 500 12px/1.45 var(--nx-mono); }
.nx-directory__grid small em { display: inline-block; margin-right: 9px; color: var(--nx-blue); font: inherit; font-style: normal; text-transform: uppercase; }
.nx-directory__grid b { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--nx-blue); font: 500 11px/1 var(--nx-mono); text-transform: uppercase; }
.nx-directory__grid .nx-directory__feature { min-height: 176px; grid-column: 1 / -1; background: linear-gradient(110deg, rgba(99, 217, 229, .1), rgba(99, 217, 229, .015) 68%); }
.nx-directory__grid .nx-directory__feature span { align-self: end; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.045em; }
.nx-directory__grid .nx-directory__feature small { align-self: start; max-width: 680px; margin-top: 18px; }

/* Operating sequence and close */

.nx-sequence { padding: clamp(96px, 10vw, 146px) max(24px, calc((100vw - var(--nx-width)) / 2)); overflow: hidden; background: #0d1113; border-top: 1px solid var(--nx-line); }
.nx-sequence__head { display: grid; grid-template-columns: 1.25fr .55fr; align-items: end; gap: clamp(48px, 8vw, 112px); }
.nx-sequence__head .nx-kicker { color: var(--nx-blue) !important; }
.nx-sequence__head h2 { max-width: 980px; margin: 0; color: var(--nx-white) !important; font-size: clamp(52px, 6.8vw, 96px) !important; font-weight: 500 !important; line-height: .94; letter-spacing: -.06em !important; }
.nx-sequence__head h2 em { color: var(--nx-muted); font-style: normal; }
.nx-sequence__head > p { margin: 0 0 7px; color: var(--nx-copy) !important; font-size: 16px; font-weight: 450; line-height: 1.7; }
.nx-sequence__route { position: relative; display: grid; margin-top: 78px; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--nx-line); border-left: 1px solid var(--nx-line); }
.nx-sequence__beam { position: absolute; z-index: 2; top: -1px; left: 0; width: 25%; height: 1px; pointer-events: none; background: linear-gradient(90deg, transparent, var(--nx-blue), transparent); box-shadow: 0 0 18px rgba(99, 217, 229, .8); animation: nx-sequence-scan 6s var(--nx-ease) infinite alternate; }
.nx-sequence__route > article { position: relative; display: flex; min-width: 0; min-height: 430px; padding: 28px; flex-direction: column; border-right: 1px solid var(--nx-line); border-bottom: 1px solid var(--nx-line); transition: background-color 180ms ease, transform 220ms var(--nx-ease); }
.nx-sequence__route > article::before { position: absolute; top: -4px; left: 28px; z-index: 3; width: 7px; height: 7px; content: ""; border: 1px solid var(--nx-blue); border-radius: 50%; background: #0d1113; box-shadow: 0 0 0 4px #0d1113; }
.nx-sequence__route > article:hover { z-index: 1; background: rgba(99, 217, 229, .055); transform: translateY(-6px); }
.nx-sequence__route > article:hover::before { background: var(--nx-blue); box-shadow: 0 0 18px rgba(99, 217, 229, .75); }
.nx-sequence__stage { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); letter-spacing: .05em; text-transform: uppercase; }
.nx-sequence__stage span { color: var(--nx-blue); }
.nx-sequence__stage b { font: inherit; }
.nx-sequence__route h3 { margin: 88px 0 0; color: var(--nx-white) !important; font-size: clamp(34px, 3.2vw, 46px) !important; font-weight: 500 !important; line-height: 1; letter-spacing: -.045em !important; }
.nx-sequence__route article > p { max-width: 320px; margin: 24px 0 36px; color: var(--nx-copy) !important; font-size: 15px; font-weight: 450; line-height: 1.68; }
.nx-sequence__route article > a, .nx-sequence__links { margin-top: auto; }
.nx-sequence__route article > a, .nx-sequence__links a { display: flex; min-height: 50px; padding: 0 2px; align-items: center; justify-content: space-between; gap: 16px; color: var(--nx-white) !important; border-top: 1px solid var(--nx-line); text-decoration: none; }
.nx-sequence__route article > a span, .nx-sequence__links a span { font-size: 14px; font-weight: 600; }
.nx-sequence__route article > a b, .nx-sequence__links a b { color: var(--nx-blue); font: 500 11px/1 var(--nx-mono); text-transform: uppercase; }
.nx-sequence__route article > a:hover span, .nx-sequence__links a:hover span { color: var(--nx-blue); }
.nx-sequence__execute { background: linear-gradient(145deg, rgba(99, 217, 229, .105), rgba(99, 217, 229, .015) 68%); }
.nx-sequence__trust { display: grid; min-height: 68px; padding: 14px 18px; grid-template-columns: auto auto auto 1fr; align-items: center; gap: 16px 30px; border-right: 1px solid var(--nx-line); border-bottom: 1px solid var(--nx-line); border-left: 1px solid var(--nx-line); color: var(--nx-muted); font: 500 11px/1.45 var(--nx-mono); letter-spacing: .03em; text-transform: uppercase; }
.nx-sequence__trust > span { white-space: nowrap; }
.nx-sequence__trust .nx-live-dot { margin-right: 7px; }
.nx-sequence__trust nav { display: flex; justify-self: end; flex-wrap: wrap; gap: 12px 22px; }
.nx-sequence__trust a { color: var(--nx-blue) !important; text-decoration: none; }
.nx-sequence__trust a:hover { color: var(--nx-white) !important; }

@keyframes nx-sequence-scan { to { left: 75%; } }

.nx-final { display: grid; padding: clamp(92px, 10vw, 146px) max(24px, calc((100vw - var(--nx-width)) / 2)) !important; grid-template-columns: 1fr .8fr; align-items: end; gap: clamp(60px, 9vw, 140px); color: var(--nx-ink) !important; background: var(--nx-blue) !important; }
.nx-final .nx-kicker { color: var(--nx-ink) !important; }
.nx-final h2 { margin: 0; color: var(--nx-ink) !important; font-size: clamp(52px, 6.6vw, 94px) !important; font-weight: 500 !important; line-height: .93; letter-spacing: -.06em !important; }
.nx-final > div:first-child > p:last-child { max-width: 590px; margin: 28px 0 0; color: var(--nx-blue-copy) !important; font-size: 16px; font-weight: 500; line-height: 1.65; }
.nx-final__actions { border-top: 1px solid rgba(10, 13, 15, .3); }
.nx-final__actions a { display: grid; min-height: 92px; padding: 0 4px; grid-template-columns: 1fr auto; align-content: center; gap: 8px 20px; color: var(--nx-ink) !important; border-bottom: 1px solid rgba(10, 13, 15, .3); text-decoration: none; }
.nx-final__actions span { font-size: 18px; font-weight: 600; }
.nx-final__actions small { grid-column: 1; color: var(--nx-blue-copy); font: 500 11px/1 var(--nx-mono); text-transform: uppercase; }
.nx-final__actions b { grid-column: 2; grid-row: 1 / 3; align-self: center; font: 500 11px/1 var(--nx-mono); text-transform: uppercase; }

/* Footer */

.nx-footer { padding: 70px max(24px, calc((100vw - var(--nx-width)) / 2)) 24px !important; background: var(--nx-ink) !important; border-top: 1px solid var(--nx-line) !important; }
.nx-footer__top { display: flex; padding-bottom: 52px; align-items: flex-start; justify-content: space-between; gap: 40px; }
.nx-footer__top p { max-width: 420px; margin: 0; color: var(--nx-muted) !important; font-size: 15px; font-weight: 450; line-height: 1.65; text-align: right; }
.nx-footer__links { display: grid; padding: 42px 0; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--nx-line); border-bottom: 1px solid var(--nx-line); }
.nx-footer__links > div { display: grid; align-content: start; gap: 11px; }
.nx-footer__links span { margin-bottom: 8px; color: var(--nx-blue); font: 500 11px/1 var(--nx-mono); text-transform: uppercase; }
.nx-footer__links a { width: fit-content; color: var(--nx-copy) !important; font-size: 13px; font-weight: 500; text-decoration: none; }
.nx-footer__links a:hover { color: var(--nx-white) !important; }
.nx-footer__bottom { display: grid; padding-top: 22px; grid-template-columns: 1fr 2fr 1fr; gap: 18px; color: var(--nx-muted); font: 500 11px/1.5 var(--nx-mono); text-transform: uppercase; }
.nx-footer__bottom span:nth-child(2) { text-align: center; }
.nx-footer__bottom a { justify-self: end; text-decoration: none; }

/* Motion */

[data-reveal] { opacity: 1; transform: translateY(0); }
[data-reveal].is-reveal-ready { opacity: 0; transform: translateY(16px); transition: opacity 600ms ease, transform 760ms var(--nx-ease); }
[data-reveal].is-reveal-ready.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */

@media (max-width: 1060px) {
  .nx-hero__inner { grid-template-columns: 1fr minmax(360px, .75fr); gap: 42px; }
  .nx-hero__facts { grid-template-columns: repeat(3, 1fr); }
  .nx-hero__facts p { grid-column: 1 / -1; padding-left: 0; border-top: 1px solid var(--nx-line); }
  .nx-section-intro, .nx-directory__head { grid-template-columns: 1fr .65fr; }
  .nx-product h3 { font-size: clamp(34px, 4.5vw, 50px) !important; }
  .nx-intelligence__statement { grid-template-columns: .3fr 1fr; }
  .nx-intelligence__statement > p:last-child { grid-column: 2; }
  .nx-sequence__route { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nx-sequence__beam { display: none; }
  .nx-sequence__trust { grid-template-columns: repeat(3, auto); }
  .nx-sequence__trust nav { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 860px) {
  .nx-header { height: 66px; }
  .nx-header__inner { width: calc(100% - 28px); }
  .nx-menu-toggle { display: block; }
  .nx-nav { position: fixed; top: 65px; right: 0; left: 0; display: grid; max-height: 0; padding: 0 14px !important; overflow: hidden; gap: 0; background: rgba(10, 13, 15, .98) !important; transition: max-height 360ms var(--nx-ease), padding 360ms var(--nx-ease); }
  .nx-header.is-open .nx-nav { height: calc(100svh - 65px); max-height: calc(100svh - 65px); padding-block: 12px 24px !important; align-content: start; }
  .nx-nav a { display: flex; min-height: 52px; align-items: center; border-bottom: 1px solid var(--nx-line); }
  .nx-nav__terminal { margin-top: 12px; justify-content: space-between; }
  .nx-header.is-open .nx-menu-toggle i:first-of-type { transform: translateY(3px) rotate(45deg); }
  .nx-header.is-open .nx-menu-toggle i:last-of-type { transform: translateY(-3px) rotate(-45deg); }
  .nx-hero__inner { padding-top: 124px; grid-template-columns: 1fr; grid-template-rows: auto auto auto; align-content: center; }
  .nx-hero__copy { max-width: 760px; }
  .nx-market-tape { width: min(100%, 680px); }
  .nx-section-intro, .nx-directory__head, .nx-sequence__head { grid-template-columns: 1fr; gap: 28px; }
  .nx-section-intro > p:last-child, .nx-directory__head > p, .nx-sequence__head > p { margin: 0; }
  .nx-product-grid { grid-template-columns: 1fr; }
  .nx-product { min-height: 560px; }
  .nx-magnets { grid-template-columns: 1fr; }
  .nx-magnets__field { min-height: 340px; }
  .nx-magnets__meta { position: static; grid-column: 1; }
  .nx-sensei__showcase { grid-template-columns: 1fr; }
  .nx-sensei__product { border-right: 0; border-bottom: 1px solid var(--nx-line); }
  .nx-sensei__specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nx-sensei__specs > div:nth-child(2) { border-right: 0; }
  .nx-sensei__specs > div:nth-child(-n + 2) { border-bottom: 1px solid var(--nx-line); }
  .nx-sensei__roles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nx-sensei__roles > div:nth-child(2) { border-right: 0; }
  .nx-sensei__roles > div:nth-child(-n + 2) { border-bottom: 1px solid var(--nx-line); }
  .nx-academy, .nx-final { grid-template-columns: 1fr; }
  .nx-directory__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .nx-header__inner, .nx-hero__inner { width: calc(100% - 24px); }
  .nx-wordmark em { display: none; }
  .nx-hero { min-height: 0; }
  .nx-hero__inner { min-height: 0; padding: 112px 0 26px; gap: 42px; }
  .nx-hero h1 { font-size: clamp(52px, 15.6vw, 72px) !important; line-height: .94; }
  .nx-hero__lede { font-size: 16px; line-height: 1.65; }
  .nx-actions { margin-top: 26px; }
  .nx-button { width: 100%; min-width: 0; }
  .nx-terminal__market-head, .nx-terminal__market-row { padding-inline: 12px; grid-template-columns: 1.2fr .9fr .65fr; gap: 8px; }
  .nx-terminal__market-head span:last-child, .nx-terminal__market-row span:last-child { display: none; }
  .nx-hero__facts { grid-template-columns: 1fr; }
  .nx-hero__facts > div { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--nx-line); }
  .nx-hero__facts > div:not(:first-child) { padding-left: 0; }
  .nx-hero__facts p { padding-top: 14px; border-top: 0; }
  .nx-products, .nx-markets, .nx-research, .nx-academy, .nx-directory, .nx-final { padding: 82px 12px !important; }
  .nx-section-intro h2, .nx-academy h2, .nx-final h2 { font-size: clamp(42px, 13vw, 58px) !important; }
  .nx-product-grid, .nx-market-layout, .nx-intelligence { margin-top: 54px; }
  .nx-product { min-height: 0; }
  .nx-product__body { padding: 32px 20px; }
  .nx-product h3 { margin-top: 34px; font-size: clamp(34px, 10.4vw, 46px) !important; }
  .nx-product dl { grid-template-columns: 1fr; }
  .nx-product dl div { padding-bottom: 12px; border-bottom: 1px solid var(--nx-line-dark); }
  .nx-instrument__bar, .nx-instrument__foot { display: grid; padding-block: 12px; }
  .nx-scanner-head, .nx-scanner-row { grid-template-columns: 1.2fr .9fr .65fr; padding-inline: 12px; }
  .nx-scanner-head span:last-child, .nx-scanner-row em { display: none; }
  .nx-magnets { padding: 26px 18px; }
  .nx-magnets__field { min-height: 280px; }
  .nx-magnets__legend { display: none; }
  .nx-intelligence { padding: 24px 18px; }
  .nx-intelligence__statement { padding: 42px 0; grid-template-columns: 1fr; gap: 20px; }
  .nx-intelligence__statement > p:last-child { grid-column: 1; }
  .nx-intelligence__statement h3 { font-size: clamp(34px, 10.5vw, 46px) !important; }
  .nx-intelligence__metrics { grid-template-columns: 1fr; }
  .nx-intelligence__metrics > div { border-right: 0; border-bottom: 1px solid var(--nx-line-dark); }
  .nx-intelligence__metrics > div:last-child { border-bottom: 0; }
  .nx-sensei__product { min-height: 0; padding: 34px 18px; }
  .nx-sensei__product h3 { font-size: clamp(36px, 11vw, 48px) !important; }
  .nx-sensei__lede { font-size: 15px; }
  .nx-sensei__cta { width: 100%; }
  .nx-sensei__proof-bar { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
  .nx-sensei__proof img { height: 260px; min-height: 0; object-position: 58% center; }
  .nx-sensei__specs > div { min-height: 116px; padding-inline: 15px; }
  .nx-sensei__roles > div { padding-inline: 15px; }
  .nx-academy { gap: 52px; }
  .nx-academy li { grid-template-columns: 36px 1fr; }
  .nx-academy li small { display: none; }
  .nx-directory__grid { margin-top: 48px; grid-template-columns: 1fr; }
  .nx-directory__grid .nx-directory__feature { grid-column: 1; grid-template-columns: minmax(0, 1fr); align-content: start; row-gap: 18px; }
  .nx-directory__grid .nx-directory__feature span { align-self: start; }
  .nx-directory__grid .nx-directory__feature small { grid-column: 1; margin-top: 0; }
  .nx-directory__grid .nx-directory__feature b { grid-column: 1; grid-row: auto; justify-self: start; align-self: start; margin-top: 2px; }
  .nx-sequence { padding: 82px 12px; }
  .nx-sequence__head h2 { font-size: clamp(42px, 13vw, 58px) !important; }
  .nx-sequence__route { margin-top: 52px; grid-template-columns: 1fr; }
  .nx-sequence__route > article { min-height: 340px; }
  .nx-sequence__route h3 { margin-top: 58px; font-size: clamp(34px, 10.5vw, 46px) !important; }
  .nx-sequence__trust { grid-template-columns: 1fr; padding-block: 20px; }
  .nx-sequence__trust > span { white-space: normal; }
  .nx-sequence__trust nav { grid-column: 1; justify-self: stretch; }
  .nx-final { gap: 52px; }
  .nx-footer { padding: 58px 12px 20px !important; }
  .nx-footer__top { display: grid; gap: 26px; }
  .nx-footer__top p { text-align: left; }
  .nx-footer__links { grid-template-columns: repeat(2, 1fr); gap: 38px 18px; }
  .nx-footer__bottom { grid-template-columns: 1fr; }
  .nx-footer__bottom span:nth-child(2) { text-align: left; }
  .nx-footer__bottom a { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .nx-sequence__beam { animation: none; }
}

/* Command Array / original Hub interaction layer */

.nx-nav__terminal {
  border: 0;
  font: 500 11px/1 var(--nx-mono);
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}

.nx-button:is(button) { cursor: pointer; font-family: var(--nx-mono); }

.nx-orbit-console {
  position: relative;
  min-height: 520px;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .19);
  background: #0c1113;
  box-shadow: 0 36px 100px rgba(0, 0, 0, .34);
  isolation: isolate;
}

.nx-orbit-console::before,
.nx-orbit-console::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.nx-orbit-console::before {
  top: 50%;
  left: 50%;
  width: 330px;
  aspect-ratio: 1;
  border: 1px solid rgba(99, 217, 229, .18);
  border-radius: 50%;
  transform: translate(-50%, -51%);
  box-shadow: 0 0 0 52px rgba(99, 217, 229, .025), 0 0 0 104px rgba(99, 217, 229, .018);
}

.nx-orbit-console::after {
  inset: 58px 0 72px;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(99, 217, 229, .12) 50%, transparent calc(50% + .5px)),
    linear-gradient(transparent calc(50% - .5px), rgba(99, 217, 229, .1) 50%, transparent calc(50% + .5px));
}

.nx-orbit-console > canvas {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .58;
  pointer-events: none;
}

.nx-orbit-console__head {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 58px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--nx-muted);
  border-bottom: 1px solid var(--nx-line);
  font: 500 11px/1.4 var(--nx-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nx-orbit-console__head strong { color: var(--nx-copy); font-weight: 400; text-align: right; }
.nx-orbit-console__field { position: relative; min-height: 386px; }

.nx-orbit-console__core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 164px;
  aspect-ratio: 1;
  place-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(99, 217, 229, .34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 217, 229, .12), rgba(10, 13, 15, .92) 68%);
  box-shadow: 0 0 44px rgba(99, 217, 229, .09), inset 0 0 28px rgba(99, 217, 229, .05);
}

.nx-orbit-console__core::before {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px dashed rgba(99, 217, 229, .18);
  border-radius: 50%;
  animation: nx-orbit-spin 22s linear infinite;
}

.nx-orbit-console__core span { color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); letter-spacing: .07em; }
.nx-orbit-console__core strong { margin-top: 8px; color: var(--nx-white); font-size: 24px; font-weight: 500; letter-spacing: -.035em; }
.nx-orbit-console__core small { margin-top: 7px; color: var(--nx-blue); font: 500 11px/1 var(--nx-mono); }

.nx-orbit-action {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 122px;
  min-height: 62px;
  padding: 11px 13px;
  grid-template-columns: 25px 1fr;
  align-content: center;
  color: var(--nx-copy);
  border: 1px solid var(--nx-line);
  background: rgba(10, 13, 15, .84);
  font-family: var(--nx-mono);
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 240ms var(--nx-ease);
}

.nx-orbit-action:hover,
.nx-orbit-action:focus-visible { color: var(--nx-white); border-color: rgba(99, 217, 229, .52); background: rgba(16, 27, 30, .96); transform: translateY(-3px); }
.nx-orbit-action:disabled { opacity: .46; cursor: not-allowed; }
.nx-orbit-action:disabled:hover { color: var(--nx-copy); border-color: var(--nx-line); background: rgba(10, 13, 15, .84); transform: none; }
.nx-orbit-action > span { grid-row: 1 / 3; color: var(--nx-blue); font-size: 9px; }
.nx-orbit-action strong { font-size: 11px; font-weight: 600; letter-spacing: .06em; }
.nx-orbit-action small { margin-top: 5px; color: var(--nx-muted); font-size: 11px; font-weight: 500; line-height: 1.3; letter-spacing: .025em; text-transform: uppercase; }
.nx-orbit-action--swap { top: 43px; left: 25px; }
.nx-orbit-action--pulse { top: 43px; right: 25px; }
.nx-orbit-action--risk { right: 25px; bottom: 38px; }
.nx-orbit-action--stream { bottom: 38px; left: 25px; }

.nx-orbit-console__tape { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--nx-line); }
.nx-orbit-console__tape button { display: grid; min-height: 72px; padding: 0 14px; grid-template-columns: auto 1fr; align-items: center; gap: 12px; color: var(--nx-muted); border: 0; border-right: 1px solid var(--nx-line); background: rgba(10, 13, 15, .94); cursor: pointer; }
.nx-orbit-console__tape button:last-child { border-right: 0; }
.nx-orbit-console__tape button.is-active { color: var(--nx-blue); background: rgba(99, 217, 229, .06); }
.nx-orbit-console__tape button > span { font: 500 11px/1 var(--nx-mono); }
.nx-orbit-console__tape strong { display: grid; justify-items: end; gap: 6px; }
.nx-orbit-console__tape i { color: var(--nx-copy); font: 500 11px/1 var(--nx-mono); font-style: normal; }
.nx-orbit-console__tape i.is-up { color: var(--nx-green); }
.nx-orbit-console__tape i.is-down { color: var(--nx-red); }

@keyframes nx-orbit-spin { to { transform: rotate(360deg); } }

/* Fixed launcher */

.nx-command-launcher {
  position: fixed;
  z-index: 110;
  right: 20px;
  bottom: 20px;
  display: grid;
  min-width: 184px;
  min-height: 50px;
  padding: 0 12px;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 9px;
  color: var(--nx-white);
  border: 1px solid rgba(99, 217, 229, .38);
  background: rgba(10, 13, 15, .9);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .3);
  cursor: pointer;
  transition: transform 220ms var(--nx-ease), border-color 160ms ease;
}
.nx-command-launcher:hover { transform: translateY(-3px); border-color: var(--nx-blue); }
.nx-command-launcher > span { display: grid; width: 26px; aspect-ratio: 1; place-content: center; color: var(--nx-ink); background: var(--nx-blue); font: 600 11px/1 var(--nx-mono); }
.nx-command-launcher strong { font: 600 11px/1 var(--nx-mono); letter-spacing: .05em; text-align: left; text-transform: uppercase; }
.nx-command-launcher small { color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); }

/* Full-screen command deck */

.nx-command[hidden] { display: none; }
.nx-command { position: fixed; z-index: 500; inset: 0; display: grid; padding: 14px; place-items: center; }
.nx-command__backdrop { position: absolute; inset: 0; background: rgba(2, 5, 6, .9); backdrop-filter: blur(18px) saturate(80%); }
.nx-command__shell { position: relative; display: grid; width: min(1560px, 100%); height: min(920px, calc(100svh - 28px)); overflow: hidden; grid-template-rows: 64px 1fr; color: var(--nx-white); border: 1px solid rgba(255, 255, 255, .2); background: #0a0e10; box-shadow: 0 50px 160px rgba(0, 0, 0, .56); animation: nx-command-in 420ms var(--nx-ease) both; }
.nx-command__shell::before { position: absolute; z-index: 0; top: 64px; right: 0; left: 0; height: 1px; content: ""; background: linear-gradient(90deg, transparent, var(--nx-blue), transparent); opacity: .46; }
.nx-command__header { position: relative; z-index: 3; display: grid; min-width: 0; padding: 0 18px; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; border-bottom: 1px solid var(--nx-line); background: #0c1113; }
.nx-command__header > div:first-child { display: flex; align-items: center; gap: 12px; }
.nx-command__header p { display: grid; margin: 0; gap: 5px; }
.nx-command__header p strong { font: 600 11px/1 var(--nx-mono); letter-spacing: .06em; }
.nx-command__header p small { color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); text-transform: uppercase; }
.nx-command__status { display: flex; align-items: center; gap: 8px; color: var(--nx-copy); font: 500 11px/1 var(--nx-mono); letter-spacing: .04em; text-transform: uppercase; }
.nx-command__status b { margin-left: 12px; padding: 6px 8px; color: #e7bd74; border: 1px solid rgba(231, 189, 116, .28); font-weight: 500; }
.nx-command__header > button { justify-self: end; display: flex; min-height: 34px; padding: 0 0 0 12px; align-items: center; gap: 16px; color: var(--nx-copy); border: 1px solid var(--nx-line); background: transparent; font: 600 11px/1 var(--nx-mono); text-transform: uppercase; cursor: pointer; }
.nx-command kbd { display: inline-grid; min-width: 30px; min-height: 32px; padding: 0 7px; place-content: center; color: var(--nx-muted); border-left: 1px solid var(--nx-line); font: 500 11px/1 var(--nx-mono); }
.nx-command__body { position: relative; z-index: 1; display: grid; min-height: 0; grid-template-columns: 190px minmax(0, 1fr) 184px; }

.nx-command__nav { display: grid; min-height: 0; padding: 20px 12px; align-content: start; gap: 8px; border-right: 1px solid var(--nx-line); background: #0c1113; }
.nx-command__nav button { position: relative; display: grid; min-height: 76px; padding: 12px; grid-template-columns: 24px 1fr; align-content: center; color: var(--nx-muted); border: 1px solid transparent; background: transparent; font-family: var(--nx-mono); text-align: left; cursor: pointer; transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease; }
.nx-command__nav button::before { position: absolute; top: 8px; bottom: 8px; left: -13px; width: 2px; content: ""; background: var(--nx-blue); transform: scaleY(0); transition: transform 180ms var(--nx-ease); }
.nx-command__nav button:hover { color: var(--nx-white); background: rgba(255, 255, 255, .025); }
.nx-command__nav button:disabled { color: rgba(163, 173, 176, .42); cursor: not-allowed; }
.nx-command__nav button:disabled:hover { color: rgba(163, 173, 176, .42); background: transparent; }
.nx-command__nav button.is-active { color: var(--nx-white); border-color: var(--nx-line); background: rgba(99, 217, 229, .06); }
.nx-command__nav button.is-active::before { transform: scaleY(1); }
.nx-command__nav span { grid-row: 1 / 3; color: var(--nx-blue); font-size: 9px; }
.nx-command__nav strong { font-size: 11px; font-weight: 600; letter-spacing: .035em; }
.nx-command__nav small { margin-top: 6px; color: var(--nx-muted); font-size: 11px; font-weight: 500; line-height: 1.35; text-transform: uppercase; }

.nx-command__workspace { min-width: 0; min-height: 0; overflow: hidden auto; background: radial-gradient(circle at 48% 4%, rgba(99, 217, 229, .065), transparent 30%), #090d0f; }
.nx-command-panel[hidden] { display: none; }
.nx-command-panel { min-height: 100%; padding: clamp(24px, 3vw, 42px); }
.nx-command-panel__intro { display: grid; grid-template-columns: 1.15fr .55fr; align-items: end; gap: 42px; padding-bottom: 28px; border-bottom: 1px solid var(--nx-line); }
.nx-command-panel__intro span { color: var(--nx-blue); font: 500 11px/1 var(--nx-mono); letter-spacing: .07em; }
.nx-command-panel__intro h2 { max-width: 760px; margin: 18px 0 0; color: var(--nx-white) !important; font-size: clamp(34px, 4vw, 58px) !important; font-weight: 500 !important; line-height: 1; letter-spacing: -.048em !important; }
.nx-command-panel__intro > p { max-width: 480px; margin: 0; color: var(--nx-copy) !important; font-size: 15px; font-weight: 450; line-height: 1.65; }

.nx-command__context { display: grid; min-height: 0; padding: 20px 14px; align-content: start; gap: 0; border-left: 1px solid var(--nx-line); background: #0c1113; }
.nx-command__context > div { padding: 18px 0; border-bottom: 1px solid var(--nx-line); }
.nx-command__context span, .nx-command__context strong, .nx-command__context small { display: block; font-family: var(--nx-mono); }
.nx-command__context span { color: var(--nx-muted); font-size: 11px; font-weight: 500; letter-spacing: .06em; }
.nx-command__context strong { margin-top: 9px; color: var(--nx-white); font-size: 12px; font-weight: 600; }
.nx-command__context small { margin-top: 6px; color: var(--nx-muted); font-size: 11px; font-weight: 500; line-height: 1.5; }
.nx-command__context > p { margin: auto 0 0; color: var(--nx-muted) !important; font: 500 11px/1.65 var(--nx-mono); }
.nx-command__context kbd { display: inline-grid; min-width: 20px; min-height: 20px; margin-inline: 2px; border: 1px solid var(--nx-line); }
.nx-command__toast { position: absolute; z-index: 8; right: 22px; bottom: 20px; max-width: 330px; padding: 12px 14px; color: var(--nx-ink); background: var(--nx-blue); font: 600 11px/1.4 var(--nx-mono); transform: translateY(20px); opacity: 0; pointer-events: none; transition: opacity 180ms ease, transform 220ms var(--nx-ease); }
.nx-command__toast.is-visible { opacity: 1; transform: translateY(0); }

@keyframes nx-command-in { from { opacity: 0; transform: translateY(22px) scale(.985); } to { opacity: 1; transform: none; } }

/* Hub-native execution composition */

.nx-command-swap-stage { display: grid; margin-top: 24px; grid-template-columns: minmax(0, 1fr) 220px; gap: 18px; }
.nx-command-swap-stage__frame { position: relative; display: grid; min-height: 550px; padding: clamp(24px, 5vw, 70px); place-items: center; border: 1px solid var(--nx-line); background: radial-gradient(circle at 50% 35%, rgba(99, 217, 229, .11), transparent 42%), rgba(5, 8, 9, .82); }
.nx-command__swap-engine { position: relative; z-index: 2; width: min(480px, 100%); min-width: 0; min-height: 500px; }
.nx-command-swap-stage__loading, .nx-command-swap-stage__fallback { position: absolute; z-index: 3; inset: 0; display: grid; padding: 28px; place-content: center; justify-items: center; text-align: center; background: rgba(5, 8, 9, .94); }
.nx-command-swap-stage__loading[hidden], .nx-command-swap-stage__fallback[hidden] { display: none; }
.nx-command-swap-stage__loading i { width: 34px; height: 34px; border: 1px solid rgba(99, 217, 229, .25); border-top-color: var(--nx-blue); border-radius: 50%; animation: nx-swap-loading 900ms linear infinite; }
.nx-command-swap-stage__loading span { margin-top: 18px; color: var(--nx-blue); font: 500 11px/1.4 var(--nx-mono); letter-spacing: .07em; text-transform: uppercase; }
.nx-command-swap-stage__fallback { align-content: center; }
.nx-command-swap-stage__fallback strong { color: var(--nx-white); font-size: clamp(24px, 4vw, 40px); font-weight: 500; letter-spacing: -.04em; }
.nx-command-swap-stage__fallback p { max-width: 480px; margin: 16px 0 24px; color: var(--nx-copy) !important; font-size: 15px; font-weight: 450; line-height: 1.65; }
@keyframes nx-swap-loading { to { transform: rotate(360deg); } }
.nx-command-swap-stage__launch { display: grid; width: min(680px, 100%); justify-items: start; }
.nx-command-swap-stage__launch > span { color: var(--nx-blue); font: 500 11px/1 var(--nx-mono); letter-spacing: .07em; }
.nx-command-swap-stage__launch > strong { max-width: 600px; margin-top: 28px; color: var(--nx-white); font-size: clamp(32px, 4.5vw, 62px); font-weight: 500; line-height: 1; letter-spacing: -.05em; }
.nx-command-swap-stage__launch > p { max-width: 600px; margin: 22px 0 0; color: var(--nx-copy) !important; font-size: 15px; font-weight: 450; line-height: 1.65; }
.nx-command-swap-stage__launch > div { display: flex; margin-top: 34px; flex-wrap: wrap; gap: 10px; }
.nx-command-swap-stage > aside { padding: 22px 18px; border: 1px solid var(--nx-line); background: rgba(12, 17, 19, .9); }
.nx-command-swap-stage > aside > span { color: var(--nx-blue); font: 500 11px/1 var(--nx-mono); text-transform: uppercase; }
.nx-command-swap-stage ol { margin: 30px 0; padding: 0; list-style: none; border-top: 1px solid var(--nx-line); }
.nx-command-swap-stage li { display: grid; min-height: 64px; grid-template-columns: 28px 1fr; align-items: center; color: var(--nx-copy); border-bottom: 1px solid var(--nx-line); font-size: 15px; font-weight: 450; line-height: 1.5; }
.nx-command-swap-stage li b { color: var(--nx-blue); font: 500 9px/1 var(--nx-mono); }
.nx-command-swap-stage aside p { color: var(--nx-muted) !important; font-size: 15px; font-weight: 450; line-height: 1.65; }
.nx-command-swap-stage aside a { display: inline-block; margin-top: 18px; color: var(--nx-blue) !important; font: 500 11px/1 var(--nx-mono); text-decoration: none; text-transform: uppercase; }

/* Pulse */

.nx-command-pulse { display: grid; margin-top: 24px; grid-template-columns: minmax(0, 1fr) 210px; gap: 18px; }
.nx-command-pulse__chart { position: relative; min-height: 500px; overflow: hidden; border: 1px solid var(--nx-line); background: #080c0e; }
.nx-command-pulse__head { position: absolute; z-index: 3; top: 0; right: 0; left: 0; display: flex; min-height: 72px; padding: 0 18px; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--nx-line); background: rgba(8, 12, 14, .9); }
.nx-command-pulse__head div { display: grid; gap: 6px; }
.nx-command-pulse__head span { color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); }
.nx-command-pulse__head strong { color: var(--nx-white); font-size: 20px; font-weight: 500; }
.nx-command-pulse__head small { color: var(--nx-muted); font: 500 11px/1.25 var(--nx-mono); }
.nx-command-pulse__source { display: grid; max-width: 380px; justify-items: end; gap: 7px; text-align: right; }
.nx-command-pulse__source small:last-child { line-height: 1.35; }
.nx-command-pulse__chart canvas { position: absolute; inset: 72px 0 48px; width: 100%; height: calc(100% - 120px); }
.nx-command-pulse__markets { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; display: grid; height: 48px; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--nx-line); }
.nx-command-pulse__markets button { color: var(--nx-muted); border: 0; border-right: 1px solid var(--nx-line); background: transparent; font: 500 11px/1 var(--nx-mono); cursor: pointer; }
.nx-command-pulse__markets button:last-child { border-right: 0; }
.nx-command-pulse__markets button.is-active { color: var(--nx-ink); background: var(--nx-blue); }
.nx-command-pulse__metrics { display: grid; align-content: start; border-top: 1px solid var(--nx-line); }
.nx-command-pulse__metrics article { min-height: 118px; padding: 20px 16px; border-right: 1px solid var(--nx-line); border-bottom: 1px solid var(--nx-line); border-left: 1px solid var(--nx-line); }
.nx-command-pulse__metrics span, .nx-command-pulse__metrics strong, .nx-command-pulse__metrics small { display: block; font-family: var(--nx-mono); }
.nx-command-pulse__metrics span { color: var(--nx-muted); font-size: 11px; font-weight: 500; }
.nx-command-pulse__metrics strong { margin-top: 16px; color: var(--nx-white); font-size: 18px; font-weight: 500; }
.nx-command-pulse__metrics strong.is-up { color: var(--nx-green); }
.nx-command-pulse__metrics strong.is-down { color: var(--nx-red); }
.nx-command-pulse__metrics small { margin-top: 8px; color: var(--nx-muted); font-size: 11px; font-weight: 500; }
.nx-command-pulse__metrics > a { display: flex; min-height: 54px; padding: 0 14px; align-items: center; justify-content: space-between; color: var(--nx-blue) !important; border-right: 1px solid var(--nx-line); border-bottom: 1px solid var(--nx-line); border-left: 1px solid var(--nx-line); font: 500 11px/1 var(--nx-mono); text-decoration: none; text-transform: uppercase; }

/* Risk Lab */

.nx-risk-lab { display: grid; margin-top: 24px; grid-template-columns: 1fr .72fr; gap: 18px; }
.nx-risk-lab__inputs { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--nx-line); border-left: 1px solid var(--nx-line); }
.nx-risk-lab label { display: grid; min-height: 150px; padding: 20px; align-content: space-between; border-right: 1px solid var(--nx-line); border-bottom: 1px solid var(--nx-line); }
.nx-risk-lab label > span { color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); letter-spacing: .06em; text-transform: uppercase; }
.nx-risk-lab label > div { display: flex; align-items: baseline; gap: 8px; }
.nx-risk-lab label b { color: var(--nx-muted); font: 400 15px/1 var(--nx-mono); }
.nx-risk-lab input { width: 100%; min-width: 0; padding: 0; color: var(--nx-white); border: 0; outline: 0; background: transparent; font: 500 clamp(26px, 3vw, 42px)/1 var(--nx-sans); letter-spacing: -.045em; }
.nx-risk-lab input:focus { color: var(--nx-blue); }
.nx-risk-lab__output { display: flex; min-height: 320px; padding: clamp(26px, 3vw, 42px); flex-direction: column; border: 1px solid rgba(99, 217, 229, .28); background: linear-gradient(145deg, rgba(99, 217, 229, .1), rgba(12, 17, 19, .74)); }
.nx-risk-lab__output > span { color: var(--nx-blue); font: 500 11px/1 var(--nx-mono); letter-spacing: .07em; }
.nx-risk-lab__output > strong { margin-top: 26px; color: var(--nx-white); font-size: clamp(40px, 5vw, 72px); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
.nx-risk-lab__output > small { max-width: 420px; margin-top: 12px; color: var(--nx-muted); font: 500 11px/1.6 var(--nx-mono); }
.nx-risk-lab dl { display: grid; margin: auto 0 0; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--nx-line); }
.nx-risk-lab dl div { padding: 16px 8px 0 0; }
.nx-risk-lab dt { color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); text-transform: uppercase; }
.nx-risk-lab dd { margin: 8px 0 0; color: var(--nx-copy); font: 500 12px/1.35 var(--nx-mono); }

/* Stream board */

.nx-stream-board { margin-top: 24px; border: 1px solid var(--nx-line); background: #06090a; box-shadow: inset 0 0 70px rgba(99, 217, 229, .035); }
.nx-stream-board__top { display: grid; min-height: 64px; padding: 0 18px; grid-template-columns: 1fr auto 1fr; align-items: center; color: var(--nx-muted); border-bottom: 1px solid var(--nx-line); font: 500 11px/1 var(--nx-mono); letter-spacing: .05em; }
.nx-stream-board__top strong { display: flex; align-items: center; gap: 8px; color: var(--nx-red); font-weight: 500; }
.nx-stream-board__top strong i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--nx-red); box-shadow: 0 0 14px rgba(239, 119, 124, .6); animation: nx-on-air 1.6s ease-in-out infinite; }
.nx-stream-board__top strong.is-unavailable i { display: none; }
.nx-stream-board__top time { justify-self: end; }
.nx-stream-board__markets { display: grid; min-height: 330px; grid-template-columns: repeat(3, 1fr); }
.nx-stream-board__markets article { display: flex; min-width: 0; padding: clamp(20px, 3vw, 38px); flex-direction: column; justify-content: center; border-right: 1px solid var(--nx-line); }
.nx-stream-board__markets article:last-child { border-right: 0; }
.nx-stream-board__markets span { color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); }
.nx-stream-board__markets strong { margin-top: 30px; color: var(--nx-white); font-size: clamp(30px, 4.2vw, 58px); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
.nx-stream-board__markets b { margin-top: 14px; color: var(--nx-copy); font: 500 16px/1 var(--nx-mono); }
.nx-stream-board__markets b.is-up { color: var(--nx-green); }
.nx-stream-board__markets b.is-down { color: var(--nx-red); }
.nx-stream-board__markets small { margin-top: 30px; color: var(--nx-muted); font: 500 11px/1 var(--nx-mono); }
.nx-stream-board__foot { display: flex; min-height: 58px; padding: 0 18px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--nx-line); }
.nx-stream-board__foot p { margin: 0; color: var(--nx-muted) !important; font: 500 11px/1.4 var(--nx-mono); }
.nx-stream-board__foot button { min-height: 32px; padding: 0 12px; color: var(--nx-ink); border: 0; background: var(--nx-blue); font: 600 11px/1 var(--nx-mono); text-transform: uppercase; cursor: pointer; }
.nx-stream-board__foot button:disabled { opacity: .42; cursor: not-allowed; }

@keyframes nx-on-air { 50% { opacity: .35; transform: scale(.75); } }

@media (max-width: 1180px) {
  .nx-command__body { grid-template-columns: 160px minmax(0, 1fr); }
  .nx-command__context { display: none; }
  .nx-command-swap-stage { grid-template-columns: 1fr; }
  .nx-command-swap-stage > aside { display: none; }
}

@media (max-width: 860px) {
  .nx-nav__terminal { margin-top: 12px; justify-content: space-between; }
  .nx-orbit-console { width: min(100%, 680px); }
  .nx-command { padding: 0; }
  .nx-command__shell { width: 100%; height: 100svh; border: 0; }
  .nx-command__header { grid-template-columns: 1fr auto; }
  .nx-command__status { display: none; }
  .nx-command__body { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .nx-command__nav { z-index: 3; display: grid; padding: 0 8px; grid-template-columns: repeat(4, 1fr); border-right: 0; border-bottom: 1px solid var(--nx-line); }
  .nx-command__nav button { min-height: 58px; padding: 8px; grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .nx-command__nav button::before { top: auto; right: 8px; bottom: -1px; left: 8px; width: auto; height: 2px; transform: scaleX(0); }
  .nx-command__nav button.is-active::before { transform: scaleX(1); }
  .nx-command__nav span, .nx-command__nav small { display: none; }
  .nx-command-panel__intro { grid-template-columns: 1fr; gap: 20px; }
  .nx-command-pulse__source { max-width: 50%; }
  .nx-command-pulse { grid-template-columns: 1fr; }
  .nx-command-pulse__metrics { grid-template-columns: repeat(3, 1fr); }
  .nx-command-pulse__metrics > a { grid-column: 1 / -1; }
  .nx-risk-lab { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nx-command-launcher { right: 12px; bottom: 12px; min-width: 50px; width: 50px; padding: 0; grid-template-columns: 1fr; justify-items: center; }
  .nx-command-launcher strong, .nx-command-launcher small { display: none; }
  .nx-orbit-console { min-height: 480px; }
  .nx-orbit-console__field { min-height: 354px; }
  .nx-orbit-console::before { width: 250px; }
  .nx-orbit-console__core { width: 132px; }
  .nx-orbit-console__core strong { font-size: 20px; }
  .nx-orbit-action { width: 92px; min-height: 54px; padding: 9px; grid-template-columns: 20px 1fr; }
  .nx-orbit-action small { display: none; }
  .nx-orbit-action--swap, .nx-orbit-action--stream { left: 12px; }
  .nx-orbit-action--pulse, .nx-orbit-action--risk { right: 12px; }
  .nx-orbit-console__tape button { min-width: 0; min-height: 64px; padding-inline: 8px; grid-template-columns: 1fr; justify-items: center; gap: 7px; }
  .nx-orbit-console__tape strong { justify-items: center; }
  .nx-orbit-console__tape i:last-of-type { display: none; }
  .nx-command__header { padding-inline: 12px; }
  .nx-command__header p small, .nx-command__header > button span { display: none; }
  .nx-command__header > button { padding-left: 0; }
  .nx-command-panel { padding: 22px 12px 34px; }
  .nx-command-panel__intro h2 { font-size: clamp(32px, 10vw, 44px) !important; }
  .nx-command-swap-stage__frame { min-height: 500px; padding: 8px; }
  .nx-command__swap-engine { min-height: 480px; }
  .nx-command-pulse__head { min-height: 110px; padding: 12px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 10px; }
  .nx-command-pulse__source { max-width: 100%; justify-items: start; text-align: left; }
  .nx-command-pulse__chart canvas { inset: 110px 0 48px; height: calc(100% - 158px); }
  .nx-command-pulse__chart { min-height: 390px; }
  .nx-command-pulse__metrics { grid-template-columns: 1fr; }
  .nx-risk-lab__inputs { grid-template-columns: 1fr; }
  .nx-risk-lab label { min-height: 116px; }
  .nx-risk-lab__output { min-height: 300px; }
  .nx-risk-lab dl { grid-template-columns: 1fr; }
  .nx-risk-lab dl div { padding-bottom: 12px; border-bottom: 1px solid var(--nx-line); }
  .nx-stream-board__top { grid-template-columns: 1fr auto; }
  .nx-stream-board__top time { display: none; }
  .nx-stream-board__markets { grid-template-columns: 1fr; }
  .nx-stream-board__markets article { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--nx-line); }
  .nx-stream-board__markets article:last-child { border-bottom: 0; }
  .nx-stream-board__foot { align-items: flex-start; flex-direction: column; padding-block: 14px; }
}
