/* -----------------------------
   Global tokens & reset
------------------------------ */

:root {
  --primary: #2A99A8;
  --bg: #020309;
  --bg-soft: #050815;
  --text: #f5f5f7;
  --muted: #ffffff;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --frame-radius: 18px;
  --max-width: 1120px;
  --mono: "JetBrains Mono", "IBM Plex Mono", monospace;
  --panel: rgba(4, 9, 20, 0.84);
  --text-soft: #D3D8E1;
  --border-soft: rgba(255, 255, 255, 0.06);
  --success: #00C853;
}

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

/* Allow page to grow beyond viewport and scroll */
html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 24px;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background: #000;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

/* Space background behind the frame */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: #010208;
  z-index: -2;
}

/* Nebula glow */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(42, 153, 168, 0.07), transparent 40%),
    radial-gradient(ellipse at 85% 75%, rgba(30, 50, 120, 0.06), transparent 40%),
    radial-gradient(ellipse at 50% 10%, rgba(80, 60, 140, 0.04), transparent 35%);
  z-index: -1;
}



/* -----------------------------
   Outer frame
------------------------------ */

.frame {
  position: relative;
  width: 100%;
  max-width: 1280px;
  min-height: calc(100vh - 48px); /* 48px accounts for body padding top/bottom */
  margin: 0 auto; /* center the frame horizontally */
  border-radius: var(--frame-radius);
  overflow: hidden; /* keeps the background and glow neatly clipped to rounded corners */
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 40px 120px rgba(0, 0, 0, 0.9);
}

/* -----------------------------
   Top navigation
------------------------------ */

.top-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(4, 9, 20, 0.88);
  border-bottom: 1px solid rgba(42, 153, 168, 0.15);
  border-radius: 10px 10px 0 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-mark {
  opacity: 0.92;
}

.logo-accent {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

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

.nav-links a:hover {
  color: var(--primary);
  opacity: 1;
}

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

/* hamburger (only shown on mobile) */
.nav-toggle {
  display: none;
  width: 32px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* -----------------------------
   Hero + background
------------------------------ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
}

/* Live Mapbox globe background */
.hero-globe {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.88)),
    url("../assets/images/hero-bg.jpg") center / cover no-repeat;
}

.hero-globe .mapboxgl-canvas {
  outline: none;
}

/* Dark overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(2, 3, 9, 0.3) 0%, rgba(2, 3, 9, 0.7) 60%),
    linear-gradient(180deg, rgba(2, 3, 9, 0.2) 0%, rgba(2, 3, 9, 0.6) 70%, rgba(2, 3, 9, 0.95) 100%);
  z-index: -2;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(42, 153, 168, 0.06), transparent 40%);
  z-index: -1;
  pointer-events: none;
}

/* HUD telemetry panels */
.hud-panel {
  position: absolute;
  z-index: 4;
  padding: 14px 16px;
  background: rgba(4, 9, 20, 0.75);
  border: 1px solid rgba(42, 153, 168, 0.12);
  border-radius: 4px;
  backdrop-filter: blur(12px);
  min-width: 180px;
}

.hud-panel::before,
.hud-panel::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
}

.hud-panel::before {
  top: -1px;
  left: -1px;
  border-top: 1.5px solid rgba(42, 153, 168, 0.35);
  border-left: 1.5px solid rgba(42, 153, 168, 0.35);
}

.hud-panel::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1.5px solid rgba(42, 153, 168, 0.35);
  border-right: 1.5px solid rgba(42, 153, 168, 0.35);
}

.hud-top-left { top: 80px; left: 24px; }
.hud-top-right { top: 80px; right: 24px; }
.hud-bottom-left { bottom: 24px; left: 24px; }

.hud-panel-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.hud-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 2;
}

.hud-dim { color: rgba(255, 255, 255, 0.3); }
.hud-val { color: rgba(255, 255, 255, 0.65); }

.hud-coord {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--primary);
  line-height: 1.8;
}

/* Headline shimmer effect */
.hero-headline {
  background: linear-gradient(
    90deg,
    var(--text) 0%,
    var(--text) 40%,
    var(--primary) 50%,
    var(--text) 60%,
    var(--text) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 100% center; }
  50% { background-position: -100% center; }
}

/* Starfield layer */
.hero .starfield {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.hero .starfield .star-layer {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image:
    radial-gradient(1px 1px at  10%  15%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at  25%  42%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at  47%  8%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at  62%  35%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at  78%  22%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at  88%  55%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at  15%  68%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at  35%  82%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at  55%  72%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at  72%  88%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at  92%  78%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at  5%   92%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at  30%  5%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at  50%  50%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at  82%  12%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at  18%  38%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at  65%  62%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at  95%  42%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at  42%  95%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at  8%   52%, rgba(255,255,255,0.5), transparent);
  background-size: 100% 100%;
  animation: drift-stars 120s linear infinite;
}

.hero .starfield .star-layer:nth-child(2) {
  opacity: 0.6;
  animation-duration: 180s;
  animation-direction: reverse;
  background-image:
    radial-gradient(1px 1px at  12%  28%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at  38%  15%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at  58%  45%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at  75%  68%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at  22%  85%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at  85%  32%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at  48%  78%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at  68%  8%,  rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at  32%  55%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at  90%  90%, rgba(255,255,255,0.5), transparent);
}

@keyframes drift-stars {
  from { transform: translate(0, 0); }
  to   { transform: translate(-3%, -2%); }
}

.hero-inner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 56px 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -----------------------------
   Scroll indicator (left side)
------------------------------ */

.scroll-indicator {
  position: absolute;
  left: 40px;
  top: 55%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
  pointer-events: none;
  animation: scroll-nudge 5s ease-in-out infinite;
}

@keyframes scroll-nudge {
  0%, 78%, 100% { transform: rotate(-90deg) translateX(-50%) translateX(0); }
  83% { transform: rotate(-90deg) translateX(-50%) translateX(-8px); }
  88% { transform: rotate(-90deg) translateX(-50%) translateX(5px); }
  93% { transform: rotate(-90deg) translateX(-50%) translateX(-3px); }
}

.scroll-arrow {
  font-size: 12px;
}

/* -----------------------------
   Hero content
------------------------------ */

.hero-content {
  margin: 0 auto;
  max-width: var(--max-width);
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* -----------------------------
   Countdown block
------------------------------ */

.countdown-block {
  margin-top: 12px;
  max-width: 900px;
  width: 100%;
  padding: 24px 32px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top, rgba(42, 153, 168, 0.22), transparent 60%),
    rgba(5, 7, 15, 0.86);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 40px 120px rgba(0, 0, 0, 0.9);
}

.launch-label {
  margin: 0 0 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.time-segment {
  padding: 18px 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.025);
}

.time-value {
  display: block;
  font-family: var(--mono);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.time-label {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}


/* -----------------------------
   Headline & descriptive text
------------------------------ */

.hero-copy {
  margin-top: 32px;
  max-width: 760px;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-copy h2 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 500;
  color: #d1d5db;
}


/* -----------------------------
   Social icons
------------------------------ */

.social-section {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  justify-content: center;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.8);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.social-link img {
  width: 16px;
  height: 16px;
  display: block;
}

.social-link:hover {
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(42, 153, 168, 0.6);
  transform: translateY(-1px);
}

/* -----------------------------
   Below-the-fold sections
------------------------------ */

.section {
  background: radial-gradient(circle at top, #020617 0%, #020309 45%, #000 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.section-loop {
  background: transparent;
  border-top: none;
}

.section-loop + .section {
  border-top: none;
}


.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 56px 52px;
}

.section h3 {
  margin: 0 0 18px;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section p,
.section li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}


/* -----------------------------
   Footer
------------------------------ */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: #020309;
  text-align: center;
  padding: 16px 24px 20px;
  font-size: 12px;
  color: var(--muted);
}

/* -----------------------------
   Mobile menu
------------------------------ */

.mobile-menu {
  position: absolute;
  top: 56px;
  left: 16px;
  right: 16px;
  z-index: 11;
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: rgba(2, 6, 18, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* -----------------------------
   Status chips
------------------------------ */

.hero-status-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 9, 20, 0.72);
  backdrop-filter: blur(14px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.status-live {
  border-color: rgba(0, 200, 83, 0.34);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.75);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 6px rgba(0, 200, 83, 0.6);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 18px rgba(0, 200, 83, 0.9);
  }
}

.status-subtle {
  border-color: rgba(42, 153, 168, 0.24);
}

/* -----------------------------
   Section kickers & labels
------------------------------ */

.section-kicker,
.meta-kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* -----------------------------
   Hero lead
------------------------------ */

.hero-lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* -----------------------------
   Countdown header & actions
------------------------------ */

.countdown-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

/* -----------------------------
   Buttons
------------------------------ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  position: relative;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: rgba(42, 153, 168, 0.15);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(42, 153, 168, 0.15), inset 0 0 12px rgba(42, 153, 168, 0.06);
}

.button-primary:hover {
  background: rgba(42, 153, 168, 0.25);
  box-shadow: 0 0 20px rgba(42, 153, 168, 0.3), inset 0 0 16px rgba(42, 153, 168, 0.1);
}

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

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

/* -----------------------------
   Hero metadata cards
------------------------------ */

.hero-metadata {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Shared card base */
.hero-metadata article {
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.hero-metadata article {
  padding: 20px;
  text-align: left;
}

.hero-metadata strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.15;
}

.hero-metadata p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

/* -----------------------------
   Social CTA
------------------------------ */

.social-cta {
  font-family: var(--mono);
  font-size: 18px;
  text-decoration: none;
}

/* -----------------------------
   Section h2 headings
------------------------------ */

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 780px;
}

/* -----------------------------
   Section heading row
------------------------------ */

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading-row.compact {
  align-items: center;
}

.section-intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
}

/* -----------------------------
   Signal cards (platform section)
------------------------------ */

/* Console panels — mission control */
.console-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.console-panel {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: rgba(4, 9, 20, 0.9);
  backdrop-filter: blur(12px);
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease;
}

/* Top glow bar on hover */
.console-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.console-panel:hover::before {
  opacity: 1;
}

.console-panel:hover {
  border-color: rgba(42, 153, 168, 0.2);
  box-shadow: 0 4px 24px rgba(42, 153, 168, 0.06);
}

/* Scanline sweep */
.console-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 153, 168, 0.08), transparent);
  animation: scanline 4s linear infinite;
  pointer-events: none;
}

.console-panel:nth-child(2)::after { animation-delay: 1s; }
.console-panel:nth-child(3)::after { animation-delay: 2s; }
.console-panel:nth-child(4)::after { animation-delay: 3s; }

@keyframes scanline {
  0% { top: 0; }
  100% { top: 100%; }
}

/* Panel header — module status bar */
.console-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.015);
  white-space: nowrap;
  overflow: hidden;
}

.console-id {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.console-name {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  overflow: hidden;
  text-overflow: ellipsis;
}

.console-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--success);
}

.console-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px rgba(0, 200, 83, 0.5);
  animation: dotBlink 2s ease-in-out infinite;
}

/* Panel body */
.console-body {
  flex: 1;
  padding: 18px 16px;
}

.console-body h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.console-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* Panel footer — telemetry readout */
.console-footer {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--border-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

/* -----------------------------
   Capability — tabbed spotlight
------------------------------ */

/* Tab bar */
.cap-tabs {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 0;
}

.cap-tab {
  position: relative;
  padding: 14px 20px;
  border: none;
  background: none;
  color: var(--text-soft);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.cap-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cap-tab:hover {
  color: var(--text);
}

.cap-tab.is-active {
  color: var(--text);
}

.cap-tab.is-active::after {
  transform: scaleX(1);
}

.cap-tab-num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-right: 8px;
}

/* Panels */
.cap-panels {
  margin-top: 36px;
  position: relative;
  min-height: 340px;
}

.cap-panel {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  animation: capFadeIn 0.4s ease;
}

.cap-panel.is-active {
  display: grid;
}

@keyframes capFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.cap-panel-text h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.cap-panel-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
}

.cap-features {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.cap-features li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}

.cap-features li + li {
  margin-top: 10px;
}

.cap-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(42, 153, 168, 0.4);
}

/* Terminal visual */
.cap-terminal {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: rgba(4, 9, 20, 0.9);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.cap-terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
}

.cap-terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cap-terminal-bar span:first-child { background: rgba(255, 80, 80, 0.6); }
.cap-terminal-bar span:nth-child(2) { background: rgba(255, 190, 50, 0.6); }
.cap-terminal-bar span:nth-child(3) { background: rgba(50, 215, 75, 0.6); }

.cap-terminal-bar code {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  opacity: 0.5;
}

.cap-terminal pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
}

.cap-terminal code {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-soft);
}

.t-accent { color: var(--primary); }
.t-muted { color: rgba(255, 255, 255, 0.3); }
.t-warn { color: rgba(255, 190, 50, 0.8); }

/* -----------------------------
   Operating loop — orbital
------------------------------ */

.orbit-wrap {
  position: relative;
  width: 100%;
  max-width: 820px;
  aspect-ratio: 1 / 1;
  margin: 48px auto 0;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Central hub */
.orbit-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.orbit-hub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 153, 168, 0.12) 0%, transparent 70%);
  animation: hubPulse 3s ease-in-out infinite;
}

.orbit-hub-label {
  display: block;
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  position: relative;
}

.orbit-hub-sub {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0.5;
  margin-top: 6px;
  position: relative;
}

@keyframes hubPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.4; }
}

/* Step nodes */
.orbit-node {
  position: absolute;
  width: 190px;
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--panel);
  backdrop-filter: blur(12px);
  z-index: 3;
  transition: all 0.35s ease;
}

.orbit-node::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.orbit-node:hover {
  border-color: rgba(42, 153, 168, 0.35);
  box-shadow: 0 8px 32px rgba(42, 153, 168, 0.1), 0 0 0 1px rgba(42, 153, 168, 0.12);
  transform: scale(1.04);
}

.orbit-num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--primary);
}

.orbit-node h3 {
  margin: 8px 0 6px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.orbit-node p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* Position each node around the orbit — clock positions */
/* Node 1: top center (12 o'clock) */
.orbit-node-1 {
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-node-1::before {
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-node-1:hover { transform: translateX(-50%) scale(1.04); }

/* Node 2: right (2 o'clock) */
.orbit-node-2 {
  top: 22%;
  right: -8%;
}
.orbit-node-2::before {
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
}

/* Node 3: bottom-right (5 o'clock) */
.orbit-node-3 {
  bottom: 8%;
  right: -4%;
}
.orbit-node-3::before {
  left: -16px;
  top: 30%;
  transform: translateY(-50%);
}

/* Node 4: bottom-left (7 o'clock) */
.orbit-node-4 {
  bottom: 8%;
  left: -4%;
}
.orbit-node-4::before {
  right: -16px;
  top: 30%;
  transform: translateY(-50%);
}

/* Node 5: left (10 o'clock) */
.orbit-node-5 {
  top: 22%;
  left: -8%;
}
.orbit-node-5::before {
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
}

/* Mobile fallback */
.orbit-mobile-list {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.orbit-mobile-step {
  padding: 22px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.orbit-mobile-step h3 {
  margin: 8px 0 6px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.orbit-mobile-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* -----------------------------
   Timeline / Mission Briefing
------------------------------ */

.briefing-timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 48px;
}

/* Vertical progress rail */
.briefing-rail {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 15px;
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.briefing-rail-fill {
  width: 100%;
  height: 12%;
  background: linear-gradient(180deg, var(--primary), rgba(42, 153, 168, 0.3));
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(42, 153, 168, 0.3);
}

/* Each milestone */
.briefing-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding-bottom: 36px;
}

.briefing-item:last-child {
  padding-bottom: 0;
}

/* Node on the rail */
.briefing-node {
  position: absolute;
  left: -42px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: var(--bg);
}

[data-status="complete"] .briefing-node {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 10px rgba(42, 153, 168, 0.4);
}

[data-status="active"] .briefing-node {
  border-color: var(--primary);
  background: var(--bg);
  box-shadow: 0 0 10px rgba(42, 153, 168, 0.3);
  animation: nodePulse 2s ease-in-out infinite;
}

@keyframes nodePulse {
  0%, 100% { box-shadow: 0 0 10px rgba(42, 153, 168, 0.3); }
  50% { box-shadow: 0 0 20px rgba(42, 153, 168, 0.6); }
}

/* Meta column: date + status */
.briefing-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 2px;
}

.briefing-date {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.briefing-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.briefing-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.briefing-status-complete {
  color: var(--success);
}
.briefing-status-complete::before {
  background: var(--success);
  box-shadow: 0 0 6px rgba(0, 200, 83, 0.4);
}

.briefing-status-active {
  color: var(--primary);
}
.briefing-status-active::before {
  background: var(--primary);
  box-shadow: 0 0 6px rgba(42, 153, 168, 0.4);
  animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.briefing-status-upcoming {
  color: rgba(255, 255, 255, 0.3);
}
.briefing-status-upcoming::before {
  background: rgba(255, 255, 255, 0.15);
}

/* Card with corner brackets */
.briefing-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Corner bracket decorations */
.briefing-card::before,
.briefing-card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.briefing-card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid rgba(42, 153, 168, 0.4);
  border-left: 2px solid rgba(42, 153, 168, 0.4);
}

.briefing-card::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid rgba(42, 153, 168, 0.4);
  border-right: 2px solid rgba(42, 153, 168, 0.4);
}

[data-status="active"] .briefing-card {
  border-color: rgba(42, 153, 168, 0.25);
  box-shadow: 0 0 24px rgba(42, 153, 168, 0.06);
}

[data-status="active"] .briefing-card::before,
[data-status="active"] .briefing-card::after {
  border-color: var(--primary);
}

[data-status="upcoming"] .briefing-card {
  opacity: 0.6;
}

.briefing-card:hover {
  border-color: rgba(42, 153, 168, 0.2);
  box-shadow: 0 4px 20px rgba(42, 153, 168, 0.06);
}

.briefing-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

/* -----------------------------
   Proof / Why FieldWatch — Map
------------------------------ */

.proof-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.proof-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.proof-intro-copy {
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 640px;
}

/* Bahamas map */
.bahamas-map-wrap {
  position: relative;
  margin: 40px auto 0;
  max-width: 960px;
}

.bahamas-map-svg {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
}

/* Pin markers */
.map-pin {
  position: absolute;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  z-index: 3;
}

.map-pin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ff6b35;
  border: 2px solid rgba(4, 9, 20, 0.9);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.6);
  transition: all 0.25s ease;
}

.map-pin:hover .map-pin-dot,
.map-pin.is-active .map-pin-dot {
  background: #fff;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.9);
  transform: translate(-50%, -50%) scale(1.2);
}

.map-pin-ping {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ff6b35;
  animation: pinPing 2.5s ease-out infinite;
}

.map-pin:nth-child(2) .map-pin-ping { animation-delay: 0.6s; }
.map-pin:nth-child(3) .map-pin-ping { animation-delay: 1.2s; }
.map-pin:nth-child(4) .map-pin-ping { animation-delay: 1.8s; }

@keyframes pinPing {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

/* Info panels */
.map-info {
  position: absolute;
  width: 260px;
  padding: 20px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background: rgba(4, 9, 20, 0.92);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.map-info.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Corner brackets */
.map-info::before,
.map-info::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
}

.map-info::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid rgba(42, 153, 168, 0.5);
  border-left: 2px solid rgba(42, 153, 168, 0.5);
}

.map-info::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid rgba(42, 153, 168, 0.5);
  border-right: 2px solid rgba(42, 153, 168, 0.5);
}

.map-info-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.map-info h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.map-info p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-soft);
}

.brief-download {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(42, 153, 168, 0.3);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.brief-download:hover {
  background: rgba(42, 153, 168, 0.1);
  border-color: var(--primary);
}

.map-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.map-info li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-soft);
}

.map-info li + li {
  margin-top: 6px;
}

.map-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

/* Panel positions per spot */
[data-info="grand-bahama"] { top: 2%; left: 28%; }
[data-info="nassau"] { top: 22%; left: 42%; }
[data-info="andros"] { top: 34%; left: 34%; }
[data-info="inagua"] { top: 82%; left: 72%; }

/* -----------------------------
   CTA section
------------------------------ */

/* Section background */
.section-cta {
  background: linear-gradient(180deg, #020309, #050a14 30%, #080f1e 60%, #0a1222 100%);
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

/* Horizon line at top */
.cta-horizon {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 153, 168, 0.2) 20%, rgba(160, 130, 80, 0.3) 50%, rgba(42, 153, 168, 0.2) 80%, transparent);
  z-index: 1;
}

.cta-horizon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 80px;
  background: linear-gradient(180deg, rgba(160, 130, 80, 0.04), transparent);
  pointer-events: none;
}

/* Topo SVG background */
.cta-topo {
  position: absolute;
  inset: 0;
  background: url("../assets/svg/topo.svg") repeat;
  background-size: 600px 600px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 72px;
}

/* Big bold heading with warm glow */
.cta-heading {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  text-shadow:
    0 0 40px rgba(160, 130, 80, 0.15),
    0 0 80px rgba(42, 153, 168, 0.1);
  line-height: 1.1;
}

.cta-copy {
  max-width: 640px;
  margin: 22px auto 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
}

/* Field comms form */
.cta-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 560px;
  margin: 40px auto 0;
  border: 1px solid rgba(42, 153, 168, 0.3);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(4, 9, 20, 0.8);
  backdrop-filter: blur(16px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(42, 153, 168, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-form:focus-within {
  border-color: rgba(42, 153, 168, 0.5);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(42, 153, 168, 0.1),
    0 0 0 1px rgba(42, 153, 168, 0.15);
}

.cta-form-inner {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cta-form-prompt {
  padding-left: 16px;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--primary);
  opacity: 0.7;
  animation: promptBlink 1.2s step-end infinite;
}

@keyframes promptBlink {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.15; }
}

.cta-form input {
  flex: 1;
  min-width: 0;
  padding: 16px 16px 16px 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.03em;
  outline: none;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.cta-form .button {
  border-radius: 0;
  border: none;
  border-left: 1px solid rgba(42, 153, 168, 0.3);
  min-height: 54px;
  padding: 0 28px;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.cta-error {
  margin: 14px auto 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #EF4444;
}

.cta-form.has-error {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.15);
}

.cta-form.has-error input {
  color: #EF4444;
}

.cta-confirmation {
  margin: 18px auto 0;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--success);
}

/* Mission checklist */
.cta-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  justify-content: center;
  margin-top: 36px;
}

.cta-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.cta-check-item:hover {
  color: var(--text-soft);
}

.cta-check-item svg {
  flex-shrink: 0;
}

/* -----------------------------
   Responsiveness
------------------------------ */

@media (max-width: 1180px) {
  .console-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orbit-wrap {
    max-width: 680px;
  }

  .orbit-node {
    width: 165px;
    padding: 14px;
  }

}

@media (max-width: 980px) {
  body {
    padding: 12px;
  }

  .frame {
    border-radius: 14px;
  }

  .top-nav {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner {
    padding: 100px 20px 36px;
  }

  .scroll-indicator,
  .hud-panel {
    display: none;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .briefing-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .briefing-timeline {
    padding-left: 40px;
  }

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

  /* Bahamas map — hide pins/panels, show map smaller */
  .bahamas-map-wrap {
    max-width: 100%;
  }

  .map-info {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .map-pin {
    width: 24px;
    height: 24px;
  }

  .map-pin-dot {
    width: 10px;
    height: 10px;
  }

  .map-pin-ping {
    width: 10px;
    height: 10px;
  }

  /* Capability tabs */
  .cap-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cap-tab {
    padding: 12px 14px;
    font-size: 12px;
  }

  .cap-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Orbit — swap to mobile list */
  .orbit-wrap {
    display: none;
  }

  .orbit-mobile-list {
    display: flex;
  }

  .section-inner {
    padding: 48px 20px;
  }

  /* Console grid */
  .console-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* CTA form */
  .cta-form {
    max-width: 100%;
  }

  .cta-checklist {
    gap: 12px 20px;
  }

  .cta-check-item {
    font-size: 11px;
  }

  /* Briefing footer readouts */
  .console-footer {
    font-size: 9px;
  }
}

@media (max-width: 720px) {
  .hero-copy h1,
  .section h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-headline {
    background-size: 300% 100%;
  }

  .countdown-block {
    padding: 20px 16px;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .time-value {
    font-size: 2rem;
  }

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

  /* Proof intro */
  .proof-intro h2 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .proof-intro-copy {
    font-size: 14px;
  }

  /* Bahamas map — stack info panels below */
  .bahamas-map-wrap {
    display: flex;
    flex-direction: column;
  }

  .bahamas-map-svg {
    max-height: 400px;
    object-fit: contain;
  }

  .map-pin {
    display: none;
  }

  .map-info {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    margin-top: 8px;
  }

  /* CTA section */
  .cta-heading {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .cta-copy {
    font-size: 14px;
  }

  .cta-checklist {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .cta-form .button {
    padding: 0 18px;
    font-size: 11px;
  }

  /* Cap terminal */
  .cap-terminal pre {
    padding: 14px;
  }

  .cap-terminal code {
    font-size: 11px;
  }

  .cap-panel-text h3 {
    font-size: 20px;
  }

  /* Section heading row */
  .section-heading-row {
    gap: 16px;
  }

  .section-intro {
    font-size: 14px;
  }

  /* Orbit mobile list */
  .orbit-mobile-step {
    padding: 18px;
  }

  .orbit-mobile-step h3 {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  body {
    padding: 8px;
  }

  .hero-status-row,
  .countdown-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-copy h1,
  .section h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .hero-inner {
    padding: 90px 16px 32px;
  }

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

  .time-value {
    font-size: 1.8rem;
  }

  .section-inner {
    padding: 40px 16px;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-form .button {
    border-left: none;
    border-top: 1px solid rgba(42, 153, 168, 0.3);
    border-radius: 0;
    width: 100%;
    min-height: 48px;
  }

  .cta-form-prompt {
    padding-left: 14px;
  }

  .console-header {
    padding: 8px 12px;
  }

  .console-body {
    padding: 14px 12px;
  }

  .console-body h3 {
    font-size: 15px;
  }

  .console-body p {
    font-size: 12px;
  }

  .console-footer {
    padding: 8px 12px;
  }

  .briefing-card {
    padding: 18px;
  }

  .briefing-card h3 {
    font-size: 15px;
  }

  .orbit-hub-label {
    font-size: 16px;
  }

  .orbit-hub-sub {
    font-size: 11px;
  }

  .social-section {
    gap: 10px;
  }
}
