:root {
  --bg: #050711;
  --bg-soft: #090d1d;
  --panel: rgba(12, 18, 39, 0.72);
  --panel-strong: rgba(9, 14, 31, 0.94);
  --line: rgba(148, 163, 184, 0.17);
  --line-bright: rgba(56, 189, 248, 0.38);
  --text: #f8fafc;
  --muted: #9aa8bd;
  --faint: #637087;
  --cyan: #32d5ff;
  --blue: #4f7cff;
  --violet: #a56bff;
  --green: #5ee0a0;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.scrolled {
  min-height: 66px;
  border-color: var(--line);
  background: rgba(5, 7, 17, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 158px;
  height: 52px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.button) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(120deg, var(--blue), var(--violet));
  color: white;
  box-shadow: 0 14px 38px rgba(79, 124, 255, 0.24);
}

.button-primary:hover {
  box-shadow: 0 18px 46px rgba(79, 124, 255, 0.34);
}

.button-secondary,
.button-quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: var(--line-bright);
  background: rgba(50, 213, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) clamp(20px, 8vw, 128px) 100px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 65% 42%, rgba(79, 124, 255, 0.10), transparent 32%),
    linear-gradient(155deg, #050711 0%, #080c1b 58%, #060812 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 26%;
  pointer-events: none;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(760px, 64vw);
}

.hero-kicker,
.eyebrow {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}

.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: signal 2.4s ease-in-out infinite;
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(44px, 6.8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  margin-bottom: 12px;
  color: transparent;
  background: linear-gradient(110deg, var(--cyan), #76a7ff 45%, #c78bff);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-content > p {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.7;
}

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

.hero-actions .button {
  min-height: 50px;
  padding-inline: 24px;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 34px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-status span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 8px 2px 0;
  border-radius: 50%;
  background: var(--cyan);
}

.scroll-cue {
  position: absolute;
  z-index: 12;
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 28px;
  height: 1px;
  background: var(--cyan);
}

.space-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.star-field {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 1px, transparent 1.2px),
    radial-gradient(circle, rgba(50, 213, 255, 0.55) 1px, transparent 1.2px);
}

.star-field-one {
  background-size: 113px 113px, 197px 197px;
  background-position: 18px 28px, 70px 98px;
}

.star-field-two {
  opacity: 0.18;
  background-size: 271px 271px, 331px 331px;
  background-position: 12px 9px, 140px 30px;
}

.orbit-line {
  position: absolute;
  width: 1000px;
  height: 300px;
  border: 1px solid rgba(98, 124, 178, 0.14);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.orbit-one {
  top: 17%;
  right: -15%;
}

.orbit-two {
  top: 46%;
  right: -26%;
  transform: rotate(-28deg) scale(1.25);
}

.planet {
  --planet-size: 60px;
  --parallax-y: 0px;
  position: absolute;
  width: var(--planet-size);
  height: var(--planet-size);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset -15px -12px 24px rgba(0, 0, 0, 0.58), 0 0 28px rgba(80, 120, 255, 0.16);
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
  animation: planetFloat 9s ease-in-out infinite;
}

.planet::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.planet-one {
  --planet-size: 24px;
  top: 13%;
  right: 42%;
  background: radial-gradient(circle at 35% 32%, #e4f1ff, #5576a8 38%, #12192b 72%);
}

.planet-two {
  --planet-size: 38px;
  top: 21%;
  right: 32%;
  background: radial-gradient(circle at 32% 28%, #ffd99a, #af634a 42%, #24131c 74%);
  animation-delay: -2s;
}

.planet-three {
  --planet-size: 64px;
  top: 30%;
  right: 20%;
  background:
    linear-gradient(17deg, transparent 43%, rgba(141, 214, 255, 0.36) 45%, transparent 48%),
    radial-gradient(circle at 35% 30%, #9ae4ff, #2573a4 44%, #10203c 75%);
  animation-delay: -5s;
}

.planet-four {
  --planet-size: 30px;
  top: 43%;
  right: 11%;
  background: radial-gradient(circle at 35% 30%, #ffd1b4, #b94e48 45%, #2a1620 75%);
  animation-delay: -1s;
}

.planet-five {
  --planet-size: 112px;
  top: 52%;
  right: 23%;
  background:
    repeating-linear-gradient(8deg, transparent 0 12px, rgba(255, 228, 177, 0.13) 13px 17px),
    radial-gradient(circle at 32% 26%, #ffe6b3, #b47757 46%, #2b1c28 76%);
  animation-delay: -6s;
}

.planet-six {
  --planet-size: 92px;
  top: 66%;
  right: 8%;
  background: radial-gradient(circle at 32% 28%, #d8c4ff, #7458af 45%, #1d1832 75%);
  animation-delay: -3s;
}

.planet-six::before {
  content: "";
  position: absolute;
  top: 39%;
  left: -28%;
  width: 150%;
  height: 22%;
  border: 5px solid rgba(194, 177, 255, 0.35);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.planet-seven {
  --planet-size: 42px;
  top: 78%;
  right: 31%;
  background: radial-gradient(circle at 32% 28%, #c8fbff, #4a9da9 46%, #13262d 75%);
  animation-delay: -4s;
}

.planet-eight {
  --planet-size: 28px;
  top: 87%;
  right: 46%;
  background: radial-gradient(circle at 32% 28%, #d9ebff, #466c9d 46%, #111b2d 75%);
  animation-delay: -7s;
}

.explorer-ship {
  --parallax-y: 0px;
  position: absolute;
  top: 35%;
  right: 7%;
  width: 150px;
  height: 76px;
  filter: drop-shadow(0 0 18px rgba(50, 213, 255, 0.22));
  transform: translate3d(0, var(--parallax-y), 0) rotate(-12deg);
  animation: shipDrift 14s ease-in-out infinite;
  will-change: transform;
}

.ship-body {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 92px;
  height: 28px;
  border: 1px solid rgba(169, 205, 238, 0.46);
  border-radius: 48% 58% 38% 45%;
  background: linear-gradient(180deg, #3d506c, #111827);
}

.ship-body::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -18px;
  width: 28px;
  height: 12px;
  border-radius: 0 90% 90% 0;
  background: #22334d;
}

.ship-wing {
  position: absolute;
  left: 42px;
  width: 62px;
  height: 20px;
  border: 1px solid rgba(169, 205, 238, 0.32);
  background: #172238;
}

.ship-wing-left {
  top: 9px;
  transform: skewX(-28deg);
}

.ship-wing-right {
  bottom: 8px;
  transform: skewX(28deg);
}

.ship-window {
  position: absolute;
  top: 29px;
  left: 86px;
  width: 18px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.ship-trail {
  position: absolute;
  top: 35px;
  left: -34px;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(50, 213, 255, 0.7));
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.modules,
.pricing,
.contact {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}

.modules > :not(.section-space),
.pricing > :not(.section-space),
.contact > :not(.section-space),
.flow-inner {
  position: relative;
  z-index: 2;
}

.section-space {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.side-orbit {
  position: absolute;
  top: 11%;
  right: -26%;
  width: 520px;
  height: 820px;
  border: 1px solid rgba(98, 124, 178, 0.12);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.side-planet {
  --section-parallax-y: 0px;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate3d(0, var(--section-parallax-y), 0);
  box-shadow: inset -16px -13px 24px rgba(0, 0, 0, 0.56), 0 0 24px rgba(50, 213, 255, 0.12);
  animation: sectionPlanetFloat 11s ease-in-out infinite;
  will-change: transform;
}

.side-planet-one {
  top: 18%;
  right: -90px;
  width: 76px;
  height: 76px;
  background: radial-gradient(circle at 32% 28%, #a4edff, #397c9b 44%, #10202f 76%);
}

.side-planet-two {
  right: 22px;
  bottom: 8%;
  width: 34px;
  height: 34px;
  background: radial-gradient(circle at 32% 28%, #e5d0ff, #7757a2 45%, #20182f 75%);
  animation-delay: -4s;
}

.scout-ship,
.signal-ship {
  --section-parallax-y: 0px;
  position: absolute;
  width: 80px;
  height: 24px;
  transform: translate3d(0, var(--section-parallax-y), 0) rotate(-8deg);
  border: 1px solid rgba(139, 188, 225, 0.24);
  clip-path: polygon(0 46%, 42% 18%, 78% 28%, 100% 50%, 78% 72%, 42% 82%);
  background: linear-gradient(180deg, rgba(77, 103, 139, 0.78), rgba(15, 24, 42, 0.9));
  filter: drop-shadow(0 0 10px rgba(50, 213, 255, 0.18));
  animation: sectionShipPass 13s ease-in-out infinite;
}

.scout-ship {
  top: 48%;
  right: -24px;
}

.scout-ship::after,
.signal-ship::after {
  content: "";
  position: absolute;
  top: 10px;
  left: -40px;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(50, 213, 255, 0.54));
}

.operational-flow {
  position: relative;
  overflow: hidden;
}

.flow-space {
  right: max(0px, calc((100vw - 1180px) / 2));
  left: auto;
  width: min(300px, 24vw);
}

.distant-moon {
  --section-parallax-y: 0px;
  position: absolute;
  top: 15%;
  right: 20%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transform: translate3d(0, var(--section-parallax-y), 0);
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.22) 0 4%, transparent 5%),
    radial-gradient(circle at 64% 58%, rgba(0, 0, 0, 0.24) 0 8%, transparent 9%),
    radial-gradient(circle at 34% 28%, #8794ad, #353e54 48%, #131827 76%);
  box-shadow: inset -12px -10px 18px rgba(0, 0, 0, 0.5);
}

.signal-ship {
  right: 4%;
  bottom: 18%;
  scale: 0.72;
  animation-delay: -5s;
}

.pricing-space {
  inset: -80px -150px -90px auto;
  width: 470px;
  overflow: hidden;
}

.pricing-stars {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 1px, transparent 1.2px),
    radial-gradient(circle, rgba(165, 107, 255, 0.62) 1px, transparent 1.2px);
  background-position: 18px 24px, 80px 120px;
  background-size: 92px 92px, 157px 157px;
}

.section-saturn {
  --section-parallax-y: 0px;
  position: absolute;
  top: 18%;
  right: 70px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate3d(0, var(--section-parallax-y), 0);
  background:
    repeating-linear-gradient(8deg, transparent 0 15px, rgba(255, 235, 195, 0.12) 16px 20px),
    radial-gradient(circle at 34% 28%, #f6ddb3, #a77561 47%, #2a1c2c 76%);
  box-shadow: inset -24px -18px 32px rgba(0, 0, 0, 0.54), 0 0 36px rgba(165, 107, 255, 0.13);
  animation: saturnTurn 18s linear infinite;
}

.section-saturn::after {
  content: "";
  position: absolute;
  top: 43%;
  left: -34%;
  width: 168%;
  height: 18%;
  border: 7px solid rgba(225, 207, 255, 0.28);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.saturn-orbit {
  position: absolute;
  top: 7%;
  right: -8px;
  width: 290px;
  height: 460px;
  border: 1px solid rgba(165, 107, 255, 0.10);
  border-radius: 50%;
  transform: rotate(18deg);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.eyebrow {
  margin: 0 0 10px;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.module-card {
  position: relative;
  min-height: 240px;
  padding: 26px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  transition: background 180ms ease;
}

.module-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(50, 213, 255, 0.12);
  border-radius: 50%;
}

.module-card:hover {
  background: linear-gradient(145deg, rgba(50, 213, 255, 0.07), rgba(165, 107, 255, 0.04));
}

.module-index {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.module-card h3 {
  margin: 56px 0 10px;
  font-size: 19px;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.operational-flow {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(79, 124, 255, 0.05), transparent 30%, rgba(165, 107, 255, 0.05)),
    var(--bg-soft);
}

.flow-inner {
  padding-top: 100px;
  padding-bottom: 100px;
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(11, auto);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 17, 0.48);
}

.flow-step {
  display: grid;
  gap: 8px;
  min-width: 88px;
}

.flow-step span {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.flow-step strong {
  font-size: 14px;
}

.flow-track i {
  width: clamp(16px, 3vw, 54px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
}

.pricing-featured {
  border-color: rgba(50, 213, 255, 0.42);
  background:
    radial-gradient(circle at 80% 0%, rgba(165, 107, 255, 0.14), transparent 32%),
    var(--panel-strong);
  box-shadow: 0 24px 70px rgba(41, 77, 160, 0.16);
}

.featured-label {
  position: absolute;
  top: 0;
  right: 22px;
  padding: 7px 11px;
  background: var(--cyan);
  color: #04101a;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-heading > p {
  margin: 0 0 5px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-heading h3 {
  margin: 0;
  font-size: 30px;
}

.price {
  min-height: 54px;
  margin-top: 20px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 850;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.pricing-card ul {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 0;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 2px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--green);
  transform: rotate(45deg);
}

.final-cta {
  padding: 40px;
}

.final-cta-inner {
  width: min(1180px, 100%);
  min-height: 250px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line-bright);
  background:
    linear-gradient(120deg, rgba(79, 124, 255, 0.12), rgba(165, 107, 255, 0.08)),
    var(--panel-strong);
}

.final-cta img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(50, 213, 255, 0.35));
}

.final-cta h2 {
  max-width: 700px;
  font-size: clamp(28px, 3.4vw, 46px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-link {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  text-decoration: none;
  transition: background 160ms ease;
}

.contact-link:hover {
  background: rgba(50, 213, 255, 0.06);
}

.contact-copy small {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-copy strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 16px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-link:hover .contact-icon {
  transform: translateY(-2px);
  border-color: currentColor;
}

.contact-icon-whatsapp {
  color: #67e49a;
}

.contact-icon-email {
  color: #72dfff;
}

.contact-icon-instagram {
  color: #c88dff;
}

.contact-space {
  inset: -60px -120px -80px auto;
  width: 520px;
  overflow: hidden;
}

.contact-space::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.20;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1.2px);
  background-size: 84px 84px;
}

.contact-comet {
  --section-parallax-y: 0px;
  position: absolute;
  top: 20%;
  right: 90px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translate3d(0, var(--section-parallax-y), 0);
  background: #dff8ff;
  box-shadow: 0 0 18px rgba(114, 223, 255, 0.72);
  animation: cometPulse 5s ease-in-out infinite;
}

.contact-comet::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 12px;
  width: 145px;
  height: 2px;
  transform: rotate(-22deg);
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, rgba(114, 223, 255, 0.74));
}

.asteroid {
  position: absolute;
  width: 10px;
  height: 8px;
  border-radius: 44% 56% 38% 62%;
  background: #485267;
  box-shadow: inset -3px -2px 4px rgba(0, 0, 0, 0.48);
  animation: asteroidDrift 9s ease-in-out infinite;
}

.asteroid-one {
  top: 43%;
  right: 40px;
}

.asteroid-two {
  top: 52%;
  right: 130px;
  scale: 0.7;
  animation-delay: -2s;
}

.asteroid-three {
  top: 65%;
  right: 76px;
  scale: 1.25;
  animation-delay: -5s;
}

.asteroid-four {
  top: 76%;
  right: 180px;
  scale: 0.55;
  animation-delay: -7s;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
}

.site-footer > a:last-child {
  justify-self: end;
}

.site-footer a {
  text-decoration: none;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes signal {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes planetFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes shipDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: -24px 15px;
  }
}

@keyframes sectionPlanetFloat {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  50% {
    translate: 0 -9px;
    rotate: 5deg;
  }
}

@keyframes sectionShipPass {
  0%,
  100% {
    translate: 12px 0;
  }
  50% {
    translate: -24px 10px;
  }
}

@keyframes saturnTurn {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

@keyframes cometPulse {
  0%,
  100% {
    translate: 0 0;
    opacity: 0.56;
  }
  50% {
    translate: -18px 8px;
    opacity: 0.92;
  }
}

@keyframes asteroidDrift {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  50% {
    translate: -14px 12px;
    rotate: 110deg;
  }
}

@media (max-width: 980px) {
  .site-nav {
    gap: 18px;
  }

  .hero-content {
    width: min(720px, 76vw);
  }

  .planet-five {
    right: 9%;
  }

  .planet-six,
  .explorer-ship {
    opacity: 0.62;
  }

  .modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .pricing-card {
    min-height: 0;
  }

  .flow-track {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }

  .flow-track i {
    display: none;
  }

  .final-cta-inner {
    grid-template-columns: auto 1fr;
  }

  .final-cta-inner .button {
    grid-column: 1 / -1;
  }

  .side-orbit,
  .saturn-orbit {
    opacity: 0.6;
  }

  .pricing-space {
    right: -110px;
    width: 360px;
    opacity: 0.72;
  }

  .section-saturn {
    right: 44px;
    width: 104px;
    height: 104px;
  }

  .contact-space {
    right: -100px;
    width: 400px;
    opacity: 0.66;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 7, 17, 0.97);
    backdrop-filter: blur(20px);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button {
    margin-top: 14px;
  }

  .hero {
    min-height: 94svh;
    align-items: flex-start;
    padding: 125px 20px 72px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-status {
    max-width: 320px;
  }

  .scroll-cue {
    left: 20px;
    right: auto;
  }

  .orbit-line {
    width: 700px;
  }

  .planet-one,
  .planet-two {
    display: none;
  }

  .planet-three {
    top: 61%;
    right: 67%;
  }

  .planet-four {
    top: 69%;
    right: 50%;
  }

  .planet-five {
    top: 67%;
    right: 8%;
  }

  .planet-six {
    top: 82%;
    right: 56%;
  }

  .planet-seven {
    top: 88%;
    right: 25%;
  }

  .planet-eight {
    top: 91%;
    right: 5%;
  }

  .explorer-ship {
    top: 57%;
    right: 8%;
    scale: 0.75;
  }

  .modules,
  .pricing,
  .contact {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .side-orbit,
  .side-planet-one,
  .scout-ship,
  .distant-moon,
  .signal-ship,
  .saturn-orbit,
  .pricing-stars,
  .asteroid-two,
  .asteroid-four {
    display: none;
  }

  .side-planet-two {
    right: 8px;
    bottom: 3%;
    width: 24px;
    height: 24px;
    opacity: 0.58;
  }

  .pricing-space {
    inset: -20px -65px auto auto;
    width: 180px;
    height: 220px;
    opacity: 0.46;
  }

  .section-saturn {
    top: 35px;
    right: 18px;
    width: 72px;
    height: 72px;
  }

  .section-saturn::after {
    border-width: 4px;
  }

  .contact-space {
    inset: -10px -55px auto auto;
    width: 180px;
    height: 250px;
    opacity: 0.45;
  }

  .contact-comet {
    top: 54px;
    right: 32px;
    scale: 0.7;
  }

  .asteroid-one {
    top: 130px;
    right: 24px;
  }

  .asteroid-three {
    top: 185px;
    right: 70px;
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .modules-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-link {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .contact-icon {
    width: 46px;
    height: 46px;
  }

  .module-card {
    min-height: 205px;
  }

  .flow-inner {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .flow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
  }

  .flow-step {
    min-height: 74px;
    padding: 12px;
    border: 1px solid var(--line);
  }

  .final-cta {
    padding: 14px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .final-cta img {
    width: 72px;
    height: 72px;
  }

  .final-cta-inner .button {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .site-footer > a:last-child {
    justify-self: center;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 94svh;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-status {
    gap: 8px 12px;
  }

  .module-card,
  .pricing-card,
  .contact-link {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
