@font-face {
  font-family: Space Grotesk;
  src: url("/assets/fonts/space-grotesk-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Space Grotesk;
  src: url("/assets/fonts/space-grotesk-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
}
@font-face {
  font-family: IBM Plex Mono;
  src: url("/assets/fonts/ibm-plex-mono.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --night: #080f16;
  --panel: #0e1821;
  --line: #26343e;
  --text: #e8edf0;
  --muted: #98a7b2;
  --amber: #efb16d;
  --cyan: #88d4d7;
  --sans: "Space Grotesk", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  font-family: var(--sans);
  color: var(--text);
  background: var(--night);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(ellipse at 79% 12%, #17232755, transparent 36%),
    var(--night);
  font-size: 16px;
  line-height: 1.6;
}
button,
a,
input {
  touch-action: manipulation;
}
a {
  color: var(--cyan);
  text-underline-offset: 5px;
}
button {
  font: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}
::selection {
  background: #efb16d;
  color: #080f16;
}
svg {
  display: block;
  flex-shrink: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.12;
}
button[hidden] {
  display: none;
}
.console {
  max-width: 1440px;
  margin: auto;
  padding: 0 64px;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  height: 99px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}
.brand > svg {
  color: var(--amber);
}
.brand strong {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -1px;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.topbar-link,
.sign-in {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  color: #bdc7ce;
  text-decoration: none;
  font-size: 13px;
}
.topbar-link:hover,
.topbar-link[aria-current],
.sign-in:hover {
  color: var(--amber);
}
.topbar-link[aria-current] {
  text-decoration: underline;
}
.topbar-link > span {
  color: var(--muted);
  font-size: 14px;
}
.icon-button {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--muted);
}
.icon-button:hover {
  color: var(--amber);
}
.auth-cta {
  display: flex;
  align-items: center;
  gap: 25px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 48px;
  padding: 10px 21px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.primary-button {
  background: var(--amber);
  color: #17130e;
  box-shadow: 0 0 24px #efb16d0a;
}
.primary-button:hover {
  background: #ffca8f;
}
.primary-button > span,
.secondary-button > span {
  font-size: 19px;
  line-height: 1;
}
.secondary-button {
  border-color: #43525c;
  background: #13202a;
  color: var(--text);
}
.secondary-button:hover {
  background: #1d303b;
  border-color: var(--cyan);
}
.topbar .primary-button {
  min-height: 40px;
  padding: 9px 17px;
  gap: 16px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  color: var(--text);
  font-size: 13px;
  text-decoration: none;
}
.text-link span {
  color: var(--amber);
  font-size: 18px;
}
.text-link:hover {
  color: var(--amber);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
}
.eyebrow > span:first-child {
  color: var(--amber);
}
.tiny-cross {
  font-size: 22px;
  line-height: 1;
}
.hero {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 12px;
  padding: 56px 0 32px;
  min-height: 671px;
}
.hero-copy {
  padding-bottom: 22px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(60px, 6.05vw, 87px);
  letter-spacing: -5px;
  line-height: 1.04;
  margin: 28px 0 25px;
  white-space: nowrap;
}
.hero h1 > span {
  color: var(--amber);
}
.hero-description {
  color: #dbe1e5;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.25px;
}
.hero-detail {
  color: var(--muted);
  max-width: 410px;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 17px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.hero-footnote {
  margin-top: 22px;
  font: 10px/1.6 var(--mono);
  color: var(--muted);
}
.hero-footnote > span {
  margin-right: 6px;
  color: var(--amber);
}
.mission {
  min-width: 0;
  align-self: center;
  position: relative;
}
.mission-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font: 9px/1.5 var(--mono);
  letter-spacing: 1px;
  color: var(--muted);
  padding: 0 6px 15px;
  border-bottom: 1px solid #26343e80;
}
.demo-label {
  padding: 4px 6px;
  border: 1px solid #374049;
  color: #b1babf;
  font-size: 9px;
  letter-spacing: 0.7px;
}
.orbital-map {
  position: relative;
  aspect-ratio: 640/490;
  min-width: 0;
}
.orbit-art {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.orbit-drift {
  animation: orbit-flow 28s linear infinite;
  stroke-dashoffset: 0;
}
@keyframes orbit-flow {
  to {
    stroke-dashoffset: -1210;
  }
}
.map-label {
  position: absolute;
  font: 11px/1.5 var(--mono);
  color: var(--muted);
}
.map-label strong {
  font-weight: 400;
}
.map-label > span:last-child {
  display: block;
  font-size: 7px;
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.remote-label {
  left: 56.7%;
  top: 69%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}
.remote-label strong {
  font-size: 17px;
  color: var(--amber);
  letter-spacing: 1px;
}
.remote-label > .status-dot {
  display: inline-block;
  margin: 0 5px 2px 0;
  width: 5px;
  height: 5px;
}
.remote-label > span:last-child {
  color: #c1a88a;
  font-size: 9px;
}
.laptop-label {
  top: 78%;
  left: 7%;
  color: #b6c5ca;
  text-align: center;
}
.laptop-label > span:last-child {
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 0;
}
.satellite-one {
  top: 9%;
  left: 71%;
  font-size: 11px;
}
.satellite-two {
  top: 84%;
  left: 77%;
  font-size: 11px;
}
.map-note {
  position: absolute;
  top: 37%;
  left: 2%;
  font: 7px/2 var(--mono);
  letter-spacing: 0.5px;
  color: #8c9da5;
}
.map-note > span {
  color: var(--cyan);
}
.map-note .map-note-indent {
  padding-left: 11px;
  color: #8c9da5;
}
.connection-line {
  opacity: 0.15;
  transition: opacity 0.6s;
}
.mission[data-connected="true"] .connection-line {
  opacity: 1;
}
.mission[data-connected="true"] .laptop-art {
  stroke: var(--cyan);
}
.mission-console {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--amber);
  background: #111b22;
}
.demo-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c4d3d9;
  font: 11px/1.6 var(--mono);
}
.status-dot {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  display: inline-block;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 9px #efb16d66;
}
.demo-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
  padding: 0 8px;
  color: var(--cyan);
  background: transparent;
  border: 1px solid #3e6067;
  border-radius: 2px;
  font: 10px var(--mono);
}
.demo-toggle:hover {
  background: #20353b;
}
.demo-toggle > span {
  font-size: 15px;
}
.demo-caption {
  font: 10px/1.6 var(--mono);
  text-align: right;
  color: var(--muted);
  margin: 8px 0 0;
}
.compatibility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.compatibility > span:not(.eyebrow) {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 16px;
  white-space: nowrap;
  color: #b7c3cb;
}
.compatibility .eyebrow {
  font-size: 8px;
  letter-spacing: 1px;
}
.agent-symbol {
  color: #9baab4;
  font-size: 27px;
  line-height: 1;
}
.shell-symbol {
  font: 21px var(--mono);
}
.compatibility > .compatibility-end {
  font: 8px var(--mono) !important;
  letter-spacing: 1px;
  color: var(--muted) !important;
}
.section {
  padding: 100px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 51px;
}
.section h2 {
  font-size: 42px;
  letter-spacing: -1.7px;
  line-height: 1.13;
  margin-top: 20px;
}
.section-intro {
  max-width: 365px;
  color: var(--muted);
  font-size: 14px;
}
.section-intro .text-link {
  margin-top: 10px;
}
.flight-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  gap: 26px;
}
.flight-steps > li {
  position: relative;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.step-number {
  position: absolute;
  top: -15px;
  left: 0;
  background: var(--night);
  padding-right: 14px;
  font: 12px/28px var(--mono);
  color: var(--amber);
}
.flight-steps h3 {
  font-size: 17px;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}
.flight-steps p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
  min-height: 87px;
  margin-bottom: 18px;
}
.flight-steps p > strong {
  font-weight: 400;
  color: var(--text);
}
.command {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  background: #101b24;
  border: 1px solid var(--line);
  min-height: 42px;
  padding-left: 12px;
  border-radius: 2px;
}
.command + .command {
  margin-top: 8px;
}
.command code {
  font: 11px/1.7 var(--mono);
  color: var(--cyan);
  overflow-wrap: anywhere;
  min-width: 0;
}
.copy-button {
  flex-shrink: 0;
  min-height: 40px;
  min-width: 36px;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 17px;
  padding: 0 8px;
  display: grid;
  place-items: center;
}
.copy-button:hover {
  color: var(--amber);
  background: #20303b;
}
.step-note {
  display: block;
  font: 8px/1.8 var(--mono);
  color: var(--muted);
  margin-top: 12px;
}
.detach-keys {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  font: 10px var(--mono);
  color: var(--muted);
}
kbd {
  font: 12px var(--mono);
  min-width: 30px;
  padding: 7px 9px;
  border: 1px solid #49505a;
  border-bottom-width: 3px;
  border-radius: 3px;
  background: #19212a;
  color: #e8c294;
}
.install-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 19px 20px;
  background: #0d161e;
  border: 1px solid var(--line);
  border-radius: 3px;
  margin-top: 39px;
}
.install-strip > span {
  font: 8px/1.6 var(--mono);
  letter-spacing: 0.8px;
  white-space: nowrap;
  color: var(--muted);
}
.install-strip > span > span {
  color: var(--amber);
  padding-right: 8px;
  font-size: 14px;
}
.install-strip .command {
  background: transparent;
  border: none;
  padding: 0;
  flex: 1;
}
.install-strip .command code {
  color: #c0ccd4;
}
.install-strip .text-link {
  font-size: 10px;
}
.systems {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.systems-copy > p:not(.eyebrow) {
  margin-top: 25px;
  max-width: 385px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.muted-heading {
  color: #8498a5;
}
.file-manifest {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(120deg, #101c24, #0b141c);
}
.manifest-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 10px var(--mono);
  color: #c3d0d7;
  border-bottom: 1px solid var(--line);
  padding: 14px 17px;
}
.manifest-title > span:last-child {
  margin-left: auto;
  font-size: 7px;
  color: var(--muted);
}
.file-manifest pre {
  margin: 0;
  padding: 24px;
  font: 12px/2 var(--mono);
  color: #7f96a2;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.file-manifest pre > span {
  color: var(--cyan);
}
.manifest-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 17px;
  font: 7px/1.6 var(--mono);
  letter-spacing: 0.4px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.manifest-footer > span:last-child {
  color: var(--amber);
}
.systems-list {
  display: flex;
  flex-direction: column;
}
.systems-list article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
}
.systems-list article:first-child {
  padding-top: 0;
}
.system-index {
  font: 10px/1.7 var(--mono);
  color: var(--amber);
  padding-top: 4px;
}
.systems-list h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.5;
}
.systems-list p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}
.systems-list code {
  font: 10px var(--mono);
  color: #c1dde0;
  overflow-wrap: anywhere;
}
.deployment {
  border-top: 1px solid var(--line);
  padding-top: 82px;
  padding-bottom: 65px;
}
.deployment .section-heading {
  margin-bottom: 35px;
}
.deployment h2 {
  font-size: 35px;
}
.source-link {
  white-space: nowrap;
}
.deployment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 3px;
}
.deployment-options article {
  padding: 36px 37px;
  position: relative;
}
.deployment-options h3 {
  font-size: 29px;
  letter-spacing: -1px;
  margin-top: 18px;
}
.deployment-options p {
  font-size: 13px;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.85;
  margin-top: 16px;
  margin-bottom: 25px;
}
.hosted-option {
  background: radial-gradient(ellipse at 0 0, #513c222e, transparent 80%);
  border-right: 1px solid var(--line);
}
.hosted-option:before {
  content: "";
  height: 30px;
  width: 2px;
  background: var(--amber);
  position: absolute;
  left: -1px;
  top: 35px;
}
.hosted-option .eyebrow {
  color: var(--amber);
}
.selfhosted-option .eyebrow {
  color: var(--cyan);
}
.deployment-options .text-link {
  margin-left: 20px;
  font-size: 11px;
}
.license-note {
  display: inline-block;
  margin-left: 18px;
  font: 8px var(--mono);
  color: var(--muted);
}
.closing-signal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 65px;
  color: var(--muted);
  font: 8px/1.8 var(--mono);
  letter-spacing: 1px;
}
.closing-signal > span:nth-child(2) {
  font-size: 18px;
  color: var(--amber);
}
.signal-line {
  height: 1px;
  background: var(--line);
  flex: 1;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  border-top: 1px solid var(--line);
  padding: 34px 0 37px;
  color: var(--muted);
  font-size: 10px;
}
.footer-identity {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-brand {
  font-size: 19px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.footer-brand > span {
  color: var(--amber);
  padding-left: 7px;
}
.footer-identity > small {
  font: 8px/1.6 var(--mono);
  margin-top: 7px;
}
.site-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 21px;
  max-width: 630px;
}
.site-footer nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  color: var(--muted);
  text-decoration: none;
}
.site-footer nav a:hover,
.site-footer nav a[aria-current] {
  color: var(--amber);
}
.skip-link {
  position: absolute;
  left: 18px;
  top: -100px;
  z-index: 100;
  background: var(--amber);
  color: var(--night);
  padding: 12px 22px;
  font-size: 14px;
}
.skip-link:focus {
  top: 15px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 1441px) {
  .hero h1 {
    font-size: 87px;
  }
}
@media (max-width: 1200px) {
  .console {
    padding: 0 40px;
  }
  .topbar-actions {
    gap: 18px;
  }
  .auth-cta {
    gap: 20px;
    padding-left: 22px;
  }
  .hero h1 {
    font-size: 6.3vw;
    letter-spacing: -3.5px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .primary-button {
    gap: 15px;
    padding: 10px 16px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 9px;
  }
  .hero {
    min-height: 615px;
    padding-top: 45px;
  }
  .mission-console {
    padding: 8px 9px;
    gap: 8px;
  }
  .demo-status {
    font-size: 10px;
    gap: 7px;
  }
  .demo-toggle {
    font-size: 8px;
    gap: 4px;
    padding: 0 6px;
  }
  .compatibility {
    gap: 22px;
  }
  .compatibility > .compatibility-end {
    display: none;
  }
  .systems {
    gap: 70px;
  }
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .flight-steps {
    gap: 20px;
  }
  .flight-steps p {
    min-height: 107px;
  }
  .command code {
    font-size: 10px;
  }
  .command {
    padding-left: 9px;
  }
  .deployment-options article {
    padding: 30px;
  }
  .deployment-options .text-link,
  .license-note {
    margin-left: 0;
    margin-top: 10px;
    display: flex;
  }
  .install-strip {
    gap: 20px;
  }
  .section h2 {
    font-size: 39px;
  }
  .deployment h2 {
    font-size: 32px;
  }
}
@media (max-width: 950px) {
  .console {
    padding: 0 30px;
  }
  .topbar-actions {
    gap: 15px;
  }
  .topbar .icon-button {
    display: none;
  }
  .auth-cta {
    gap: 16px;
    padding-left: 18px;
  }
  .brand strong {
    font-size: 21px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 590px;
  }
  .hero h1 {
    font-size: 6.6vw;
    letter-spacing: -3px;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero-detail {
    font-size: 12px;
    max-width: 330px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .mission-heading {
    font-size: 7px;
  }
  .demo-label {
    font-size: 8px;
  }
  .mission-console {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
  }
  .demo-toggle {
    align-self: flex-start;
    font-size: 9px;
    min-height: 38px;
  }
  .demo-status {
    font-size: 9px;
  }
  .demo-caption {
    font-size: 9px;
  }
  .orbital-map {
    margin: 25px 0;
  }
  .map-note {
    display: none;
  }
  .map-label > span:last-child {
    font-size: 6px;
  }
  .remote-label > span:last-child {
    font-size: 7px;
  }
  .laptop-label {
    left: 4%;
    font-size: 8px;
  }
  .flight-steps {
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
  }
  .flight-steps p {
    min-height: auto;
    max-width: 300px;
  }
  .flight-steps .command {
    max-width: 310px;
  }
  .command code {
    font-size: 12px;
  }
  .systems {
    gap: 45px;
  }
  .section h2 {
    font-size: 34px;
  }
  .install-strip {
    flex-wrap: wrap;
    gap: 4px 20px;
  }
  .install-strip > span {
    flex: 1;
  }
  .install-strip .command {
    flex: initial;
  }
  .install-strip .text-link {
    margin-left: auto;
  }
  .systems-list h3 {
    font-size: 18px;
  }
  .systems-list article {
    gap: 10px;
    grid-template-columns: 22px 1fr;
  }
  .systems-list p {
    font-size: 12px;
  }
  .file-manifest pre {
    font-size: 11px;
    padding: 20px 15px;
  }
  .manifest-title {
    font-size: 9px;
  }
  .manifest-title > span:last-child {
    font-size: 6px;
  }
  .manifest-footer {
    flex-direction: column;
    gap: 6px;
  }
  .deployment h2 {
    font-size: 30px;
  }
  .deployment-options h3 {
    font-size: 25px;
  }
  .deployment-options article {
    padding: 28px;
  }
  .site-footer {
    gap: 30px;
  }
  .site-footer nav {
    gap: 0 16px;
    max-width: 415px;
  }
}
@media (max-width: 720px) {
  .console {
    padding: 0 24px;
  }
  .topbar {
    height: auto;
    min-height: 116px;
    padding: 19px 0 10px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .brand {
    gap: 9px;
  }
  .brand > svg {
    width: 25px;
    height: 29px;
  }
  .brand strong {
    font-size: 21px;
  }
  .topbar-actions {
    display: contents;
  }
  .topbar-link {
    order: 3;
    min-height: 44px;
    font-size: 11px;
  }
  .topbar-link:first-child {
    margin-right: auto;
  }
  .topbar-link:nth-child(3) {
    margin-left: 15px;
  }
  .auth-cta {
    margin-left: auto;
    border: 0;
    padding: 0;
    gap: 15px;
  }
  .sign-in {
    font-size: 11px;
  }
  .topbar .primary-button {
    font-size: 11px;
    padding: 8px 12px;
    gap: 10px;
    min-height: 40px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 46px 0 32px;
    min-height: 0;
  }
  .hero-copy {
    padding: 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .hero h1 {
    font-size: clamp(53px, 11.7vw, 79px);
    letter-spacing: -3px;
    margin: 24px 0;
  }
  .hero-description {
    font-size: 18px;
    line-height: 1.55;
  }
  .hero-detail {
    font-size: 13px;
    max-width: 400px;
    line-height: 1.8;
    margin-top: 18px;
  }
  .hero-actions {
    gap: 12px 22px;
    margin-top: 25px;
  }
  .hero-actions .primary-button {
    min-height: 48px;
    font-size: 12px;
    padding: 10px 16px;
    gap: 15px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-footnote {
    font-size: 9px;
    margin-top: 19px;
  }
  .mission {
    width: 100%;
    max-width: 540px;
    align-self: center;
  }
  .mission-heading {
    font-size: 8px;
    padding-bottom: 13px;
  }
  .demo-label {
    font-size: 8px;
  }
  .orbital-map {
    margin: 3px 0 8px;
  }
  .mission-console {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
  }
  .demo-status {
    font-size: 10px;
    gap: 7px;
    max-width: 195px;
  }
  .demo-toggle {
    font-size: 8px;
    min-height: 44px;
    gap: 6px;
  }
  .demo-caption {
    font-size: 9px;
  }
  .map-label {
    font-size: 9px;
  }
  .map-label > span:last-child {
    font-size: 7px;
  }
  .remote-label > span:last-child {
    font-size: 7px;
  }
  .remote-label strong {
    font-size: 14px;
  }
  .satellite-one {
    top: 9%;
    left: 70%;
  }
  .satellite-two {
    left: 75%;
    top: 84%;
  }
  .laptop-label {
    left: 3%;
    font-size: 8px;
  }
  .laptop-label > span:last-child {
    font-size: 8px;
  }
  .compatibility {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px 25px;
    padding: 22px 0;
  }
  .compatibility > .eyebrow {
    width: 100%;
    font-size: 8px;
  }
  .compatibility > span:not(.eyebrow) {
    font-size: 12px;
    gap: 7px;
  }
  .agent-symbol {
    font-size: 20px;
  }
  .shell-symbol {
    font-size: 16px;
  }
  .section {
    padding: 65px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 39px;
  }
  .section h2 {
    font-size: 35px;
    letter-spacing: -1.4px;
    margin-top: 17px;
  }
  .section-intro {
    font-size: 13px;
    margin-top: 22px;
  }
  .section-intro p > br {
    display: none;
  }
  .section-intro .text-link {
    margin-top: 6px;
  }
  .flight-steps {
    grid-template-columns: 1fr;
    gap: 0;
    border-left: 1px solid var(--line);
    margin-left: 12px;
  }
  .flight-steps > li {
    border: 0;
    padding: 0 0 36px 29px;
  }
  .flight-steps > li:last-child {
    padding-bottom: 0;
  }
  .step-number {
    top: 0;
    left: -12px;
    padding: 0 0 6px;
    font-size: 11px;
  }
  .flight-steps h3 {
    font-size: 19px;
    margin-bottom: 13px;
  }
  .flight-steps p {
    font-size: 13px;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 16px;
  }
  .flight-steps .command {
    max-width: 100%;
  }
  .command code {
    font-size: 11px;
  }
  .copy-button {
    min-width: 44px;
    min-height: 44px;
  }
  .step-note {
    font-size: 9px;
  }
  .install-strip {
    display: block;
    padding: 18px;
    margin-top: 35px;
  }
  .install-strip > span {
    display: block;
    font-size: 8px;
    margin-bottom: 8px;
  }
  .install-strip .command {
    padding: 0;
  }
  .install-strip .command code {
    font-size: 10px;
  }
  .install-strip .text-link {
    font-size: 10px;
  }
  .systems {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .systems-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .systems h2 br:nth-child(2) {
    display: none;
  }
  .systems h2 .muted-heading:before {
    content: " ";
  }
  .file-manifest {
    max-width: 500px;
  }
  .file-manifest pre {
    font-size: 12px;
    padding: 24px;
  }
  .manifest-title {
    font-size: 10px;
  }
  .manifest-title > span:last-child {
    font-size: 7px;
  }
  .manifest-footer {
    flex-direction: row;
    gap: 10px;
  }
  .systems-list article {
    padding: 24px 0;
    grid-template-columns: 25px 1fr;
    gap: 12px;
  }
  .systems-list h3 {
    font-size: 19px;
  }
  .systems-list p {
    font-size: 13px;
  }
  .systems-list code {
    font-size: 11px;
  }
  .deployment h2 {
    font-size: 32px;
    max-width: 400px;
  }
  .deployment .source-link {
    margin-top: 15px;
  }
  .deployment-options {
    grid-template-columns: 1fr;
  }
  .deployment-options article {
    padding: 28px 24px;
  }
  .hosted-option {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .deployment-options h3 {
    font-size: 27px;
  }
  .deployment-options .text-link {
    display: inline-flex;
    margin: 15px 0 0 18px;
  }
  .license-note {
    display: block;
    margin: 18px 0 0;
  }
  .closing-signal {
    gap: 10px;
    flex-wrap: wrap;
    font-size: 7px;
    letter-spacing: 0.6px;
    margin: 0 0 35px;
  }
  .closing-signal > span:nth-child(2) {
    font-size: 15px;
  }
  .signal-line:last-child {
    display: none;
  }
  .site-footer {
    display: block;
    padding: 27px 0;
  }
  .footer-identity {
    gap: 5px;
  }
  .site-footer nav {
    justify-content: flex-start;
    gap: 0 24px;
    margin-top: 15px;
    max-width: 100%;
    font-size: 10px;
  }
  .site-footer nav a {
    min-height: 44px;
  }
  .eyebrow {
    font-size: 9px;
  }
}
@media (max-width: 360px) {
  .console {
    padding: 0 18px;
  }
  .brand strong {
    font-size: 19px;
  }
  .brand > svg {
    width: 23px;
  }
  .auth-cta {
    gap: 12px;
  }
  .sign-in {
    font-size: 10px;
  }
  .topbar .primary-button {
    padding: 8px 9px;
    gap: 7px;
    font-size: 10px;
  }
  .hero h1 {
    font-size: 52px;
    letter-spacing: -2.8px;
  }
  .hero-actions {
    gap: 9px 16px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .mission-heading {
    font-size: 6px;
  }
  .demo-label {
    font-size: 8px;
  }
  .mission-console {
    flex-direction: column;
    align-items: stretch;
  }
  .demo-status {
    max-width: none;
    font-size: 10px;
  }
  .demo-toggle {
    align-self: flex-start;
    font-size: 9px;
  }
  .remote-label > span:last-child {
    font-size: 6px;
    letter-spacing: 0;
  }
  .map-label > span:last-child {
    font-size: 6px;
  }
  .laptop-label {
    left: 0;
    font-size: 7px;
  }
  .satellite-one,
  .satellite-two {
    font-size: 8px;
  }
  .compatibility {
    gap: 16px 18px;
  }
  .compatibility > span:not(.eyebrow) {
    font-size: 11px;
  }
  .section h2 {
    font-size: 32px;
  }
  .manifest-title > span:last-child {
    font-size: 6px;
  }
  .manifest-footer {
    font-size: 6px;
  }
  .deployment-options article {
    padding: 26px 20px;
  }
  .deployment-options .text-link {
    margin-left: 0;
    display: flex;
  }
  .closing-signal {
    font-size: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
