:root {
  --bg: #010309;
  --text: #f7fbff;
  --muted: rgba(226, 236, 248, 0.68);
  --soft: rgba(226, 236, 248, 0.44);
  --line: rgba(217, 234, 255, 0.13);
  --line-strong: rgba(217, 234, 255, 0.24);
  --glass: rgba(2, 6, 15, 0.34);
  --glass-strong: rgba(2, 7, 17, 0.46);
  --cyan: #8ec7ff;
  --blue: #4f85ff;
  --silver: #eef5ff;
  --earth-x: 16vw;
  --earth-y: 9vh;
  --earth-scale: 1.08;
  --earth-opacity: 1;
  --page-pad: clamp(22px, 5.2vw, 92px);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-video-lock {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1, 3, 9, 0.82), rgba(1, 3, 9, 0.18) 42%, rgba(1, 3, 9, 0.56)),
    linear-gradient(180deg, rgba(1, 3, 9, 0.05), rgba(1, 3, 9, 0.12) 48%, rgba(1, 3, 9, 0.68)),
    radial-gradient(circle at 25% 16%, rgba(142, 199, 255, 0.08), transparent 28%);
}

a {
  color: inherit;
  text-decoration: none;
}

#top,
#systems,
#satellites,
#components,
#propulsion,
#mission,
#qualification,
#contact {
  scroll-margin-top: 112px;
}

.earth-backdrop {
  position: fixed;
  inset: -12vmax;
  z-index: 0;
  pointer-events: none;
  background-image: url("./assets/final-idle.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: var(--earth-opacity);
  transform:
    translate3d(var(--earth-x), var(--earth-y), 0)
    scale(var(--earth-scale));
  transform-origin: center center;
  filter:
    saturate(1.16)
    contrast(1.1)
    brightness(1.28);
  will-change: transform, opacity;
}

.earth-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 3, 9, 0.34), transparent 38%, rgba(1, 3, 9, 0.18)),
    linear-gradient(180deg, rgba(1, 3, 9, 0.02), rgba(1, 3, 9, 0.44));
}

.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 360ms var(--ease-out-quint),
    filter 360ms var(--ease-out-quint);
}

body.is-video-fading:not(.is-idle) .starfield,
body.is-arrival:not(.is-idle) .starfield {
  z-index: 35;
  opacity: 0.84;
  filter: brightness(1.12);
}

body.is-idle .starfield {
  z-index: 0;
  opacity: 0.48;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(1, 3, 9, 0.02), rgba(1, 3, 9, 0.2) 45%, rgba(1, 3, 9, 0.48)),
    transparent;
}

.reveal-item {
  --reveal-y: 54px;
  --reveal-scale: 0.972;
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0) scale(var(--reveal-scale));
  clip-path: inset(14% 0 0 0 round 12px);
  filter: blur(9px);
  transition:
    opacity 760ms var(--ease-out-quint),
    transform 920ms var(--ease-out-quint),
    clip-path 920ms var(--ease-out-quint),
    filter 760ms var(--ease-out-quint);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, clip-path, filter;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0 0 0 0 round 0);
  filter: blur(0);
}

.reveal-item.is-visible.is-scroll-motion {
  transition:
    opacity 240ms linear,
    transform 140ms linear,
    clip-path 240ms linear,
    filter 240ms linear;
}

.system-grid article.reveal-item {
  --reveal-y: 0px;
  --reveal-scale: 1;
  transform-origin: 50% 100%;
}

.proof-grid div.reveal-item {
  --reveal-y: 0px;
  --reveal-scale: 1;
}

.system-grid article.reveal-item.is-visible,
.proof-grid div.reveal-item.is-visible,
.handoff-panel.reveal-item.is-visible,
.contact-console.reveal-item.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.journey-copy .reveal-item.is-visible,
.mission-copy .reveal-item.is-visible,
.contact-copy .reveal-item.is-visible {
  transform: translate3d(0, var(--text-shift, 0px), 0) scale(1);
}

.section-label.reveal-item,
.tag-row span.reveal-item {
  display: inline-flex;
}

.orbit-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.final-frame,
.arrival-frame,
.video-standin,
.blackout {
  position: absolute;
  inset: 0;
}

.video-standin,
.blackout {
  position: fixed;
}

.final-frame,
.arrival-frame {
  display: none;
  background: transparent;
  transition: opacity 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.final-frame {
  z-index: 0;
  opacity: 1;
}

body.is-idle .final-frame {
  opacity: 0;
}

.arrival-frame {
  z-index: 1;
  opacity: 0;
}

body.is-arrival .arrival-frame {
  opacity: 1;
}

body.is-idle .arrival-frame {
  opacity: 0;
}

.final-frame::after,
.arrival-frame::after,
.video-standin::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 3, 9, 0.88), rgba(1, 3, 9, 0.28) 34%, rgba(1, 3, 9, 0.18) 64%, rgba(1, 3, 9, 0.66)),
    linear-gradient(180deg, rgba(1, 3, 9, 0.04), rgba(1, 3, 9, 0.42) 74%, rgba(1, 3, 9, 0.82));
  pointer-events: none;
}

.video-standin {
  z-index: 30;
  overflow: hidden;
  background: #000;
  opacity: 1;
  transition: opacity 360ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 360ms;
}

.video-standin.needs-play {
  cursor: pointer;
}

.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-standin.is-finished,
body.is-idle .video-standin {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none;
}

.blackout {
  z-index: 34;
  pointer-events: none;
  background: #000;
  opacity: 0;
  transition: opacity 320ms ease;
}

body.is-video-fading .blackout {
  opacity: 1;
}

body.is-arrival .blackout,
body.is-idle .blackout {
  opacity: 0;
  transition-duration: 360ms;
}

.transition-mark {
  position: fixed;
  inset: 0;
  z-index: 36;
  display: grid;
  place-items: center;
  padding: var(--page-pad);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 360ms var(--ease-out-quint),
    transform 520ms var(--ease-out-quint);
}

.transition-mark-card {
  position: relative;
  display: grid;
  place-items: center;
  width: fit-content;
  max-width: 74vw;
  min-height: 0;
  padding: clamp(8px, 1.05vw, 14px) clamp(12px, 1.55vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(14px, 1.6vw, 22px);
  overflow: hidden;
  filter:
    drop-shadow(0 28px 62px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 34px rgba(142, 199, 255, 0.2));
  box-shadow:
    inset 0 0 0 1px rgba(142, 199, 255, 0.18),
    inset 0 0 28px rgba(255, 255, 255, 0.035),
    0 0 28px rgba(255, 255, 255, 0.13);
}

.transition-mark-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 28%,
    rgba(142, 199, 255, 0.1) 41%,
    rgba(255, 255, 255, 0.74) 50%,
    rgba(142, 199, 255, 0.12) 59%,
    transparent 72%
  );
  border-radius: inherit;
  opacity: 0;
  transform: translateX(-72%) skewX(-14deg);
  mix-blend-mode: screen;
  pointer-events: none;
}

.transition-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(390px, 54vw);
  max-width: 100%;
  height: auto;
  filter:
    brightness(1.08)
    contrast(1.06)
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
}

body.is-video-fading:not(.is-idle) .transition-mark {
  opacity: 1 !important;
  transform: scale(1);
  transition: none;
}

body.is-video-fading:not(.is-idle) .transition-mark-card::before {
  animation: logoLightSweep 840ms var(--ease-out-quint) 80ms both;
}

body.is-arrival .transition-mark,
body.is-idle .transition-mark {
  opacity: 0 !important;
  transform: scale(1.025);
  transition:
    opacity 160ms var(--ease-out-quint),
    transform 220ms var(--ease-out-quint);
}

body.is-arrival.is-video-fading .transition-mark,
body.is-idle.is-video-fading .transition-mark {
  opacity: 0 !important;
}

@keyframes logoLightSweep {
  0% {
    opacity: 0;
    transform: translateX(-72%) skewX(-14deg);
  }

  24%,
  62% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(72%) skewX(-14deg);
  }
}

.standin-status {
  position: absolute;
  left: var(--page-pad);
  right: var(--page-pad);
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(234, 243, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sequence-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sequence-button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(244, 248, 255, 0.86);
  background: rgba(10, 18, 34, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.sequence-button:hover {
  color: #fff;
  background: rgba(18, 32, 56, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 46px rgba(0, 0, 0, 0.42);
}

.sequence-button:focus-visible,
.primary-action:focus-visible,
.secondary-action:focus-visible,
.header-contact:focus-visible,
.nav-links a:focus-visible,
.mission-rail a:focus-visible,
.rocket-dismiss:focus-visible,
.rocket-return:focus-visible {
  outline: 2px solid rgba(142, 199, 255, 0.86);
  outline-offset: 3px;
}

.standin-progress {
  position: absolute;
  left: var(--page-pad);
  right: var(--page-pad);
  bottom: 24px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.standin-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fff, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 120ms linear;
}

.topbar {
  position: fixed;
  top: 22px;
  left: var(--page-pad);
  right: var(--page-pad);
  z-index: 32;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 62px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(217, 234, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(2, 7, 17, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(28px) saturate(1.2);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 780ms ease, transform 780ms ease;
}

body.is-idle .topbar {
  opacity: 1;
  transform: translateY(0);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(246, 249, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.brand-logo {
  display: block;
  width: clamp(128px, 9vw, 156px);
  height: auto;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(234, 243, 255, 0.72);
  font-size: 12px;
  font-weight: 740;
  text-transform: uppercase;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 12px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 -1px 0 rgba(142, 199, 255, 0.7);
}

.header-contact {
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 17px;
  color: #06101f;
  font-size: 13px;
  font-weight: 820;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(213, 226, 248, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 16px 38px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-contact:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 44px rgba(0, 0, 0, 0.28);
}

.rocket-layer {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  contain: layout paint;
}

.rocket-grab {
  --rocket-x: 0px;
  --rocket-y: 0px;
  --rocket-rot: 0deg;
  position: absolute;
  z-index: 1;
  top: 42%;
  left: 76%;
  width: clamp(54px, 4.2vw, 84px);
  aspect-ratio: 89 / 337;
  border: 0;
  padding: 0;
  cursor: grab;
  background: transparent;
  opacity: 0;
  transform:
    translate3d(calc(-50% + var(--rocket-x)), calc(-50% + var(--rocket-y)), 0)
    rotate(var(--rocket-rot));
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.55));
  touch-action: none;
  pointer-events: none;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition:
    opacity 700ms ease 180ms,
    filter 220ms ease;
}

body.is-rocket-ready .rocket-grab,
body.is-idle .rocket-grab {
  opacity: 1;
}

body.is-idle .rocket-grab {
  pointer-events: auto;
}

body.is-rocket-missing .rocket-grab {
  visibility: hidden;
  opacity: 0 !important;
  pointer-events: none;
  transition: none;
}

body.is-rocket-arriving .rocket-grab {
  animation: rocketArrival 1200ms cubic-bezier(0.16, 0.86, 0.22, 1) both;
}

.rocket-grab.is-dragging {
  cursor: grabbing;
  filter:
    drop-shadow(0 30px 42px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 18px rgba(86, 142, 255, 0.25));
  transition: opacity 700ms ease, filter 140ms ease;
}

.rocket-grab.is-in-flight {
  cursor: crosshair;
}

.rocket-grab.is-powered {
  filter:
    drop-shadow(0 28px 38px rgba(0, 0, 0, 0.68))
    drop-shadow(0 0 18px rgba(255, 122, 34, 0.46));
}

.thruster-effect {
  position: absolute;
  z-index: 0;
  left: 57%;
  bottom: -40%;
  width: 270%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform:
    translateX(calc(-19% - 4px))
    translateY(18%)
    rotate(90deg)
    scaleX(1.12)
    scaleY(1.72);
  transform-origin: 50% 12%;
  mix-blend-mode: screen;
  filter:
    saturate(1.8)
    contrast(1.28)
    blur(0.18px)
    drop-shadow(0 0 18px rgba(255, 129, 36, 0.66));
  contain: paint;
  will-change: opacity, transform;
  transition: opacity 140ms ease;
}

.thruster-effect--right {
  transform:
    translateX(calc(-7% - 10px))
    translateY(18%)
    rotate(90deg)
    scaleX(1.12)
    scaleY(1.72);
}

.rocket-grab.is-powered .thruster-effect {
  opacity: 0.96;
}

.thruster-effect video {
  display: none;
}

.thruster-canvas {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1.38);
  backface-visibility: hidden;
}

@keyframes rocketArrival {
  0% {
    opacity: 0;
    transform:
      translate3d(calc(-50% + var(--rocket-x) - 16vw), calc(-50% + var(--rocket-y) + 42vh), 0)
      rotate(calc(var(--rocket-rot) - 18deg))
      scale(0.9);
  }

  72% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform:
      translate3d(calc(-50% + var(--rocket-x)), calc(-50% + var(--rocket-y)), 0)
      rotate(var(--rocket-rot))
      scale(1);
  }
}

.rocket-grab img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  backface-visibility: hidden;
}

.rocket-hint {
  position: absolute;
  left: 50%;
  top: -18px;
  z-index: 3;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 234, 255, 0.16);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(244, 248, 255, 0.94);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(4, 10, 22, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 34px rgba(0, 0, 0, 0.36),
    0 0 22px rgba(142, 199, 255, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -100%, 0) scale(0.96);
  transition:
    opacity 260ms var(--ease-out-quint),
    transform 320ms var(--ease-out-quint);
  backdrop-filter: blur(18px) saturate(1.16);
}

.rocket-hint::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(217, 234, 255, 0.16);
  border-bottom: 1px solid rgba(217, 234, 255, 0.16);
  background: rgba(4, 10, 22, 0.76);
  transform: translateX(-50%) rotate(45deg);
}

body.is-rocket-hint-visible .rocket-hint {
  opacity: 1;
  transform: translate3d(-50%, -100%, 0) scale(1);
  animation: rocketHintFloat 1800ms var(--ease-out-quint) infinite;
}

@keyframes rocketHintFloat {
  0%,
  100% {
    transform: translate3d(-50%, -100%, 0) scale(1);
  }

  50% {
    transform: translate3d(-50%, calc(-100% - 5px), 0) scale(1);
  }
}

.rocket-return,
.rocket-dismiss {
  position: fixed;
  right: max(36px, env(safe-area-inset-right));
  bottom: max(36px, env(safe-area-inset-bottom));
  z-index: 4;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 143, 74, 0.18), transparent 42%),
    rgba(7, 13, 25, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 36px rgba(0, 0, 0, 0.44),
    0 0 22px rgba(86, 142, 255, 0.18);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(10px);
  backdrop-filter: blur(18px);
  overflow: visible;
  transition:
    box-shadow 180ms ease;
}

.rocket-dismiss {
  opacity: 0;
}

.rocket-return-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 38px;
  transform: translate(-50%, -50%) rotate(18deg);
  transform-origin: 50% 50%;
  pointer-events: none;
  animation: returnRocketOrbit 6.4s linear infinite;
  will-change: transform;
}

.rocket-return img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(0);
  filter: drop-shadow(0 0 10px rgba(255, 143, 74, 0.48));
  pointer-events: none;
}

.rocket-return:hover,
.rocket-return:focus-visible,
.rocket-dismiss:hover,
.rocket-dismiss:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(86, 142, 255, 0.3);
  transform: translateY(6px);
}

body.is-rocket-missing .rocket-return {
  opacity: 1 !important;
  pointer-events: auto;
  transform: translateY(0) !important;
}

.rocket-dismiss span {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.rocket-dismiss span::before,
.rocket-dismiss span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(244, 248, 255, 0.9);
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.22),
    0 0 18px rgba(86, 142, 255, 0.22);
  transform-origin: center;
}

.rocket-dismiss span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.rocket-dismiss span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.is-idle:not(.is-rocket-missing) .rocket-dismiss {
  opacity: 1 !important;
  pointer-events: auto;
  transform: translateY(0) !important;
}

body.is-rocket-missing .rocket-dismiss {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateY(10px);
}

@keyframes returnRocketOrbit {
  0%,
  46% {
    transform: translate(-50%, -50%) translate(0, 0) rotate(18deg) scale(0.92);
  }

  50% {
    transform: translate(-50%, -50%) translate(0, -36px) rotate(90deg) scale(0.94);
  }

  54% {
    transform: translate(-50%, -50%) translate(25px, -25px) rotate(135deg) scale(0.94);
  }

  58% {
    transform: translate(-50%, -50%) translate(36px, 0) rotate(180deg) scale(0.94);
  }

  62% {
    transform: translate(-50%, -50%) translate(25px, 25px) rotate(225deg) scale(0.94);
  }

  66% {
    transform: translate(-50%, -50%) translate(0, 36px) rotate(270deg) scale(0.94);
  }

  70% {
    transform: translate(-50%, -50%) translate(-25px, 25px) rotate(315deg) scale(0.94);
  }

  74% {
    transform: translate(-50%, -50%) translate(-36px, 0) rotate(360deg) scale(0.94);
  }

  78% {
    transform: translate(-50%, -50%) translate(-25px, -25px) rotate(405deg) scale(0.94);
  }

  82% {
    transform: translate(-50%, -50%) translate(0, -36px) rotate(450deg) scale(0.94);
  }

  88% {
    transform: translate(-50%, -50%) translate(0, 0) rotate(378deg) scale(0.92);
  }

  100% {
    transform: translate(-50%, -50%) translate(0, 0) rotate(378deg) scale(0.92);
  }
}

.hero-copy {
  position: relative;
  z-index: 5;
  align-self: end;
  width: min(860px, calc(100vw - var(--page-pad) * 2));
  margin: auto auto 8vh var(--page-pad);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 820ms ease 220ms, transform 820ms ease 220ms;
}

body.is-idle .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(48px, 6.6vw, 104px);
  line-height: 0.9;
  font-weight: 780;
  text-wrap: balance;
}

.hero-copy > p:not(.section-label) {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 760;
  backdrop-filter: blur(18px) saturate(1.2);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.primary-action {
  color: #06101f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(210, 224, 246, 0.86));
  box-shadow:
    0 18px 48px rgba(10, 24, 48, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.secondary-action {
  border: 1px solid var(--line);
  color: rgba(244, 248, 255, 0.9);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.mission-rail {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 14;
  display: none;
  gap: 10px;
  transform: translateY(-50%);
}

.mission-rail a {
  display: grid;
  min-width: 108px;
  gap: 2px;
  padding: 11px 13px;
  border: 1px solid rgba(217, 234, 255, 0.11);
  border-radius: 999px;
  color: rgba(234, 243, 255, 0.54);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
  background: rgba(7, 13, 25, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.mission-rail span {
  color: var(--cyan);
}

.mission-rail a:hover {
  color: var(--text);
  border-color: rgba(142, 199, 255, 0.32);
  background: rgba(142, 199, 255, 0.1);
}

.content-band,
.mission-band,
.qualification-band,
.contact-band {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  overflow: visible;
}

.content-band::before,
.mission-band::before,
.qualification-band::before,
.contact-band::before {
  display: none;
}

.journey-band::after,
.proof-band::after,
.qualification-band::after {
  content: "";
  position: absolute;
  inset: 14% -8% auto auto;
  width: 42vw;
  height: 42vw;
  max-width: 640px;
  max-height: 640px;
  border: 1px solid rgba(142, 199, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-18deg);
}

.proof-band::after {
  inset: auto auto 7% -10%;
  transform: rotate(14deg);
}

.qualification-band::after {
  inset: 8% auto auto 48%;
  width: 38vw;
  height: 38vw;
  transform: rotate(28deg);
}

.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(78px, 9vh, 118px) var(--page-pad);
}

.split {
  display: grid;
  grid-template-columns: minmax(360px, 0.68fr) minmax(560px, 1.32fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
}

.journey-band .section-inner {
  padding-top: clamp(112px, 14vh, 166px);
  padding-bottom: clamp(100px, 12vh, 148px);
}

.journey-band .split {
  --section-one-offset: clamp(76px, 10vh, 132px);
  position: relative;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 28px);
  align-items: start;
  min-height: 760px;
}

.journey-copy {
  position: relative;
  z-index: 4;
  grid-column: 8 / 13;
  grid-row: 1;
  max-width: 640px;
  justify-self: end;
  margin-top: var(--section-one-offset);
  padding-top: 0;
}

.journey-copy > p:not(.section-label) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.6;
}

.journey-copy h2 {
  max-width: none;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 0.92;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag-row span {
  padding: 10px 13px;
  border: 1px solid rgba(142, 199, 255, 0.2);
  border-radius: 999px;
  color: #d5f5ff;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  background: rgba(142, 199, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

h2 {
  margin: 0;
  font-size: clamp(38px, 5.1vw, 76px);
  line-height: 0.96;
  font-weight: 760;
  letter-spacing: 0;
  text-wrap: balance;
}

.system-grid {
  display: grid;
  grid-column: 1 / 8;
  grid-row: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(286px, auto);
  gap: clamp(12px, 1.25vw, 18px);
  align-items: stretch;
  margin-top: var(--section-one-offset);
  z-index: 2;
}

.system-grid article,
.handoff-panel,
.proof-grid div,
.qualification-stage,
.qualification-visual,
.contact-console {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012)),
    var(--glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 32px 110px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(34px) saturate(1.18);
}

.system-grid article {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: clamp(14px, 1.45vw, 21px);
  border-radius: 18px;
}

.system-grid article:nth-child(1) {
  grid-column: auto;
  grid-row: auto;
  min-height: 286px;
}

.system-grid article:nth-child(2) {
  grid-column: auto;
  grid-row: auto;
  min-height: 286px;
}

.system-grid article:nth-child(3) {
  grid-column: auto;
  grid-row: auto;
  min-height: 286px;
}

.system-grid article:nth-child(4) {
  grid-column: auto;
  grid-row: auto;
  min-height: 286px;
  margin-top: 0;
}

.system-grid article:nth-child(1) .product-visual {
  aspect-ratio: 16 / 8.75;
  max-height: none;
}

.product-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8.75;
  max-height: none;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(217, 234, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 54%, rgba(1, 3, 9, 0.32)),
    radial-gradient(circle at 72% 12%, rgba(142, 199, 255, 0.18), transparent 42%);
}

.product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transform: translate3d(0, 0, 0) scale(1.03);
  transition: transform 260ms var(--ease-out-quint);
}

.system-grid span,
.handoff-panel span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-grid h3 {
  margin: 10px 0 12px;
  font-size: clamp(21px, 1.85vw, 28px);
  line-height: 1.02;
}

.system-grid p,
.mission-copy p,
.qualification-heading p,
.qualification-stage p,
.handoff-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.mission-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(330px, 0.48fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

.mission-layout {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas: none;
  align-items: center;
  min-height: 680px;
}

.contact-layout {
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(30px, 5vw, 64px);
}

.mission-copy {
  grid-column: 1 / 7;
  grid-row: 1;
  max-width: none;
  align-self: center;
  justify-self: stretch;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.mission-copy h2 {
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 0.9;
}

.mission-copy p:not(.section-label) {
  max-width: 720px;
  margin-top: 26px;
  font-size: clamp(17px, 1.4vw, 21px);
}

.contact-copy {
  grid-column: 3 / 11;
  max-width: 980px;
  justify-self: center;
  text-align: center;
}

.contact-copy h2 {
  font-size: clamp(42px, 5vw, 76px);
}

.contact-copy > p:not(.section-label) {
  max-width: 690px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.62;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 38px;
}

.proof-grid div {
  min-height: 112px;
  padding: 18px;
  border-radius: 16px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--text);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
}

.proof-grid span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.handoff-panel {
  grid-column: 8 / 13;
  grid-row: 1;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(24px, 2.4vw, 38px);
  background:
    linear-gradient(155deg, rgba(142, 199, 255, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(2, 7, 17, 0.38);
}

.handoff-panel img {
  width: min(100%, 680px);
  max-height: 360px;
  object-fit: contain;
  align-self: center;
  margin: clamp(38px, 5vw, 70px) auto 6px;
  transform: translate3d(0, 0, 0);
  filter:
    drop-shadow(0 30px 46px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 28px rgba(142, 199, 255, 0.16));
}

.handoff-panel strong {
  display: block;
  max-width: 360px;
  margin: 0 0 6px;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 0.96;
}

.qualification-band {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: clamp(56px, 7vh, 104px);
  background: transparent;
  overflow: visible;
}

.qualification-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: clamp(14px, 1.8vw, 24px);
  align-items: stretch;
  min-height: 680px;
}

.qualification-heading {
  grid-column: 7 / 13;
  align-self: end;
  max-width: 860px;
  padding-bottom: clamp(22px, 4vw, 52px);
}

.qualification-heading h2 {
  max-width: 780px;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 0.9;
}

.qualification-heading p {
  max-width: 650px;
  margin-top: 24px;
  font-size: clamp(17px, 1.35vw, 21px);
}

.qualification-stage {
  display: flex;
  min-height: clamp(172px, 18vw, 252px);
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 22px;
  padding: clamp(20px, 2.1vw, 30px);
  background:
    linear-gradient(155deg, rgba(142, 199, 255, 0.11), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.014)),
    rgba(2, 7, 17, 0.34);
}

.qualification-stage--wide {
  grid-column: 1 / 6;
  grid-row: 2;
}

.qualification-stage:not(.qualification-stage--wide):nth-of-type(3) {
  grid-column: 6 / 9;
  grid-row: 2;
}

.qualification-stage:not(.qualification-stage--wide):nth-of-type(4) {
  grid-column: 9 / 13;
  grid-row: 2;
}

.qualification-stage strong {
  display: block;
  color: var(--text);
  font-size: clamp(25px, 2.35vw, 38px);
  line-height: 1;
}

.qualification-stage p {
  margin-top: 14px;
}

.qualification-visual {
  grid-column: 1 / 7;
  grid-row: 1;
  min-height: clamp(340px, 32vw, 500px);
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(24px, 2.4vw, 38px);
  background:
    linear-gradient(155deg, rgba(142, 199, 255, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(2, 7, 17, 0.38);
}

.qualification-visual img {
  display: block;
  width: min(100%, 680px);
  max-height: 360px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  filter:
    saturate(1.08)
    contrast(1.04)
    brightness(0.96)
    drop-shadow(0 30px 46px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 28px rgba(142, 199, 255, 0.16));
}

.contact-band {
  min-height: 100svh;
}

.contact-layout {
  min-height: 560px;
  padding: clamp(30px, 5vw, 76px) var(--page-pad);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.contact-console {
  grid-column: 1 / 13;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) minmax(430px, 1.22fr) minmax(300px, 0.88fr);
  align-content: stretch;
  gap: 0;
  min-height: 260px;
  color: rgba(244, 248, 255, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(142, 199, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(1, 4, 11, 0.2), rgba(1, 4, 11, 0.34));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 24px 76px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(28px) saturate(1.12);
  overflow: hidden;
}

.contact-methods,
.address-grid,
.briefing-strip {
  padding: clamp(20px, 2vw, 30px);
}

.contact-methods span,
.address-grid span,
.briefing-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-methods {
  display: grid;
  gap: 0;
  border-right: 1px solid rgba(217, 234, 255, 0.1);
}

.contact-methods a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  border-radius: 12px;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-methods a:hover {
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(4px);
}

.contact-methods a:focus-visible,
.footer-links a:focus-visible,
.footer-bottom a:focus-visible,
.footer-controls button:focus-visible,
.footer-logo:focus-visible {
  outline: 2px solid rgba(142, 199, 255, 0.86);
  outline-offset: 3px;
}

.contact-methods strong {
  color: var(--text);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  border-right: 1px solid rgba(217, 234, 255, 0.1);
}

.address-grid div {
  display: grid;
  gap: 8px;
}

.address-grid strong {
  color: var(--text);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.12;
}

.address-grid p,
.briefing-strip p,
.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.briefing-strip {
  display: grid;
  gap: 14px;
  align-content: center;
  justify-items: start;
}

.briefing-strip span {
  color: var(--cyan);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.briefing-strip p {
  max-width: 310px;
  color: rgba(244, 248, 255, 0.82);
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: clamp(64px, 8vw, 110px) 0 0;
  background:
    linear-gradient(180deg, transparent, rgba(1, 3, 9, 0.8) 34%, rgba(1, 3, 9, 0.96));
}

.footer-inner {
  width: 100%;
  border-top: 1px solid rgba(217, 234, 255, 0.12);
  border-radius: 0;
  padding: clamp(28px, 4vw, 54px) var(--page-pad) max(24px, env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    rgba(2, 6, 15, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 32px 110px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(34px) saturate(1.16);
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding-bottom: clamp(26px, 4vw, 46px);
  border-bottom: 1px solid rgba(217, 234, 255, 0.1);
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(246, 249, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.footer-logo img {
  width: 156px;
  height: auto;
}

.footer-brand p {
  max-width: 620px;
  justify-self: end;
  font-size: clamp(17px, 1.3vw, 21px);
}

.footer-links {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: clamp(24px, 4vw, 66px);
  padding: clamp(26px, 4vw, 46px) 0;
  border-bottom: 1px solid rgba(217, 234, 255, 0.1);
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links span {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(244, 248, 255, 0.74);
  font-size: 14px;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-controls a:hover,
.footer-controls button:hover {
  color: var(--text);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(226, 236, 248, 0.58);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-controls a,
.footer-controls button {
  border: 0;
  padding: 0;
  color: rgba(226, 236, 248, 0.7);
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

@media (max-width: 980px) {
  :root {
    --page-pad: clamp(18px, 5vw, 46px);
  }

  .topbar {
    top: 16px;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .mission-rail {
    display: none;
  }

  .hero-copy {
    width: calc(100vw - var(--page-pad) * 2);
    margin-bottom: 7vh;
  }

  .split,
  .mission-layout,
  .contact-layout,
  .qualification-layout,
  .system-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .mission-layout {
    grid-template-areas: none;
  }

  .journey-band .section-inner {
    padding-top: 100px;
    padding-bottom: 90px;
  }

  .journey-band .split {
    min-height: 0;
  }

  .journey-band .split::before {
    display: none;
  }

  .journey-copy,
  .system-grid,
  .mission-copy,
  .handoff-panel,
  .qualification-heading,
  .qualification-stage,
  .qualification-visual,
  .contact-copy,
  .contact-console {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .system-grid {
    margin-top: 34px;
  }

  .system-grid article:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
    margin-top: 0;
  }

  .content-band,
  .mission-band,
  .qualification-band,
  .contact-band {
    min-height: auto;
  }

  .section-inner {
    padding: 90px var(--page-pad);
  }

  .handoff-panel {
    min-height: 300px;
  }

  .qualification-layout {
    min-height: 0;
  }

  .qualification-heading {
    padding-bottom: 12px;
  }

  .qualification-stage,
  .qualification-stage--wide,
  .qualification-stage:not(.qualification-stage--wide):nth-of-type(3),
  .qualification-stage:not(.qualification-stage--wide):nth-of-type(4) {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 178px;
  }

  .qualification-visual {
    min-height: 300px;
    padding: 22px;
  }

  .contact-layout {
    min-height: auto;
  }

  .contact-console {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-copy {
    max-width: none;
    justify-self: stretch;
    text-align: left;
  }

  .contact-copy > p:not(.section-label) {
    margin-left: 0;
    margin-right: 0;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .contact-methods,
  .address-grid {
    border-right: 0;
    border-bottom: 1px solid rgba(217, 234, 255, 0.1);
  }

  .address-grid,
  .footer-brand,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-brand p {
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .rocket-grab {
    top: 26.5%;
    left: 84%;
    width: 36px;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.52));
  }

  .rocket-grab.is-powered {
    filter:
      drop-shadow(0 20px 28px rgba(0, 0, 0, 0.58))
      drop-shadow(0 0 12px rgba(255, 122, 34, 0.34));
  }

  .thruster-effect {
    filter:
      saturate(1.55)
      contrast(1.18)
      drop-shadow(0 0 12px rgba(255, 129, 36, 0.52));
  }

  .topbar {
    min-height: 56px;
    padding-right: 12px;
  }

  .brand {
    padding: 8px 11px;
  }

  .brand-logo {
    width: 118px;
  }

  .header-contact {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 14vw, 78px);
  }

  .hero-actions {
    gap: 10px;
  }

  .primary-action,
  .secondary-action {
    min-height: 46px;
    padding: 0 17px;
  }

  .journey-band::after,
  .proof-band::after,
  .qualification-band::after {
    display: none;
  }

  .proof-grid div {
    min-height: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  body.is-rocket-arriving .rocket-grab {
    animation: none;
  }

  .rocket-return-orbit {
    animation: none;
  }

  .rocket-hint {
    animation: none !important;
  }

  .reveal-item,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    clip-path: none;
    filter: none;
  }

  .earth-backdrop {
    transform: translate3d(10vw, 8vh, 0) scale(1.1);
  }
}
