@font-face {
  font-family: Chakra;
  src: url("./assets/chakra-petch-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Chakra;
  src: url("./assets/chakra-petch-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #10120f;
  --surface: #171a16;
  --line: #343b2f;
  --fg: #f0f2e9;
  --muted: #a6ae9e;
  --acid: #b5ff4d;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --font: Chakra, "Trebuchet MS", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.1;
}
a:focus-visible,
button:focus-visible,
pre:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 6px;
}
::selection {
  color: var(--bg);
  background: var(--acid);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1320px, calc(100% - 96px));
  margin-inline: auto;
}
.accent {
  color: var(--acid);
}
.muted {
  color: var(--muted);
}
.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 12px 20px;
  background: var(--acid);
  color: var(--bg);
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.header {
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand > span {
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.brand-sub {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  margin-top: 6px;
}
.header nav {
  display: flex;
  gap: 37px;
  font-size: 14px;
}
.header nav a {
  padding: 12px 0;
}
.header nav a:hover,
.footer a:hover {
  color: var(--acid);
}
.header .nav-source {
  border-left: 1px solid var(--line);
  padding-left: 37px;
}
.nav-source span {
  padding-left: 15px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.09em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.square {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--acid);
  flex-shrink: 0;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  min-height: 760px;
  padding-top: 68px;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
}
.hero .eyebrow {
  margin-bottom: 30px;
}
.hero h1 {
  font-size: clamp(42px, 4.8vw, 70px);
  line-height: 1.07;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.hero h1 span {
  color: var(--acid);
}
.hero-description {
  color: #bac1b2;
  max-width: 460px;
  font-size: 18px;
  line-height: 1.7;
  margin-top: 27px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 52px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.button.primary {
  color: var(--bg);
  background: var(--acid);
}
.button.primary:hover {
  background: #ccff88;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #59634c;
  padding-block: 8px;
}
.text-link:hover {
  color: var(--acid);
  text-decoration-color: var(--acid);
}
.hero-note {
  color: var(--muted);
  font-size: 12px;
  margin-top: 21px;
}
.hero-art {
  position: relative;
  margin-left: -30px;
  margin-right: -25px;
  align-self: center;
  transform: translateY(-25px);
}
.hero-art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 45px #0005);
}
.hero-art figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font: 9px var(--mono);
  letter-spacing: 0.05em;
  color: #88917e;
  padding: 0 40px;
}
.hero-bottom {
  grid-column: 1/-1;
  align-self: end;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  font: 10px var(--mono);
  letter-spacing: 0.07em;
  color: var(--muted);
}
.hero-bottom a {
  display: flex;
  gap: 45px;
}
.hero-bottom a:hover {
  color: var(--acid);
}
.section {
  padding-top: 110px;
  padding-bottom: 110px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  align-items: end;
}
.section-heading > .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 28px;
}
.section-heading h2 {
  font-size: clamp(34px, 3.5vw, 49px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.section-heading > p:last-child {
  max-width: 410px;
  color: var(--muted);
  justify-self: end;
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  border-block: 1px solid var(--line);
}
.capabilities article {
  padding: 26px 30px 34px 0;
}
.capabilities article + article {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.module-id {
  font: 10px var(--mono);
  color: var(--muted);
  letter-spacing: 0.05em;
}
.module-icon {
  height: 65px;
  position: relative;
  width: 70px;
  margin: 37px 0 24px;
  color: var(--acid);
}
.module-icon i {
  display: block;
  position: absolute;
  border: 1px solid currentColor;
}
.memory-icon i {
  width: 33px;
  height: 37px;
  transform: skewY(-25deg);
  left: 9px;
  top: 10px;
}
.memory-icon i:nth-child(2) {
  left: 20px;
  top: 16px;
}
.memory-icon i:nth-child(3) {
  left: 31px;
  top: 22px;
}
.coordination-icon i {
  width: 17px;
  height: 17px;
  top: 30px;
  left: 0;
}
.coordination-icon i:nth-child(2) {
  left: 43px;
}
.coordination-icon i:nth-child(3) {
  left: 22px;
  top: 0;
}
.coordination-icon:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 20px;
  width: 44px;
  height: 11px;
  border: 1px solid var(--acid);
  border-bottom: 0;
}
.control-icon i {
  width: 55px;
  height: 39px;
  top: 0;
  left: 1px;
}
.control-icon i:nth-child(2) {
  width: 15px;
  height: 12px;
  top: 40px;
  left: 21px;
  border-top: 0;
  border-bottom: 0;
}
.control-icon i:nth-child(3) {
  width: 37px;
  height: 1px;
  top: 52px;
  left: 10px;
}
.capabilities h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
}
.capabilities p {
  color: var(--muted);
  font-size: 15px;
  margin: 18px 0;
  max-width: 340px;
}
.capabilities .text-link {
  font-size: 12px;
}
.setup-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-top: 47px;
}
.setup-tabs button {
  flex: 1;
  text-align: left;
  background: none;
  color: var(--muted);
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 20px 12px;
  font: 11px var(--mono);
  display: flex;
  gap: 18px;
  align-items: center;
}
.setup-tabs button span {
  font-family: var(--font);
  font-size: 16px;
}
.setup-tabs button[aria-selected="true"] {
  color: var(--acid);
  border-bottom-color: var(--acid);
  background: #b5ff4d06;
}
.setup-tabs button:hover {
  color: var(--fg);
}
.setup-panel > * {
  min-width: 0;
}
.setup-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
  padding-top: 52px;
  min-height: 456px;
}
.tag {
  font: 9px var(--mono);
  color: var(--acid);
  letter-spacing: 0.08em;
}
.setup-explanation h3 {
  font-size: 34px;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 17px 0;
}
.setup-explanation > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.steps li {
  display: flex;
  gap: 16px;
  margin-top: 17px;
}
.steps li > span {
  font: 10px var(--mono);
  color: var(--acid);
  padding-top: 4px;
}
.steps strong {
  font-size: 13px;
  font-weight: 700;
}
.steps p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 3px;
}
.steps code,
.setup-note code {
  font-family: var(--mono);
  font-size: 0.9em;
}
.terminal {
  border: 1px solid #46503d;
  background: #0b0e09;
  margin-top: 8px;
}
.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
  font: 9px var(--mono);
  color: var(--muted);
  min-height: 59px;
}
.copy-button {
  min-width: 70px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #1e2718;
  border: 1px solid #455636;
  color: #c4dfaf;
  padding: 8px 10px;
  font: 10px var(--mono);
  min-height: 44px;
}
.copy-button:hover {
  border-color: var(--acid);
  color: var(--acid);
}
.terminal pre {
  padding: 28px 22px 35px;
  margin: 0;
  overflow: auto;
  font: 12px/2.25 var(--mono);
  color: #d1e9ba;
  tab-size: 2;
}
.terminal-footer {
  padding: 13px 18px;
  border-top: 1px solid #232c1c;
  font: 10px/1.6 var(--mono);
  color: var(--muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.terminal-footer > span {
  color: var(--acid);
}
.setup-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 20px;
}
.setup-detail > .text-link {
  margin-top: 13px;
}
.web-card {
  border: 1px solid var(--line);
  padding: 30px;
  background: var(--surface);
  margin-top: 8px;
}
.web-card h4 {
  font-size: 24px;
  margin: 24px 0 18px;
}
.web-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.web-card .button {
  margin-top: 6px;
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  border-top: 1px solid var(--line);
  margin-top: 50px;
  padding-top: 23px;
  font-size: 11px;
  color: var(--muted);
}
.platform-label {
  font: 9px var(--mono);
  align-self: center;
  letter-spacing: 0.04em;
}
.platforms strong {
  font-size: 10px;
  color: #d1d7c9;
  font-weight: 400;
  margin-left: 8px;
}
.platforms > span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.status-dot {
  width: 5px;
  height: 5px;
  background: var(--acid);
  margin-right: 5px;
}
.copy-status {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: var(--acid);
  color: var(--bg);
  font: 12px/1.5 var(--mono);
  max-width: calc(100% - 32px);
  box-shadow: 0 4px 30px #0008;
}
.copy-status:not(:empty) {
  padding: 16px 22px;
}
.footer {
  padding-block: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.footer .brand > span {
  font-size: 23px;
}
.footer .brand-sub {
  font-size: 7px;
}
.footer p {
  font-size: 11px;
  color: var(--muted);
}
.footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer nav {
  display: flex;
  gap: 22px;
  font-size: 11px;
}
@media (min-width: 1100px) {
  .hero-copy {
    animation: arrive 0.65s ease-out both;
  }
  .hero-art {
    animation: arrive 0.9s ease-out both;
  }
}
@keyframes arrive {
  from {
    opacity: 0;
    translate: 0 12px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@media (min-width: 1500px) {
  .hero {
    min-height: 820px;
  }
  .hero h1 {
    font-size: 72px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    min-height: 660px;
    padding-top: 60px;
  }
  .hero h1 {
    font-size: 4.7vw;
  }
  .hero-actions {
    gap: 16px;
    align-items: start;
    flex-direction: column;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-art {
    margin-left: -20px;
    margin-right: -20px;
  }
  .section {
    padding-block: 80px;
  }
  .setup-panel {
    gap: 48px;
  }
  .terminal pre {
    font-size: 11px;
    padding-inline: 16px;
  }
  .section-heading {
    gap: 25px 50px;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer nav {
    margin-left: auto;
  }
  .capabilities h3 {
    font-size: 22px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 85px;
  }
  .brand > span {
    font-size: 24px;
  }
  .brand img {
    width: 29px;
  }
  .brand-sub {
    font-size: 7px;
  }
  .header nav {
    gap: 20px;
    font-size: 12px;
  }
  .header .nav-source {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
    min-height: auto;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 23px;
  }
  .hero h1 {
    font-size: clamp(34px, 7.8vw, 60px);
    letter-spacing: -0.04em;
  }
  .hero-description {
    font-size: 16px;
    max-width: 480px;
    margin-top: 23px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 22px;
    margin-top: 26px;
  }
  .button {
    font-size: 12px;
    padding: 13px 16px;
    gap: 18px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 8px;
  }
  .hero-note {
    font-size: 10px;
    margin-top: 17px;
  }
  .hero-art {
    width: min(100%, 510px);
    margin: 12px auto 30px;
    transform: none;
  }
  .hero-art img {
    margin-top: -20px;
  }
  .hero-art figcaption {
    padding-inline: 12px;
    font-size: 8px;
    margin-top: -20px;
  }
  .hero-bottom {
    font-size: 8px;
    gap: 15px;
    line-height: 1.6;
    padding: 18px 0;
  }
  .hero-bottom a {
    gap: 15px;
  }
  .section {
    padding-block: 63px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .section-heading > .eyebrow {
    margin-bottom: 22px;
  }
  .section-heading h2 {
    font-size: 36px;
  }
  .section-heading > p:last-child {
    justify-self: start;
    margin-top: 23px;
    max-width: 500px;
    font-size: 15px;
  }
  .capabilities {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }
  .capabilities article {
    position: relative;
    padding: 27px 0 30px 72px !important;
  }
  .capabilities article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .module-icon {
    position: absolute;
    top: 56px;
    left: 0;
    transform: scale(0.75);
    transform-origin: top left;
    margin: 0;
  }
  .capabilities h3 {
    font-size: 23px;
    margin-top: 16px;
  }
  .capabilities p {
    font-size: 14px;
    max-width: none;
    margin: 15px 0;
  }
  .capabilities .module-id {
    font-size: 9px;
  }
  .setup-tabs {
    margin-top: 29px;
  }
  .setup-tabs button {
    padding: 16px 8px;
    gap: 7px;
    align-items: start;
    flex-direction: column;
    font-size: 9px;
  }
  .setup-tabs button span {
    font-size: 13px;
  }
  .setup-panel {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-top: 31px;
    min-height: 0;
  }
  .setup-explanation h3 {
    font-size: 30px;
  }
  .steps {
    margin-top: 22px;
  }
  .steps li {
    margin-top: 17px;
  }
  .terminal pre {
    font-size: 11px;
    padding: 22px 15px 30px;
  }
  .terminal-header {
    font-size: 8px;
    padding: 10px 13px;
  }
  .setup-note {
    font-size: 12px;
  }
  .platforms {
    gap: 15px;
    margin-top: 35px;
    flex-direction: column;
  }
  .platform-label {
    align-self: start;
  }
  .platforms strong {
    margin-left: 7px;
  }
  .footer {
    gap: 25px;
    padding-block: 35px;
  }
  .footer p {
    max-width: 220px;
    font-size: 10px;
  }
  .footer nav {
    margin: 0;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .footer .brand {
    gap: 8px;
  }
  .footer .brand > span {
    font-size: 21px;
  }
}
@media (max-width: 380px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .header nav {
    gap: 12px;
    font-size: 11px;
  }
  .hero-actions {
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero h1 {
    font-size: 7.65vw;
  }
  .hero-bottom {
    font-size: 7px;
  }
  .footer p {
    max-width: 170px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Cinematic funnel — local artwork, decorative motion, complete static fallback. */
:root {
  --bg: #080b09;
  --surface: #111610;
  --line: #2b342a;
  --muted: #a9b2a4;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.header {
  position: relative;
  z-index: 2;
  height: 94px;
}
.header nav {
  gap: 29px;
}
.header .nav-source {
  display: block;
  padding-left: 28px;
}
.hero {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  min-height: 725px;
  position: relative;
  z-index: 1;
}
.hero-copy {
  padding: 55px 0 64px;
  animation: none;
}
.hero h1 {
  font-size: clamp(40px, 4.8vw, 70px);
  line-height: 1.045;
  letter-spacing: -0.052em;
}
.hero .eyebrow {
  color: #b8c5ae;
  margin-bottom: 29px;
  font-size: 10px;
  letter-spacing: 0.13em;
}
.hero-description {
  max-width: 450px;
  font-size: 17px;
  line-height: 1.8;
  color: #c1c9ba;
}
.hero-note {
  margin-top: 25px;
  font-size: 11px;
}
.hero-note a {
  color: #b9c4af;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-left: 5px;
}
.hero-actions {
  gap: 26px;
}
.hero-art {
  min-width: 0;
  width: 100%;
  margin: 0;
  align-self: center;
  transform: none;
  animation: none;
}
.ship-stage {
  width: calc(100% + 60px);
  margin-left: -30px;
  height: 620px;
  position: relative;
}
.ship-stage .ship-poster,
.ship-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.ship-stage .ship-poster {
  filter: none;
  transition: opacity 0.4s ease;
}
.ship-stage[data-state="ready"] .ship-poster {
  opacity: 0;
}
.ship-canvas {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.ship-stage[data-state="ready"] .ship-canvas {
  opacity: 1;
}
.hero-art figcaption {
  padding: 0 24px 15px;
  align-items: center;
  min-height: 60px;
  font-size: 9px;
  color: #a5b29b;
  letter-spacing: 0.04em;
}
#motion-toggle {
  color: #d8e1d0;
  background: #10170ecc;
  border: 1px solid #52634a;
  min-height: 44px;
  min-width: 117px;
  padding: 10px 13px;
  font: 10px var(--mono);
}
#motion-toggle:hover {
  border-color: var(--acid);
  color: var(--acid);
}
.hero-bottom {
  position: relative;
  z-index: 1;
  padding-block: 24px;
  border-top-color: #36412d;
}
.cosmos {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  background: radial-gradient(
    ellipse at 77% 45%,
    #132617 0%,
    #08100c 32%,
    #080b09 65%
  );
}
.cosmos::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #080b09eb 0%, #080b09aa 31%, transparent 58%),
    linear-gradient(0deg, #080b09, transparent 23%);
}
.nebula {
  position: absolute;
  width: 1200px;
  height: 700px;
  right: -280px;
  top: -90px;
  opacity: 0.4;
  background:
    radial-gradient(ellipse at 56% 52%, #54773833 0%, transparent 42%),
    radial-gradient(ellipse at 33% 38%, #315a4550 0%, transparent 49%),
    radial-gradient(ellipse at 76% 70%, #14375366, transparent 40%);
  filter: blur(22px);
  transform: rotate(-20deg);
  animation: nebula-drift 70s ease-in-out infinite alternate;
}
.star-layer {
  position: absolute;
  inset: -100px;
  opacity: 0.46;
  background-image:
    radial-gradient(1px 1px at 35px 47px, #d1ded4 70%, transparent 100%),
    radial-gradient(1px 1px at 163px 142px, #a6c3ba 70%, transparent 100%),
    radial-gradient(1.3px 1.3px at 84px 251px, #d8e4cd 70%, transparent 100%),
    radial-gradient(0.8px 0.8px at 227px 76px, #91b09d 70%, transparent 100%);
  background-size: 313px 347px;
  animation: stars-drift 160s linear infinite;
}
.star-far {
  transform: rotate(29deg);
  opacity: 0.18;
  background-size: 179px 227px;
  animation-duration: 210s;
  animation-direction: reverse;
}
.hero[data-motion="paused"] .nebula,
.hero[data-motion="paused"] .star-layer {
  animation-play-state: paused;
}
@keyframes stars-drift {
  to {
    translate: 110px 70px;
  }
}
@keyframes nebula-drift {
  to {
    translate: -75px 35px;
    rotate: 10deg;
  }
}
.provider-section {
  padding-top: 67px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}
.provider-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 50px;
  align-items: end;
}
.provider-intro .eyebrow {
  grid-column: 1/-1;
  font-size: 9px;
}
.provider-intro h2 {
  font-size: 32px;
  line-height: 1.13;
  letter-spacing: -0.03em;
}
.provider-intro > p:last-child {
  color: var(--muted);
  max-width: 365px;
  justify-self: end;
  font-size: 14px;
}
.provider-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  background: #0d110e;
  border: 1px solid var(--line);
}
.provider-strip article {
  padding: 31px 30px 26px;
}
.provider-strip article + article {
  border-left: 1px solid var(--line);
}
.provider-name {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.provider-name img {
  object-fit: contain;
  flex-shrink: 0;
}
.provider-name h3 {
  font-size: 24px;
  letter-spacing: -0.015em;
}
.integration-label {
  color: #b5c5a7;
  font: 9px var(--mono);
  letter-spacing: 0.06em;
}
.provider-strip p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin-top: 11px;
}
.provider-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.8;
}
.provider-note a {
  color: #c3cdb8;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.system {
  padding-bottom: 58px;
}
.capabilities {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
}
.capabilities article {
  padding-right: 24px;
}
.capabilities article + article {
  padding-left: 24px;
}
.capabilities h3 {
  font-size: 23px;
  line-height: 1.2;
}
.capabilities p {
  font-size: 14px;
}
.capabilities .text-link {
  font-size: 11px;
}
.adapter-icon i {
  width: 35px;
  height: 30px;
  left: 6px;
  top: 8px;
  transform: skewY(-16deg);
}
.adapter-icon i:nth-child(2) {
  left: 18px;
  top: 19px;
}
.adapter-icon i:nth-child(3) {
  left: 30px;
  top: 30px;
  background: #b5ff4d16;
}
.adapter-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 10px 0 90px;
}
.adapter-section h2 {
  font-size: 33px;
  line-height: 1.2;
  margin-top: 22px;
  letter-spacing: -0.03em;
}
.adapter-section .eyebrow {
  font-size: 9px;
  color: #bdc9b1;
}
.adapter-explainer p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 15px;
}
.adapter-explainer .text-link {
  font-size: 12px;
}
.hardware {
  border-block: 1px solid var(--line);
  background: linear-gradient(135deg, #121b10, #0e140e 70%);
}
.hardware-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 49px;
}
.hardware-tiers article {
  border: 1px solid #374530;
  padding: 27px 26px;
  background: #0c110b;
}
.hardware-tiers article.recommended {
  border-color: #89ba45;
  background: #162111;
  position: relative;
}
.recommended::before {
  content: "";
  position: absolute;
  height: 3px;
  background: var(--acid);
  top: 0;
  left: 0;
  right: 0;
}
.tier-label {
  font: 9px/1.7 var(--mono);
  letter-spacing: 0.035em;
  color: #becfae;
}
.hardware-tiers h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-top: 20px;
}
.tier-spec {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-top: 33px;
  color: var(--acid);
}
.tier-spec span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #c0cdb7;
  margin-top: 10px;
}
.tier-disk {
  font-family: var(--mono);
  font-size: 10px;
  margin: 23px 0 20px;
  padding-top: 18px;
  border-top: 1px solid #334429;
  color: #ccd5c3;
}
.hardware-tiers article > p:not(.tier-disk) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.tier-boundary {
  display: block;
  font-size: 10px;
  line-height: 1.7;
  color: #9eb18f;
  margin-top: 22px;
}
.hardware-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  margin-top: 33px;
}
.hardware-notes p {
  color: var(--muted);
  font-size: 12px;
}
.hardware-notes strong {
  color: #d2dccc;
}
.hardware-foot {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.hardware-foot p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}
.hardware-foot strong {
  color: #d5decd;
  font-weight: 400;
}
.source-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 95px;
  border-top: 1px solid var(--line);
}
.source-section h2 {
  font-size: clamp(44px, 4.5vw, 65px);
  line-height: 1.07;
  letter-spacing: -0.04em;
  margin-top: 28px;
}
.source-section > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  max-width: 410px;
  margin-top: 25px;
}
.source-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  align-items: center;
}
.license-stack article {
  display: flex;
  gap: 22px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.license-stack article:last-child {
  margin: 0;
  border: 0;
  padding: 0;
}
.license-stack article > span {
  font: 10px var(--mono);
  color: var(--acid);
  padding-top: 4px;
}
.license-stack h3 {
  font-size: 22px;
  line-height: 1.2;
}
.license-stack p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 13px;
}
.license-stack .text-link {
  margin-top: 8px;
  font-size: 11px;
}
.footer {
  border-top: 1px solid var(--line);
}
@media (min-width: 1500px) {
  .hero-layout {
    min-height: 780px;
  }
  .ship-stage {
    height: 690px;
  }
}
@media (max-width: 1100px) {
  .hero-layout {
    min-height: 650px;
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 4.6vw;
  }
  .ship-stage {
    width: calc(100% + 30px);
    margin-left: -15px;
    height: 560px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-art figcaption {
    font-size: 8px;
    padding-inline: 0;
  }
  .capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .capabilities article {
    padding: 28px 28px 35px 0;
  }
  .capabilities article:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .capabilities article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .hardware-tiers {
    gap: 12px;
  }
  .hardware-tiers article {
    padding: 25px 20px;
  }
  .hardware-tiers h3 {
    font-size: 21px;
  }
  .source-section {
    gap: 55px;
  }
}
@media (max-width: 760px) {
  .header {
    height: 83px;
  }
  .header nav {
    gap: 17px;
    font-size: 11px;
  }
  .header .nav-system {
    display: none;
  }
  .header .nav-source {
    padding-left: 0;
    border: 0;
  }
  .nav-source span {
    padding-left: 3px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    padding: 48px 0 8px;
  }
  .hero h1 {
    font-size: clamp(31px, 7.8vw, 59px);
  }
  .hero .eyebrow {
    font-size: 8px;
    margin-bottom: 23px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 430px;
    margin-top: 23px;
  }
  .hero-actions {
    flex-direction: row;
    margin-top: 25px;
    gap: 17px;
  }
  .hero-note {
    font-size: 10px;
    margin-top: 20px;
  }
  .hero-note a {
    margin-left: 0;
  }
  .hero-art {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
  .ship-stage {
    height: 400px;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .hero-art img {
    margin: 0;
  }
  .hero-art figcaption {
    margin: 0;
    padding: 0 0 16px;
    min-height: 60px;
    font-size: 8px;
    gap: 10px;
  }
  .hero-bottom {
    font-size: 7px;
    padding-block: 18px;
  }
  .hero-bottom a {
    gap: 12px;
  }
  .cosmos {
    background: radial-gradient(ellipse at 65% 62%, #152c17, #080b09 57%);
  }
  .cosmos::after {
    background: linear-gradient(180deg, #080b09ad, transparent 63%, #080b09);
  }
  .nebula {
    top: 200px;
    right: -400px;
  }
  .provider-section {
    padding-top: 44px;
    padding-bottom: 48px;
  }
  .provider-intro {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .provider-intro h2 {
    font-size: 30px;
  }
  .provider-intro > p:last-child {
    justify-self: start;
    font-size: 13px;
  }
  .provider-strip {
    grid-template-columns: 1fr;
    margin-top: 27px;
  }
  .provider-strip article {
    padding: 25px;
  }
  .provider-strip article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .provider-name {
    margin-bottom: 17px;
  }
  .provider-note {
    font-size: 10px;
  }
  .capabilities {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .capabilities article:nth-child(3) {
    padding-left: 72px;
  }
  .system {
    padding-bottom: 40px;
  }
  .adapter-section {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-bottom: 55px;
  }
  .adapter-section h2 {
    font-size: 30px;
    margin-top: 18px;
  }
  .adapter-explainer p {
    font-size: 13px;
  }
  .hardware-tiers {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }
  .hardware-tiers article {
    padding: 27px;
  }
  .hardware-tiers h3 {
    font-size: 25px;
  }
  .tier-spec {
    margin-top: 26px;
    font-size: 48px;
  }
  .tier-spec span {
    display: inline;
    font-size: 12px;
    margin-left: 8px;
  }
  .tier-disk {
    margin-top: 23px;
  }
  .hardware-notes {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hardware-foot {
    align-items: start;
    flex-direction: column;
    gap: 13px;
  }
  .source-section {
    grid-template-columns: 1fr;
    gap: 43px;
  }
  .source-section h2 {
    font-size: 44px;
    margin-top: 24px;
  }
  .source-section .eyebrow {
    font-size: 9px;
  }
  .source-section > div > p:not(.eyebrow) {
    font-size: 15px;
  }
  .license-stack h3 {
    font-size: 21px;
  }
}
@media (max-width: 380px) {
  .header nav {
    gap: 10px;
    font-size: 10px;
  }
  .brand {
    gap: 7px;
  }
  .brand > span {
    font-size: 21px;
  }
  .brand-sub {
    font-size: 6px;
  }
  .brand img {
    width: 27px;
  }
  .hero h1 {
    font-size: 7.55vw;
  }
  .hero-actions {
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .ship-stage {
    height: 345px;
    width: calc(100% + 32px);
    margin-left: -16px;
  }
  .hero-note a {
    display: inline-block;
  }
  .tier-spec span {
    display: block;
    margin-left: 0;
  }
  .source-section h2 {
    font-size: 39px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nebula,
  .star-layer {
    animation: none !important;
  }
  .ship-stage .ship-poster,
  .ship-canvas {
    transition: none;
  }
}

/* Keep stars visible in the open space around the ship. */
.star-near {
  opacity: 0.66;
}
.nebula {
  opacity: 0.62;
}
/* Restore the static artwork immediately if the graphics context is lost. */
.ship-stage[data-state="fallback"] .ship-poster {
  opacity: 1;
  transition: none;
}
