/* =========================================================
   STX ORBITAL — COMING SOON
   Professional, infrastructure-grade presentation
   Dark space theme with restrained starfield parallax
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --bg: #000000;
  --panel: #0a0f1a;
  --panel-soft: rgba(10, 15, 26, 0.85);

  --text: #e7ecff;
  --muted: #a6b0cc;
  --muted-soft: #7f8aa6;

  --stroke: rgba(255, 255, 255, 0.10);
  --stroke-soft: rgba(255, 255, 255, 0.06);

  --accent: #4fb5ff;
  --accent-soft: rgba(79, 181, 255, 0.15);
  --status: #35e89b;

  --radius: 16px;

  --shadow-lg: 0 24px 80px rgba(0,0,0,0.65);
  --shadow-md: 0 14px 40px rgba(0,0,0,0.55);
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

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

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

a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent);
}

/* ---------- Layout ---------- */
.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Background / Starfield ---------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.glow {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(900px 600px at 30% 35%, rgba(79,181,255,0.08), transparent 65%),
    radial-gradient(1000px 650px at 70% 45%, rgba(139,124,255,0.07), transparent 68%);
  filter: blur(6px);
}

.stars {
  position: absolute;
  inset: -30%;
  background-repeat: repeat;
  opacity: 0.6;
  will-change: transform;
  transition: transform 140ms ease-out;
}

.layer1 {
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 1px, transparent 2px);
  background-size: 260px 260px;
  animation: drift1 120s linear infinite;
}

.layer2 {
  background-image:
    radial-gradient(circle, rgba(255,255,255,.6) 1px, transparent 2px);
  background-size: 180px 180px;
  animation: drift2 160s linear infinite;
}

.layer3 {
  background-image:
    radial-gradient(circle, rgba(255,255,255,.4) 1px, transparent 2px);
  background-size: 120px 120px;
  animation: drift3 200s linear infinite;
}

@keyframes drift1 {
  to { transform: translate3d(-200px, 220px, 0); }
}
@keyframes drift2 {
  to { transform: translate3d(240px, -260px, 0); }
}
@keyframes drift3 {
  to { transform: translate3d(-260px, -200px, 0); }
}

/* ---------- Top Bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke-soft);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}

.topbar__nav {
  display: flex;
  gap: 20px;
}

.navlink {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
}

.navlink:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  text-decoration: none;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke-soft);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.badge__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--status);
  box-shadow: 0 0 0 4px rgba(53,232,155,0.15);
}

.headline {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.6px;
}

.subhead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 65ch;
  margin-bottom: 22px;
}

/* ---------- Capability List ---------- */
.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
}

.bullets li {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(10,15,26,0.7);
  border: 1px solid var(--stroke-soft);
  font-size: 14px;
  color: var(--text);
}

.bullet__icon {
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.ctaRow {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  box-shadow: var(--shadow-md);
  transition: transform .12s ease, background .12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(180deg, rgba(79,181,255,0.25), rgba(79,181,255,0.12));
  border-color: rgba(79,181,255,0.35);
}

.btn--ghost {
  background: rgba(255,255,255,0.03);
}

/* ---------- Fine Print ---------- */
.fineprint {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted-soft);
}

/* ---------- Card / Form ---------- */
.hero__card {
  position: relative;
}

.card {
  background: var(--panel-soft);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.card__title {
  font-size: 18px;
  margin-bottom: 10px;
}

.card__desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.form {
  display: grid;
  gap: 12px;
}

.label {
  font-size: 12px;
  color: var(--muted);
}

.input {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.4);
  color: var(--text);
}

.input:focus {
  outline: none;
  border-color: var(--accent);
}

.btn--submit {
  margin-top: 8px;
}

.hint {
  font-size: 12px;
  color: var(--muted-soft);
}

/* Honeypot */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---------- Meta ---------- */
.divider {
  height: 1px;
  background: var(--stroke-soft);
  margin: 18px 0;
}

.card__meta {
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.metaRow {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
}

.metaKey {
  color: var(--muted-soft);
}

.metaVal {
  color: var(--text);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--stroke-soft);
  padding: 20px 0 28px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted-soft);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.statusDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(79,181,255,0.18);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 28px);
  }
  .metaRow {
    grid-template-columns: 1fr;
  }
}
