/* ════════════════════════════════════════════════════
   MANUPORT  —  Landing Page
   Aesthetic: SpaceX-inspired · Dark · Technical · Minimal
   manuports.com
════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────── */
:root {
  /* Palette */
  --bg:          #0A0A09;
  --bg-alt:      #111110;
  --panel:       #1A1917;
  --panel-2:     #222220;
  --text:        #F0EDE6;
  --muted:       #8A8780;
  --dim:         #4A4845;
  --border:      rgba(255, 255, 255, 0.07);
  --border-md:   rgba(255, 255, 255, 0.12);
  --border-lg:   rgba(255, 255, 255, 0.20);
  --accent:      #E15C31;
  --accent-dk:   #C44E25;
  --accent-lt:   rgba(225, 92, 49, 0.10);
  --blue:        #4A9FD4;
  --blue-lt:     rgba(74, 159, 212, 0.10);
  --white:       #FFFFFF;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing — 8px base */
  --s1:  8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  32px;
  --s5:  40px;
  --s6:  48px;
  --s8:  64px;
  --s10: 80px;
  --s12: 96px;
  --s16: 128px;

  /* Layout */
  --max-w:  1200px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* ─── Reset ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a45;
  transition: transform .08s ease;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(225, 92, 49, 0.45);
  box-shadow: 0 0 24px rgba(225, 92, 49, 0.18);
  background: rgba(10, 16, 24, 0.65);
  display: grid;
  place-items: center;
  transition: width .2s ease, height .2s ease, border-color .2s ease, background .2s ease;
}

.cursor-ring-icon {
  font-size: 12px;
  line-height: 1;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.92;
  transition: opacity .15s ease, transform .15s ease;
}

.cursor-ring.is-hover {
  width: 42px;
  height: 42px;
  border-color: rgba(74, 159, 212, 0.85);
  background: rgba(9, 21, 35, 0.82);
}

.cursor-ring.is-hover .cursor-ring-icon {
  transform: scale(1.08);
}

.cursor-ring.mode-ship {
  border-color: rgba(68, 146, 205, 0.75);
}

.cursor-ring.mode-truck {
  border-color: rgba(225, 92, 49, 0.75);
}

.cursor-ring.mode-plane {
  border-color: rgba(176, 192, 213, 0.75);
}

@media (hover: hover) and (pointer: fine) {
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready .btn-primary,
  body.cursor-ready .btn-ghost {
    cursor: none;
  }

  body.cursor-ready input,
  body.cursor-ready textarea,
  body.cursor-ready select {
    cursor: text;
  }

  body.cursor-ready .cursor-dot,
  body.cursor-ready .cursor-ring {
    opacity: 1;
  }
}

img, svg { display: block; max-width: 100%; }
a        { color: inherit; text-decoration: none; }
ul       { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
}
h1 { font-size: clamp(42px, 8vw, 96px); font-weight: 800; }
h2 { font-size: clamp(28px, 5vw, 56px); font-weight: 700; }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; }
p  { color: var(--muted); line-height: 1.75; }

.label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s2);
}

/* ─── Container ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── Buttons ───────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(225, 92, 49, 0.30);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 11px 24px;
  border: 1px solid var(--border-lg);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, transform 0.12s, background 0.15s;
  white-space: nowrap;
  line-height: 1;
}
.btn-ghost:hover {
  border-color: var(--text);
  transform: translateY(-1px);
  background: rgba(255,255,255,0.04);
}
.btn-ghost:active { transform: translateY(0); }

.btn-lg { padding: 15px 32px; font-size: 14px; }

/* ─── Focus (accessibility) ─────────────────────── */
:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

/* ─── Nav ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 9, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s ease;
}
.nav.scrolled {
  border-bottom-color: var(--border-md);
  background: rgba(10, 10, 9, 0.96);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text);
  flex-shrink: 0;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

/* ─── Language Selector ─────────────────────────── */
.lang-wrap { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border-md);
  border-radius: 2px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.lang-btn:hover {
  border-color: var(--border-lg);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.lang-btn[aria-expanded="true"] {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.lang-icon   { color: var(--dim); flex-shrink: 0; }
.lang-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: var(--dim);
}
.lang-btn[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }

#langLabel {
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
  text-transform: uppercase;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 260px;
  max-height: 380px;
  overflow-y: auto;
  background: var(--panel);
  border: 1px solid var(--border-md);
  border-radius: 2px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 200;
  padding: 6px;
}

.lang-dropdown[aria-hidden="true"] { display: none; }

.lang-dropdown::-webkit-scrollbar { width: 2px; }
.lang-dropdown::-webkit-scrollbar-thumb {
  background: var(--dim);
  border-radius: 1px;
}

.lang-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 12px;
  border-radius: 2px;
  font-size: 13px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.1s;
  gap: 10px;
  font-family: var(--font-body);
}
.lang-opt:hover  { background: var(--panel-2); }
.lang-opt.active {
  background: var(--accent-lt);
  color: var(--accent);
}
.lang-opt-native { font-weight: 500; flex: 1; }
.lang-opt-code {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.lang-opt.active .lang-opt-code { color: var(--accent); opacity: 0.7; }

/* ─── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: calc(62px + var(--s16));
  padding-bottom: var(--s16);
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle atmospheric glow — very restrained */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(225, 92, 49, 0.055) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 5% 85%, rgba(74, 159, 212, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Fine dot-grid texture — very subtle, SpaceX-like */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.eyebrow-wrap { margin-bottom: var(--s4); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid var(--border-md);
  border-radius: 1px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.8); }
}

.hero-h1 {
  margin-bottom: var(--s4);
  line-height: 0.95;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  max-width: 540px;
  margin-bottom: var(--s3);
  color: var(--muted);
  line-height: 1.75;
}

.hero-supporting {
  max-width: 560px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: var(--s8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s1);
}

/* ─── Trust Strip ───────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: var(--s3) 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s2) var(--s5);
}

.trust-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
  text-transform: uppercase;
}

.trust-sep {
  color: var(--dim);
  font-size: 12px;
  user-select: none;
  line-height: 1;
}

.launch-strip {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(225, 92, 49, 0.06), rgba(225, 92, 49, 0.015));
}

.launch-inner {
  padding: 14px 0 16px;
}

.launch-line {
  margin: 0 auto;
  max-width: 980px;
  font-size: 13px;
  color: #d4deea;
  line-height: 1.7;
  text-align: center;
}

.launch-dot {
  color: var(--accent);
  margin: 0 6px;
}

.launch-promises {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.launch-chip {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
  color: #e1e8f2;
  font-size: 12px;
  line-height: 1.5;
  padding: 6px 10px;
  border-radius: 2px;
  text-align: center;
}

/* ─── Sections ──────────────────────────────────── */
.section {
  padding: var(--s16) 0;
  border-top: 1px solid var(--border);
}

.section-alt { background: var(--bg-alt); }

.section-header {
  margin-bottom: var(--s8);
  max-width: 640px;
}
.section-header h2 { margin-bottom: var(--s3); }
.section-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--muted);
  margin-top: var(--s2);
  line-height: 1.75;
}

/* ─── Steps (How it works) ──────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}

.step {
  padding: var(--s6) var(--s5);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.22s;
}
.step:last-child { border-right: none; }
.step:hover      { background: rgba(255,255,255,0.018); }

.step-num {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.step-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  display: block;
}

.step-content h3 { margin-bottom: var(--s2); color: var(--text); }
.step-content p  { font-size: 14px; line-height: 1.75; }

/* ─── Who it's for ──────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.who-card {
  background: var(--bg);
  padding: var(--s8) var(--s6);
  transition: background 0.22s;
}
.who-card:hover { background: var(--bg-alt); }

.who-card-header { margin-bottom: var(--s5); }
.who-card-header h3 {
  margin: var(--s2) 0 var(--s2);
  color: var(--text);
  font-size: clamp(20px, 2.5vw, 26px);
}
.who-card-header p { font-size: 15px; line-height: 1.7; }

.who-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 1px;
  margin-bottom: var(--s2);
}
.buyers-badge   { background: var(--blue-lt);  color: var(--blue); border: 1px solid rgba(74,159,212,0.20); }
.suppliers-badge{ background: var(--accent-lt); color: var(--accent); border: 1px solid rgba(225,92,49,0.22); }

.feature-list { display: flex; flex-direction: column; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: 14px;
  color: var(--muted);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.65;
}
.feature-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.feature-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ─── Map Section ───────────────────────────────── */
.map-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  margin-bottom: var(--s5);
}

.map-stat { padding: var(--s4) var(--s5); text-align: center; }

.map-stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.map-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.map-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.map-wrap {
  width: 100%;
  height: clamp(300px, 48vw, 540px);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}

#gmap { width: 100%; height: 100%; }

.map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
}
.map-fallback p {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  padding: var(--s4);
  letter-spacing: 0.02em;
}

.map-disclaimer {
  margin-top: var(--s3);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--dim);
  line-height: 1.7;
  max-width: 640px;
}

/* ─── CTA Block ─────────────────────────────────── */
.cta-block {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: var(--s16) 0;
  position: relative;
  overflow: hidden;
}

/* Watermark text — very SpaceX */
.cta-block::before {
  content: 'MANUPORT';
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 180px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.022);
  position: absolute;
  right: var(--gutter);
  bottom: -0.15em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cta-block h2 {
  color: var(--text);
  margin-bottom: var(--s4);
}

.cta-block > .cta-inner > p {
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 17px);
  margin-bottom: var(--s6);
  line-height: 1.75;
}

.cta-actions { margin-bottom: var(--s3); }

.cta-email {
  font-size: 13px;
  color: var(--dim) !important;
  line-height: 1.5;
  margin: 0 !important;
  letter-spacing: 0.01em;
}
.cta-email a {
  color: var(--muted);
  border-bottom: 1px solid var(--dim);
  padding-bottom: 1px;
  margin-inline-start: 4px;
  transition: color 0.15s, border-color 0.15s;
}
.cta-email a:hover { color: var(--text); border-color: var(--muted); }

/* ─── Footer ────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--s5) 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s3);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-domain {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--dim);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }

/* ─── Scroll Animations ─────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.60s ease, transform 0.60s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.steps .step:nth-child(1) { transition-delay: 0.04s; }
.steps .step:nth-child(2) { transition-delay: 0.12s; }
.steps .step:nth-child(3) { transition-delay: 0.20s; }
.steps .step:nth-child(4) { transition-delay: 0.28s; }

.who-grid .who-card:nth-child(1) { transition-delay: 0.04s; }
.who-grid .who-card:nth-child(2) { transition-delay: 0.14s; }

/* ─── RTL Layout Support ────────────────────────── */
[dir="rtl"] .nav-inner        { flex-direction: row-reverse; }
[dir="rtl"] .nav-right        { flex-direction: row-reverse; }
[dir="rtl"] .lang-dropdown    { right: auto; left: 0; }
[dir="rtl"] .eyebrow          { flex-direction: row-reverse; }
[dir="rtl"] .hero-sub         { text-align: start; }
[dir="rtl"] .hero-actions     { flex-direction: row-reverse; }
[dir="rtl"] .section-header   { text-align: start; }
[dir="rtl"] .who-card-header p { text-align: start; }
[dir="rtl"] .feature-list li  { flex-direction: row-reverse; }
[dir="rtl"] .feature-list li::before { margin-top: 8px; }
[dir="rtl"] .footer-inner     { flex-direction: row-reverse; }
[dir="rtl"] .footer-left      { flex-direction: row-reverse; }
[dir="rtl"] .footer-links     { flex-direction: row-reverse; }
[dir="rtl"] .trust-inner      { direction: rtl; }
[dir="rtl"] .map-disclaimer   { text-align: start; }
[dir="rtl"] .cta-inner        { text-align: start; }
[dir="rtl"] .step-num::after  { display: none; }
[dir="rtl"] .steps {
  direction: rtl;
}
[dir="rtl"] .step {
  border-right: none;
  border-left: 1px solid var(--border);
}
[dir="rtl"] .step:last-child { border-left: none; }

/* ─── Responsive ─────────────────────────────────  */
@media (max-width: 900px) {
  .section { padding: var(--s12) 0; }
  .hero    { padding-top: calc(62px + var(--s12)); padding-bottom: var(--s12); min-height: auto; }
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .step:last-child { border-bottom: none; }
  .who-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .section-header { max-width: 100%; }
  .map-stats {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .map-stat-sep { width: 100%; height: 1px; display: block; }
  .map-stat { padding: var(--s3) var(--s4); }
}

@media (max-width: 640px) {
  :root { --s16: 80px; }

  .section { padding: var(--s10) 0; }
  .hero {
    padding-top: calc(62px + var(--s10));
    padding-bottom: var(--s10);
  }

  .nav-cta { display: none; }

  .hero-actions {
    flex-direction: column;
    gap: var(--s2);
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    font-size: 14px;
    padding: 16px;
    justify-content: center;
  }

  .who-card { padding: var(--s5) var(--s4); }
  .step     { padding: var(--s4) var(--s3); }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: var(--s2); }

  .trust-sep  { display: none; }
  .trust-inner {
    justify-content: flex-start;
    gap: var(--s2);
    row-gap: 6px;
  }
  .trust-item { font-size: 11px; }

  .map-wrap { height: 260px; }

  .cta-block { padding: var(--s10) 0; }
  .cta-block .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 14px;
  }
  .cta-block::before { display: none; }
}

/* ─── Print ─────────────────────────────────────── */
@media print {
  .nav, .lang-wrap, .hero-actions, .cta-block, .footer { display: none; }
  body { color: #000; background: #fff; }
  .hero, .section { border: none; }
}

/* ─── SpaceX Pass (May 2026) ───────────────────── */
:root {
  --bg: #060708;
  --bg-alt: #0b0d10;
  --panel: #101318;
  --panel-2: #171c23;
  --text: #f5f7fa;
  --muted: #9aa5b4;
  --dim: #6f7b8b;
  --border: rgba(255, 255, 255, 0.08);
  --border-md: rgba(255, 255, 255, 0.14);
  --border-lg: rgba(255, 255, 255, 0.24);
  --accent: #f5f7fa;
  --accent-dk: #d3dbe6;
  --accent-lt: rgba(255, 255, 255, 0.12);
  --max-w: 1280px;
}

body {
  background:
    radial-gradient(1200px 700px at 75% -10%, rgba(74, 159, 212, 0.12), transparent 65%),
    radial-gradient(900px 600px at 10% 110%, rgba(255, 255, 255, 0.06), transparent 60%),
    var(--bg);
}

.label {
  color: #c7d6eb;
}

.nav {
  background: rgba(6, 7, 8, 0.84);
}

.nav.scrolled {
  background: rgba(6, 7, 8, 0.96);
}

.nav-logo {
  letter-spacing: 0.16em;
}

.hero {
  min-height: 100vh;
  padding-top: calc(62px + clamp(120px, 14vh, 180px));
  padding-bottom: clamp(120px, 16vh, 210px);
}

.hero::before {
  background:
    radial-gradient(ellipse 52% 46% at 76% 22%, rgba(74, 159, 212, 0.16) 0%, transparent 62%),
    radial-gradient(ellipse 48% 42% at 20% 90%, rgba(255, 255, 255, 0.05) 0%, transparent 58%);
}

.hero::after {
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;
}

.eyebrow {
  border-color: var(--border-lg);
  background: rgba(255,255,255,0.02);
}

.hero-h1 {
  font-size: clamp(48px, 8.7vw, 118px);
  line-height: 0.9;
  text-transform: none;
  letter-spacing: -0.014em;
  max-width: 10.8ch;
}

.hero-sub {
  max-width: 700px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.85;
}

.btn-primary {
  background: #f5f7fa;
  color: #060708;
  border: 1px solid #f5f7fa;
  letter-spacing: 0.085em;
}

.btn-primary:hover {
  background: #dfe7f2;
  border-color: #dfe7f2;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  border-color: var(--border-md);
  letter-spacing: 0.085em;
}

.trust-strip {
  background: linear-gradient(to right, #0a0d10, #0b1016);
}

.trust-item {
  color: #b5c0ce;
  letter-spacing: 0.08em;
}

.section {
  padding: clamp(100px, 14vh, 190px) 0;
}

.section-header {
  margin-bottom: clamp(44px, 8vh, 88px);
}

.section-header h2 {
  font-size: clamp(30px, 5.2vw, 64px);
  max-width: 11ch;
}

.steps,
.who-grid,
.map-stats,
.map-wrap {
  border-color: var(--border-md);
}

.step,
.who-card {
  background: rgba(255,255,255,0.012);
}

.step:hover,
.who-card:hover {
  background: rgba(255,255,255,0.028);
}

.step-num,
.map-stat-label {
  color: #c9d8ec;
}

.feature-list li::before {
  background: #c9d8ec;
}

.map-wrap {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 18px 60px rgba(0,0,0,0.36);
}

.cta-block {
  background:
    radial-gradient(900px 500px at 80% 40%, rgba(74, 159, 212, 0.12), transparent 65%),
    #0b0f14;
}

.cta-block::before {
  color: rgba(255,255,255,0.03);
}

.footer-domain,
.footer-links a {
  color: #a8b4c5;
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(62px + 84px);
    padding-bottom: 88px;
    min-height: auto;
  }

  .hero-h1 {
    font-size: clamp(40px, 13.2vw, 62px);
  }

  .section {
    padding: 88px 0;
  }
}

/* ─── Font + Trailer Pass (May 2026) ───────────── */
:root {
  --font-display: 'Poppins', Arial, Helvetica, sans-serif;
  --font-body: 'Poppins', Arial, Helvetica, sans-serif;
}

h1 { font-weight: 600; }
h2 { font-weight: 500; }
h3 { font-weight: 500; }
p  { font-weight: 300; }

.nav-logo { font-weight: 600; letter-spacing: 0.12em; }
.btn-primary,
.btn-ghost { font-weight: 500; }
.map-stat-num { font-weight: 600; }

.hero-media {
  margin-top: clamp(28px, 5vw, 48px);
  max-width: 920px;
  border: 1px solid var(--border-md);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
}

.hero-media-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-media-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9d8ec;
  font-weight: 500;
}

.hero-media-meta {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #0b0f14;
}

.hero-media-caption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-media {
    margin-top: 24px;
    padding: 10px;
  }

  .hero-media-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ─── Nav + Portal + Map Upgrades (May 2026) ───── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.18s ease;
}

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

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-block h2 {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.08;
  max-width: 18ch;
}

.leaflet-container {
  background: #0a0f14;
  font-family: var(--font-body);
}

.leaflet-control-attribution {
  background: rgba(0, 0, 0, 0.35) !important;
  color: var(--dim) !important;
  font-size: 10px !important;
}

.mp-marker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9e0ea;
  font-size: 15px;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
  white-space: nowrap;
}

.mp-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e15c31;
  box-shadow: 0 0 0 0 rgba(225, 92, 49, 0.7);
  animation: mpPulse 2.6s infinite;
}

@keyframes mpPulse {
  0% { box-shadow: 0 0 0 0 rgba(225, 92, 49, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(225, 92, 49, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 92, 49, 0); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .cta-actions .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px;
  }
}

/* ─── Motion + Clean Pass (May 2026) ───────────── */
.hero {
  position: relative;
  isolation: isolate;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.42;
  filter: saturate(0.9) contrast(1.03) brightness(0.9);
  transform: scale(1.05);
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.44) 0%, rgba(7, 9, 13, 0.6) 50%, rgba(7, 9, 13, 0.74) 100%),
    radial-gradient(ellipse at 72% 36%, rgba(74, 159, 212, 0.2) 0%, rgba(74, 159, 212, 0.06) 42%, transparent 70%);
  pointer-events: none;
}

.hero-audio-toggle {
  position: absolute;
  top: 82px;
  right: clamp(16px, 3vw, 34px);
  z-index: 3;
  border: 1px solid var(--border-md);
  background: rgba(7, 9, 13, 0.62);
  color: #d7e0ed;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
  cursor: pointer;
}

.hero-audio-toggle:hover {
  border-color: var(--border-lg);
  color: var(--text);
}

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

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--s6);
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.hero-cats {
  margin-bottom: var(--s3);
  color: #9cabbd;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.8;
}

.hero-h1 {
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 500;
  line-height: 0.98;
  max-width: 14ch;
}

.hero-sub {
  max-width: 64ch;
  font-size: clamp(15px, 1.45vw, 18px);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.cinema-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.42);
  border-radius: 10px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  max-height: min(74vh, 640px);
  overflow-y: auto;
}

.cinema-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,159,212,0.08), transparent 35%, rgba(225,92,49,0.05));
  pointer-events: none;
}

.cinema-topline {
  position: relative;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4d2e2;
  margin-bottom: 10px;
}

.cinema-subline {
  position: relative;
  z-index: 1;
  font-size: 12px;
  line-height: 1.55;
  color: #a7b9cd;
  margin: 0 0 12px;
}

.cinema-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #95a6b9;
  margin-bottom: 6px;
}

.cinema-search,
.cinema-loading,
.cinema-scan,
.cinema-results,
.cinema-negotiation,
.cinema-protection,
.cinema-final {
  position: relative;
  z-index: 1;
}

.cinema-search {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(7, 10, 14, 0.62);
  padding: 10px;
  margin-bottom: 10px;
}

.cinema-input {
  min-height: 52px;
  font-size: 12px;
  color: #e7eef8;
  line-height: 1.55;
}

.cinema-cursor {
  display: inline-block;
  width: 7px;
  height: 15px;
  background: #e15c31;
  margin-left: 3px;
  transform: translateY(2px);
  animation: blink 1s steps(1, end) infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.2; }
}

.cinema-loading {
  display: none;
  font-size: 12px;
  color: #95b5d0;
  margin-bottom: 10px;
}

.cinema-loading.visible { display: block; }

.cinema-scan {
  display: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7, 10, 14, 0.58);
  padding: 10px;
  margin-bottom: 10px;
}

.cinema-scan.visible { display: block; }

.cinema-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cinema-checks li {
  font-size: 11px;
  color: #8fa4b8;
  opacity: 0.45;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.cinema-checks li.checked {
  opacity: 1;
  color: #dbe7f4;
}

.cinema-checks li.checked::before {
  content: '• ';
  color: #e15c31;
}

.cinema-results {
  display: none;
  gap: 8px;
  margin-bottom: 10px;
}

.cinema-results.visible { display: grid; }

.cinema-result-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-mini {
  padding: 8px 12px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.cinema-results-note {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.5;
  color: #8ea1b6;
}

.cinema-supplier {
  display: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 10px;
}

.cinema-supplier.visible { display: block; animation: fadeInUp .35s ease both; }

.cinema-supplier h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.cinema-supplier p {
  font-size: 11px;
  line-height: 1.55;
  color: #c6d5e6;
}

.cinema-negotiation,
.cinema-protection,
.cinema-final {
  display: none;
}

.cinema-negotiation.visible,
.cinema-protection.visible,
.cinema-final.visible {
  display: block;
}

.cinema-hold {
  font-size: 12px;
  color: #f1f5fb;
  margin-bottom: 8px;
}

.cinema-chat {
  display: none;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8, 12, 18, 0.62);
  font-size: 11px;
  color: #d3deeb;
  padding: 8px 9px;
  margin-bottom: 6px;
  line-height: 1.5;
}

.cinema-chat.visible {
  display: block;
  animation: fadeInUp .35s ease both;
}

.cinema-final {
  border: 1px solid rgba(225, 92, 49, 0.44);
  background: rgba(225, 92, 49, 0.08);
  padding: 12px;
}

.cinema-final h4 {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 6px;
}

.cinema-final p {
  font-size: 12px;
  color: #e2ecf8;
}

.cinema-final .btn-primary {
  margin-top: 10px;
}

.cinema-card::-webkit-scrollbar {
  width: 8px;
}

.cinema-card::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
}

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

#mapTitle {
  font-family: var(--font-body);
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.06;
  max-width: 13ch;
}

.fade-up {
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-actions .btn-primary,
.hero-actions .btn-ghost {
  animation: subtleFloat 5.5s ease-in-out infinite;
}

.hero-actions .btn-ghost {
  animation-delay: 0.9s;
}

.mp-marker {
  font-size: 13px;
  font-weight: 300;
}

.mp-dot {
  width: 7px;
  height: 7px;
}

.leaflet-overlay-pane path {
  filter: drop-shadow(0 0 2px rgba(141, 176, 214, 0.35));
}

.demo-wrap {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: var(--s4);
}

.demo-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s2);
}

.demo-input-row input {
  width: 100%;
  border: 1px solid var(--border-md);
  background: rgba(5, 8, 12, 0.8);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
}

.demo-input-row input:focus {
  outline: none;
  border-color: rgba(74, 159, 212, 0.55);
}

.demo-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s2);
  margin-top: var(--s3);
}

.demo-card {
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  padding: var(--s3);
  transition: transform .22s ease, border-color .22s ease;
}

.demo-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-lg);
}

.demo-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s2);
}

.demo-card h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.demo-confidence {
  font-size: 11px;
  color: #90b6d5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-meta {
  margin-top: 8px;
  font-size: 13px;
  color: #b7c2d0;
  line-height: 1.6;
}

.demo-reason {
  margin-top: 10px;
  font-size: 13px;
  color: #dce4ef;
}

.demo-card .btn-ghost {
  margin-top: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s2);
}

.pricing-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  padding: var(--s4);
}

.pricing-card.featured {
  border-color: rgba(225, 92, 49, 0.46);
  box-shadow: 0 12px 36px rgba(225, 92, 49, 0.12);
}

.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.price {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 600;
  color: #f5f8fc;
}

.price span {
  font-size: 14px;
  font-weight: 400;
  color: #b6c1d0;
}

@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@media (max-width: 900px) {
  .hero-bg-video {
    opacity: 0.34;
  }

  .demo-results,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .cinema-card {
    max-height: none;
    overflow: hidden;
  }

  .demo-input-row {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: clamp(34px, 10.8vw, 64px);
    max-width: 12ch;
  }

  .hero-audio-toggle {
    top: 74px;
    right: 14px;
    font-size: 10px;
    padding: 7px 9px;
  }
}
