@font-face {
  font-family: "PlutoDisplay";
  src: url("assets/fonts/heading/Behind-the-surprise.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PlutoBody";
  src: url("assets/fonts/copy/Cool-Mind.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PlutoAccent";
  src: url("assets/fonts/PWCoolFont.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050816;
  --panel: rgba(11, 16, 30, 0.78);
  --text: #f5f7ff;
  --muted: #a8b3d4;
  --accent: #7ec8ff;
  --accent-2: #f2b96b;
  --accent-3: #91f1d0;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --radius-sm: 16px;
  --font-display: "PlutoDisplay", "Georgia", serif;
  --font-body: "PlutoAccent", "Arial Narrow", sans-serif;
  --font-accent: "PlutoAccent", "Arial Narrow", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(126, 200, 255, 0.16), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(242, 185, 107, 0.12), transparent 30%),
    radial-gradient(circle at 50% 110%, rgba(145, 241, 208, 0.1), transparent 34%),
    linear-gradient(180deg, #02050e 0%, #050816 48%, #02030a 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.25;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 65% 70%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.5px);
  background-size: 220px 220px;
  mix-blend-mode: screen;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(126, 200, 255, 0.28);
  color: #fff;
}

.space-shell {
  position: relative;
  isolation: isolate;
}

.site-width {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}

.starfield-back {
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1px),
    radial-gradient(circle at 55% 28%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 84%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 92% 16%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1px);
  background-size: 280px 280px;
}

.starfield-front {
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.95) 0 1.5px, transparent 1.5px),
    radial-gradient(circle at 25% 42%, rgba(255, 255, 255, 0.75) 0 1.5px, transparent 1.5px),
    radial-gradient(circle at 48% 9%, rgba(255, 255, 255, 0.85) 0 1.5px, transparent 1.5px),
    radial-gradient(circle at 66% 58%, rgba(255, 255, 255, 0.75) 0 1.5px, transparent 1.5px),
    radial-gradient(circle at 81% 30%, rgba(255, 255, 255, 0.85) 0 1.5px, transparent 1.5px),
    radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.75) 0 1.5px, transparent 1.5px);
  background-size: 180px 180px;
  animation: driftStars 120s linear infinite;
}

.aurora {
  position: fixed;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  z-index: -2;
  opacity: 0.72;
}

.aurora-left {
  top: -12vw;
  left: -14vw;
  background: radial-gradient(circle, rgba(126, 200, 255, 0.34), transparent 62%);
}

.aurora-right {
  right: -18vw;
  top: 2vw;
  background: radial-gradient(circle, rgba(242, 185, 107, 0.25), transparent 62%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(5, 8, 22, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  background: rgba(5, 8, 22, 0.88);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.brand-copy span {
  margin-top: 0.25rem;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.95rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.nav-cta,
.button-primary,
.copy-button {
  background: linear-gradient(135deg, rgba(126, 200, 255, 0.95), rgba(145, 241, 208, 0.92));
  color: #03111d;
  box-shadow: 0 14px 30px rgba(126, 200, 255, 0.15);
}

.nav-cta:hover,
.button-primary:hover,
.copy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(126, 200, 255, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(126, 200, 255, 0.5);
  background: rgba(126, 200, 255, 0.08);
  transform: translateY(-2px);
}

main {
  padding-bottom: 4rem;
}

section {
  scroll-margin-top: 7rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3.75rem, 7vw, 6.2rem) 0 clamp(3rem, 5vw, 4.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 18px rgba(242, 185, 107, 0.8);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10.5vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 6ch;
  text-wrap: balance;
  background: linear-gradient(180deg, #fff 0%, #cde6ff 42%, #8ecfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 42px rgba(126, 200, 255, 0.16);
}

.hero-lead {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--text);
}

.hero-sub {
  max-width: 35rem;
  margin: 0.95rem 0 0;
  line-height: 1.72;
  letter-spacing: 0.035em;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.proof-pill,
.card-kicker,
.console-line small,
.mission-panel-copy span,
.orbit-copy span {
  font-family: var(--font-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-pill {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 247, 255, 0.86);
  font-size: 0.68rem;
}

.hero-stage {
  position: relative;
  min-height: min(70vh, 760px);
  border-radius: calc(var(--radius) + 10px);
  padding: 1.3rem 1.3rem 6.4rem;
  background:
    radial-gradient(circle at 68% 16%, rgba(248, 208, 133, 0.18), transparent 28%),
    radial-gradient(circle at 24% 24%, rgba(126, 200, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(10, 15, 29, 0.97), rgba(3, 6, 17, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.04) 18%, transparent 36%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 52%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

.hero-stage-glow {
  position: absolute;
  inset: auto auto -12% -10%;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(126, 200, 255, 0.2) 0%, rgba(126, 200, 255, 0.08) 30%, transparent 68%);
  filter: blur(16px);
  pointer-events: none;
}

.hero-stage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(240px, 0.76fr);
  gap: 1rem;
  min-height: 100%;
}

.hero-shot,
.hero-note,
.hero-stage-meta,
.hero-mini-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-shot-main {
  min-height: 32rem;
  border-radius: 34px;
}

.hero-shot-main img,
.hero-shot-portrait img,
.hero-mini-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot-main::after,
.hero-shot-portrait::after,
.hero-mini-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 18, 0.02) 0%, rgba(4, 8, 18, 0.16) 52%, rgba(4, 8, 18, 0.7) 100%);
  pointer-events: none;
}

.hero-shot-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 10, 22, 0.64);
  color: #d7e8ff;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-shot-copy {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
}

.hero-shot-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-shot-copy span {
  color: rgba(245, 247, 255, 0.82);
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.hero-side-stack {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
}

.hero-note {
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(242, 185, 107, 0.16), transparent 42%),
    rgba(8, 12, 24, 0.82);
}

.hero-note-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent-2);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.hero-shot-portrait {
  min-height: 19rem;
  border-radius: 28px;
}

.hero-stage-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.8rem;
  border-radius: 24px;
}

.hero-stage-meta div {
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage-meta small {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--accent);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-stage-meta strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.hero-stage-footer {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: max-content;
  max-width: calc(100% - 2.6rem);
  padding: 0.7rem 0.9rem 0.7rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 8, 18, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-mini-shot {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  flex: 0 0 auto;
}

.hero-stage-footer p {
  margin: 0;
  color: rgba(245, 247, 255, 0.86);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-strip {
  margin-top: clamp(0.75rem, 2vw, 1.4rem);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.signal-track {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.95rem 0;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
}

.signal-track span {
  flex: 0 0 auto;
  font-family: var(--font-accent);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 247, 255, 0.86);
}

.origin,
.mission,
.orbit-log,
.launch-board,
.community {
  padding-top: clamp(3.5rem, 6vw, 5rem);
}

.origin {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 1.25rem;
  align-items: start;
}

.origin-editorial,
.launch-steps,
.community-card,
.section-head {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.origin-editorial h2,
.mission-copy h2,
.section-head h2,
.launch-steps h2,
.community-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.origin-editorial p,
.mission-copy p,
.section-head p,
.launch-steps p,
.community-copy p {
  font-family: var(--font-body);
  color: var(--muted);
  line-height: 1.8;
  letter-spacing: 0.035em;
}

.origin-editorial p {
  margin: 1rem 0 0;
  max-width: 58ch;
}

.origin-editorial blockquote {
  margin: 1.25rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(126, 200, 255, 0.45);
  color: rgba(245, 247, 255, 0.9);
  font-family: var(--font-accent);
  font-size: 1.03rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.origin-aside {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.2rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.info-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.035em;
}

.card-kicker {
  font-size: 0.68rem;
  color: var(--accent);
}

.info-card.compact .status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.status-grid div {
  padding: 0.8rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.status-grid strong {
  color: rgba(245, 247, 255, 0.92);
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

.status-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.mission {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.mission-panels {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
}

.mission-panel,
.orbit-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.mission-panel {
  min-height: 260px;
}

.mission-panel.tall {
  min-height: 520px;
}

.mission-panel img,
.mission-panel video,
.orbit-card img,
.orbit-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
}

.mission-panel-copy,
.orbit-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(5, 8, 22, 0.12), rgba(5, 8, 22, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-panel-copy span,
.orbit-copy span {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--accent-2);
  font-size: 0.66rem;
}

.mission-panel-copy h3,
.orbit-copy h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
}

.orbit-log .section-head {
  margin-bottom: 1rem;
}

.orbit-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.orbit-card {
  min-height: 220px;
}

.orbit-card-feature {
  grid-column: span 7;
  min-height: 350px;
}

.orbit-grid .orbit-card:nth-child(2) {
  grid-column: span 5;
}

.orbit-grid .orbit-card:nth-child(3) {
  grid-column: span 4;
}

.orbit-grid .orbit-card:nth-child(4) {
  grid-column: span 4;
}

.orbit-grid .orbit-card:nth-child(5) {
  grid-column: span 4;
}

.launch-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.step-card {
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card span {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--font-accent);
  color: #03111d;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.step-card h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1.02rem;
}

.step-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
  letter-spacing: 0.035em;
  overflow-wrap: anywhere;
}

.launch-console {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(8, 12, 24, 0.96), rgba(11, 16, 30, 0.9)),
    radial-gradient(circle at top, rgba(126, 200, 255, 0.12), transparent 44%);
  box-shadow: var(--shadow);
}

.console-line {
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.console-line small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 0.65rem;
}

.console-line strong,
.console-line code {
  font-size: 0.97rem;
  line-height: 1.55;
  color: rgba(245, 247, 255, 0.95);
  word-break: break-word;
}

.copy-button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.community-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1rem;
}

.community-links {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.community-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 247, 255, 0.92);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.community-link:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 200, 255, 0.38);
  background: rgba(126, 200, 255, 0.08);
}

.community-link span:last-child {
  color: var(--muted);
  text-align: right;
  overflow-wrap: anywhere;
}

.footer {
  padding: 1.5rem 0 3rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.7;
  letter-spacing: 0.035em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.site-header,
.hero-stage,
.origin-editorial,
.info-card,
.mission-panel,
.orbit-card,
.launch-steps,
.launch-console,
.community-card {
  will-change: transform;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes driftStars {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-40px, 60px, 0);
  }
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes slowSpinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@media (max-width: 1100px) {
  .hero,
  .origin,
  .launch-board,
  .community-card {
    grid-template-columns: 1fr;
  }

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

  .hero-stage-grid {
    grid-template-columns: 1fr;
  }

  .hero-shot-main {
    min-height: 28rem;
  }

  .hero-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    align-items: stretch;
  }

  .hero-note {
    grid-column: span 2;
  }

  .mission-panel.tall {
    min-height: 420px;
    grid-column: span 2;
  }

  .orbit-card-feature,
  .orbit-grid .orbit-card:nth-child(2),
  .orbit-grid .orbit-card:nth-child(3),
  .orbit-grid .orbit-card:nth-child(4),
  .orbit-grid .orbit-card:nth-child(5) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .nav-row {
    flex-wrap: wrap;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    width: 100%;
    gap: 0.9rem 1.1rem;
    font-size: 0.76rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero-stage {
    min-height: auto;
    padding: 0.9rem;
  }

  .hero-stage-grid {
    gap: 0.8rem;
  }

  .hero-shot-main {
    min-height: 20rem;
    border-radius: 26px;
  }

  .hero-side-stack {
    grid-template-columns: 1fr;
  }

  .hero-note {
    grid-column: auto;
  }

  .hero-shot-portrait {
    min-height: 15rem;
  }

  .hero-stage-meta {
    grid-template-columns: 1fr 1fr;
  }

  .proof-row {
    display: none;
  }

  .hero-stage-footer {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 0.8rem;
    border-radius: 24px;
  }

  .mission-panels,
  .step-grid,
  .info-card.compact .status-grid {
    grid-template-columns: 1fr;
  }

  .mission-panel.tall,
  .orbit-card-feature,
  .orbit-grid .orbit-card:nth-child(2),
  .orbit-grid .orbit-card:nth-child(3),
  .orbit-grid .orbit-card:nth-child(4),
  .orbit-grid .orbit-card:nth-child(5) {
    grid-column: span 1;
  }

  .orbit-grid {
    grid-template-columns: 1fr;
  }

  .origin-editorial h2,
  .mission-copy h2,
  .section-head h2,
  .launch-steps h2,
  .community-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 4.8rem);
    line-height: 0.94;
  }

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

  .nav-cta,
  .button,
  .copy-button {
    width: 100%;
  }
}

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

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

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