:root {
  color-scheme: dark;
  --bg: #080b12;
  --panel: #111722;
  --panel-strong: #182230;
  --text: #f2f6ff;
  --muted: #9ba8bc;
  --line: rgba(255,255,255,.12);
  --cyan: #49d7ff;
  --green: #66f0a8;
  --red: #ff6b7a;
  --gold: #ffd166;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Segoe UI, Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(73,215,255,.18), transparent 34rem),
    radial-gradient(circle at 90% 20%, rgba(102,240,168,.12), transparent 26rem),
    var(--bg);
  color: var(--text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(8,11,18,.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(73,215,255,.55);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(73,215,255,.1);
}

.main-nav {
  gap: 8px;
}

.main-nav a {
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(255,255,255,.08);
}

main {
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  padding: 40px clamp(18px, 5vw, 64px) 72px;
}

.hero-art {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(160deg, #0e1420, #080b12 56%, #111722);
  box-shadow: 0 32px 80px rgba(0,0,0,.36);
}

.hero-art canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.planet {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: clamp(130px, 22vw, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(130deg, rgba(255,255,255,.22), transparent 38%),
    repeating-linear-gradient(8deg, rgba(73,215,255,.18) 0 8px, rgba(255,209,102,.22) 8px 15px),
    #223247;
  box-shadow: inset -24px -20px 36px rgba(0,0,0,.36), 0 0 60px rgba(73,215,255,.2);
}

.ship {
  position: absolute;
  width: 86px;
  height: 38px;
  clip-path: polygon(0 50%, 72% 0, 100% 50%, 72% 100%);
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  filter: drop-shadow(0 0 18px rgba(73,215,255,.72));
}

.ship-a {
  left: 18%;
  top: 38%;
  transform: rotate(-8deg);
}

.ship-b {
  right: 24%;
  top: 22%;
  width: 54px;
  height: 24px;
  opacity: .74;
  transform: rotate(18deg);
}

.hero-copy {
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: .95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 620px;
  font-size: clamp(17px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255,255,255,.06);
  font-weight: 800;
}

.button.primary {
  border-color: transparent;
  color: #051018;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.section,
.page-title {
  padding: 72px clamp(18px, 5vw, 64px);
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.stat-panel,
.feature-card,
.shot,
.status-card,
.faq details,
.press-list dl {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17,23,34,.82);
}

.stat-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.stat-panel div {
  padding: 24px;
  border-left: 1px solid var(--line);
}

.stat-panel div:first-child {
  border-left: 0;
}

.stat-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 42px;
}

.stat-panel span {
  color: var(--muted);
  font-size: 14px;
}

.feature-grid,
.gallery,
.status-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.status-card {
  padding: 24px;
}

.icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.page-title {
  max-width: 980px;
}

.page-title.compact {
  padding-bottom: 36px;
}

.page-title h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.gallery,
.status-layout {
  padding: 0 clamp(18px, 5vw, 64px) 72px;
}

.shot {
  padding: 14px;
}

.mock-screen {
  position: relative;
  height: 260px;
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(transparent 92%, rgba(255,255,255,.2) 92%),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    #0b111b;
  background-size: 100% 44px, 48px 100%, auto;
}

.mock-screen span {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.mock-screen span:nth-child(1) {
  left: 18%;
  top: 28%;
  width: 42%;
  height: 5px;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
}

.mock-screen span:nth-child(2) {
  right: 15%;
  top: 48%;
  width: 30%;
  height: 5px;
  background: var(--green);
  box-shadow: 0 0 24px var(--green);
}

.mock-screen span:nth-child(3) {
  left: 32%;
  bottom: 22%;
  width: 58px;
  height: 58px;
  background: var(--gold);
  box-shadow: 0 0 32px var(--gold);
}

.shot-blue .mock-screen {
  background-color: #0a1524;
}

.shot-green .mock-screen {
  background-color: #0d1c18;
}

.shot-red .mock-screen {
  background-color: #1e1016;
}

.press-list {
  border-top: 1px solid var(--line);
}

.press-list dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 22px 0 0;
  overflow: hidden;
}

.press-list div {
  padding: 20px;
  border-left: 1px solid var(--line);
}

.press-list div:first-child {
  border-left: 0;
}

dt {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--text);
}

.status-card {
  min-height: 190px;
}

.status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.status-dot.warn {
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  margin-top: 12px;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

.faq details p {
  margin: 14px 0 0;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .hero,
  .grid-two {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-copy {
    order: -1;
  }

  .hero-art {
    min-height: 380px;
  }

  .feature-grid,
  .gallery,
  .status-layout,
  .press-list dl {
    grid-template-columns: 1fr;
  }

  .press-list div,
  .stat-panel div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .press-list div:first-child,
  .stat-panel div:first-child {
    border-top: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
  }

  .main-nav a {
    flex: 1;
    text-align: center;
  }

  .stat-panel {
    grid-template-columns: 1fr;
  }

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