/* ═══════════════════════════════════════════════════════
   ORBITAL RADAR — DEEP SPACE TRACKER STYLES v2
   Shared stylesheet for /deep-space/* pages
   On-brand with library-styles.css patterns
   ═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'JetBrains Mono', 'Fira Mono', 'Consolas', monospace;
  color: rgba(255,255,255,0.92);
  background: #070a18;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── STARFIELD BACKGROUND ──────────────────────────── */
.or-ds-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(96,234,254,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255,224,96,0.03) 0%, transparent 50%),
    radial-gradient(1200px 800px at 50% 20%, #0a0e22 0%, #070a18 60%, #000 100%);
}
.or-ds-stars {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(255,224,96,0.4) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 52% 4%, rgba(255,255,255,0.35) 50%, transparent 100%),
    radial-gradient(1px 1px at 70% 60%, rgba(96,234,254,0.4) 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 25%, rgba(255,255,255,0.4) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 75%, rgba(255,224,96,0.3) 50%, transparent 100%),
    radial-gradient(1px 1px at 60% 90%, rgba(255,255,255,0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 15% 85%, rgba(96,234,254,0.3) 50%, transparent 100%);
  animation: or-ds-twinkle 8s ease-in-out infinite alternate;
}
@keyframes or-ds-twinkle { 0% { opacity: 0.6; } 100% { opacity: 1; } }

/* ── TOPBAR (identical to library) ─────────────────── */
.or-ds-topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(7,10,24,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,224,96,0.15);
}
.or-ds-topbar-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: #ffe060;
  font-family: 'Orbitron', monospace; font-weight: 700;
  font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
}
.or-ds-topbar-brand img { width: 28px; height: 28px; border-radius: 6px; }
.or-ds-topbar-nav { display: flex; gap: 6px; align-items: center; }
.or-ds-topbar-link {
  color: rgba(255,224,96,0.7); text-decoration: none; font-size: 12px;
  font-family: 'Orbitron', monospace; font-weight: 600; letter-spacing: 1px;
  padding: 6px 12px; border-radius: 8px; border: 1px solid transparent;
  transition: all 0.2s;
}
.or-ds-topbar-link:hover { color: #ffe060; border-color: rgba(255,224,96,0.3); background: rgba(255,224,96,0.06); }
.or-ds-topbar-link.active { color: #ffe060; border-color: rgba(255,224,96,0.4); background: rgba(255,224,96,0.08); }
.or-ds-hamburger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.or-ds-hamburger-bar { width: 20px; height: 2px; background: #ffe060; border-radius: 2px; transition: 0.2s; }

/* ── CONTENT WRAPPER ───────────────────────────────── */
.or-ds-wrap {
  position: relative; z-index: 1;
  max-width: 1120px; margin: 0 auto; padding: 0 28px 80px;
}
.or-ds-wrap-full {
  position: relative; z-index: 1;
  max-width: 100%; margin: 0 auto; padding: 0;
}

/* ── BREADCRUMBS ───────────────────────────────────── */
.or-ds-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 28px 0; font-size: 12px; color: rgba(255,255,255,0.4);
}
.or-ds-breadcrumb a { color: rgba(255,224,96,0.6); text-decoration: none; transition: color 0.2s; }
.or-ds-breadcrumb a:hover { color: #ffe060; }
.or-ds-breadcrumb .sep { opacity: 0.4; }

/* ═══════════════════════════════════════════════════════
   3D CANVAS — IMMERSIVE FULL-BLEED VIEWER
   ═══════════════════════════════════════════════════════ */
.or-ds-canvas-wrap {
  position: relative; width: 100%;
  height: clamp(480px, 68vh, 820px);
  background: #050812;
  overflow: hidden;
  margin: 0;
  border-bottom: 1px solid rgba(255,224,96,0.06);
}
.or-ds-canvas-wrap canvas {
  display: block; width: 100%; height: 100%;
}
.or-ds-canvas-loading {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(5,8,18,0.95); color: rgba(255,255,255,0.6);
  font-size: 13px; gap: 16px; z-index: 10;
  transition: opacity 0.6s;
}
.or-ds-canvas-loading.hidden { opacity: 0; pointer-events: none; }
.or-ds-canvas-spinner {
  width: 36px; height: 36px; border: 3px solid rgba(255,224,96,0.2);
  border-top-color: #ffe060; border-radius: 50%;
  animation: or-ds-spin 1s linear infinite;
}
@keyframes or-ds-spin { to { transform: rotate(360deg); } }

/* Vignette overlay on canvas edges for depth */
.or-ds-canvas-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(7,10,24,0.5) 0%, transparent 8%),
    linear-gradient(to top, rgba(7,10,24,0.7) 0%, transparent 12%),
    linear-gradient(to right, rgba(7,10,24,0.35) 0%, transparent 6%),
    linear-gradient(to left, rgba(7,10,24,0.35) 0%, transparent 6%);
}

/* ═══ VIEW CONTROLS — FLOATING PILL BAR ═══ */
.or-ds-controls {
  position: absolute; bottom: 56px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: row; gap: 4px; z-index: 20;
  background: rgba(7,10,24,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,224,96,0.12);
  border-radius: 14px; padding: 5px 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.or-ds-ctrl-btn {
  background: transparent; border: 1px solid transparent;
  color: rgba(255,224,96,0.55); font-family: 'Orbitron', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
  padding: 7px 14px; border-radius: 10px; cursor: pointer;
  transition: all 0.22s; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  text-transform: uppercase;
}
.or-ds-ctrl-btn:hover {
  color: #ffe060; background: rgba(255,224,96,0.06);
}
.or-ds-ctrl-btn.active {
  color: #070a18; background: #ffe060;
  border-color: #ffe060;
  box-shadow: 0 0 12px rgba(255,224,96,0.25);
}
.or-ds-ctrl-btn .ctrl-ico {
  font-size: 13px; line-height: 1; display: inline-flex;
}
/* Separator between view group and toggle group */
.or-ds-ctrl-sep {
  width: 1px; margin: 4px 4px;
  background: rgba(255,224,96,0.15);
}
/* Toggle buttons use cyan when active */
.or-ds-ctrl-btn.toggle-btn.active {
  color: #070a18; background: #60eafe;
  border-color: #60eafe;
  box-shadow: 0 0 12px rgba(96,234,254,0.25);
}

/* ═══ DSN STATUS STRIP ═══ */
.or-ds-dsn-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px;
  background: linear-gradient(transparent, rgba(5,8,18,0.94));
  font-size: 11px; color: rgba(255,255,255,0.6);
  overflow-x: auto; z-index: 20;
}
.or-ds-dsn-strip::-webkit-scrollbar { height: 3px; }
.or-ds-dsn-strip::-webkit-scrollbar-thumb { background: rgba(96,234,254,0.2); border-radius: 2px; }
.or-ds-dsn-label {
  color: rgba(96,234,254,0.45); font-size: 9px;
  font-family: 'Orbitron', monospace; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  flex-shrink: 0; padding-right: 4px;
}
.or-ds-dsn-link {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 8px;
  background: rgba(96,234,254,0.05); border: 1px solid rgba(96,234,254,0.12);
  color: rgba(96,234,254,0.7); white-space: nowrap; text-decoration: none;
  transition: all 0.2s; font-size: 10px;
}
.or-ds-dsn-link.active { border-color: rgba(96,234,254,0.4); color: #60eafe; }
.or-ds-dsn-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #60eafe; animation: or-ds-pulse 2s ease-in-out infinite;
}
@keyframes or-ds-pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ═══ INFO PANEL (side panel on canvas) ═══ */
.or-ds-info-panel {
  position: absolute; top: 16px; right: 16px;
  width: 300px; max-height: calc(100% - 80px);
  background: rgba(7,10,24,0.88);
  border: 1px solid rgba(255,224,96,0.1);
  border-radius: 16px; padding: 20px; overflow-y: auto;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 20;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}
.or-ds-info-panel.hidden { transform: translateX(20px); opacity: 0; pointer-events: none; }
.or-ds-info-panel::-webkit-scrollbar { width: 5px; }
.or-ds-info-panel::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 3px; }
.or-ds-info-panel::-webkit-scrollbar-thumb { background: rgba(255,224,96,0.2); border-radius: 3px; }
.or-ds-info-panel { scrollbar-width: thin; scrollbar-color: rgba(255,224,96,0.2) rgba(255,255,255,0.02); }
.or-ds-info-panel h3 {
  font-family: 'Orbitron', monospace; font-size: 13px;
  color: #ffe060; letter-spacing: 1px; margin-bottom: 14px;
}
.or-ds-info-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5); width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; border-radius: 8px;
  transition: all 0.2s;
}
.or-ds-info-close:hover { color: #ffe060; border-color: rgba(255,224,96,0.3); background: rgba(255,224,96,0.06); }

/* ── STAT ROW ───────────────────────────────── */
.or-ds-stat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
}
.or-ds-stat-label { color: rgba(255,255,255,0.45); }
.or-ds-stat-val { color: rgba(255,255,255,0.9); font-variant-numeric: tabular-nums; }
.or-ds-stat-val.gold { color: #ffe060; }
.or-ds-stat-val.cyan { color: #60eafe; }
.or-ds-stat-val.red { color: #e84142; }

/* ═══════════════════════════════════════════════════════
   HERO SECTION — COMPACT WITH INTEGRATED STATS
   ═══════════════════════════════════════════════════════ */
.or-ds-hero {
  text-align: center; padding: 40px 28px 20px;
  position: relative;
}
.or-ds-hero h1 {
  font-family: 'Orbitron', monospace; font-weight: 700;
  font-size: clamp(24px, 4.5vw, 42px);
  color: #ffe060; letter-spacing: 2px; line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 0 40px rgba(255,224,96,0.15);
}
.or-ds-hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.65);
  max-width: 680px; margin: 0 auto 16px; line-height: 1.7;
}
.or-ds-hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.or-ds-hero-stat-val { color: #ffe060; font-weight: 600; }
.or-ds-hero-stat-val.cyan { color: #60eafe; }

/* ── LIVE BADGE ────────────────────────────────────── */
.or-ds-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(96,234,254,0.08); border: 1px solid rgba(96,234,254,0.2);
  border-radius: 999px; padding: 4px 14px; font-size: 10px;
  font-family: 'Orbitron', monospace; font-weight: 700;
  color: #60eafe; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.or-ds-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #60eafe;
  animation: or-ds-pulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   MISSION DIRECTORY — REDESIGNED CARD GRID
   ═══════════════════════════════════════════════════════ */
.or-ds-section {
  margin-top: 24px; padding: 0 28px;
  max-width: 1120px; margin-left: auto; margin-right: auto;
}
.or-ds-section-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,224,96,0.08);
}
.or-ds-section-icon {
  width: 42px; height: 42px; display: flex;
  align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(255,224,96,0.06);
  border: 1px solid rgba(255,224,96,0.15); font-size: 20px; flex-shrink: 0;
}
.or-ds-section-title {
  font-family: 'Orbitron', monospace; font-weight: 700;
  font-size: 15px; color: #ffe060; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.or-ds-section-count {
  font-size: 11px; color: rgba(255,255,255,0.4);
  margin-left: auto; font-family: 'JetBrains Mono', monospace;
  display: flex; align-items: center; gap: 6px;
}
.or-ds-section-intro {
  font-size: 14px; color: rgba(255,255,255,0.6);
  line-height: 1.75; margin-bottom: 24px;
}
.or-ds-section-intro a { color: #60eafe; text-decoration: none; }
.or-ds-section-intro a:hover { text-decoration: underline; }

.or-ds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .or-ds-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .or-ds-grid { grid-template-columns: 1fr; } }

/* ═══ MISSION CARDS — VERTICAL LAYOUT ═══ */
.or-ds-card {
  display: flex; flex-direction: column;
  padding: 20px 22px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.05);
  text-decoration: none; color: inherit;
  transition: all 0.28s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.or-ds-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,224,96,0.15), transparent);
  opacity: 0; transition: opacity 0.28s;
}
.or-ds-card:hover {
  border-color: rgba(255,224,96,0.2);
  background: rgba(255,224,96,0.025);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,224,96,0.08);
}
.or-ds-card:hover::before { opacity: 1; }

/* Card header row — icon + title + status */
.or-ds-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.or-ds-card-icon {
  font-size: 24px; flex-shrink: 0;
  width: 42px; height: 42px; display: flex;
  align-items: center; justify-content: center;
  border-radius: 11px; background: rgba(255,224,96,0.05);
  border: 1px solid rgba(255,224,96,0.1);
}
.or-ds-card-title {
  font-family: 'Orbitron', monospace; font-size: 13px;
  font-weight: 700; color: #ffe060; letter-spacing: 0.5px;
  flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.or-ds-card-type {
  font-size: 9px; font-family: 'Orbitron', monospace;
  font-weight: 700; letter-spacing: 0.8px;
  padding: 3px 8px; border-radius: 6px;
  flex-shrink: 0; text-transform: uppercase;
}
.or-ds-card-type[data-type="live"] { background: rgba(96,234,254,0.08); color: #60eafe; border: 1px solid rgba(96,234,254,0.18); }
.or-ds-card-type[data-type="cruise"] { background: rgba(255,224,96,0.06); color: rgba(255,224,96,0.8); border: 1px solid rgba(255,224,96,0.12); }

/* Card body */
.or-ds-card-body { flex: 1; min-width: 0; }
.or-ds-card-desc {
  font-size: 12px; color: rgba(255,255,255,0.5);
  line-height: 1.6; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 12px;
}
.or-ds-card-meta {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-size: 11px; color: rgba(255,255,255,0.38);
}
.or-ds-card-meta span { display: flex; align-items: center; gap: 4px; }
.or-ds-card-arrow {
  color: rgba(255,224,96,0.2); font-size: 16px;
  position: absolute; top: 50%; right: 18px;
  transform: translateY(-50%);
  transition: color 0.2s, transform 0.2s;
}
.or-ds-card:hover .or-ds-card-arrow { color: #ffe060; transform: translateY(-50%) translateX(3px); }

/* ═══ FEATURED / HERO CARDS ═══ */
.or-ds-card-hero {
  background: linear-gradient(135deg, rgba(255,224,96,0.025) 0%, rgba(96,234,254,0.015) 100%);
  border-color: rgba(255,224,96,0.12);
  padding: 24px 26px 20px;
}
@media (max-width: 560px) { .or-ds-card-hero { padding: 20px 22px 18px; } }
.or-ds-card-hero .or-ds-card-desc {
  -webkit-line-clamp: 3;
}
.or-ds-card-hero .or-ds-card-icon {
  width: 48px; height: 48px; font-size: 26px;
  background: rgba(255,224,96,0.06);
  border-color: rgba(255,224,96,0.15);
}

/* ── ROADSTER PAGE SPECIFIC ───────────────────────── */
.or-ds-roadster-hero {
  text-align: center; padding: 40px 28px 20px;
  position: relative;
}
.or-ds-roadster-hero h1 {
  font-family: 'Orbitron', monospace; font-weight: 700;
  font-size: clamp(22px, 4vw, 38px); color: #e84142;
  letter-spacing: 2px; line-height: 1.2; margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(232,65,66,0.2);
}
.or-ds-roadster-hero .or-ds-hero-sub { color: rgba(255,255,255,0.65); }

.or-ds-roadster-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px; padding: 0 28px; margin: 20px auto; max-width: 1120px;
}
.or-ds-rstat {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 16px 18px; text-align: center;
  transition: border-color 0.2s;
}
.or-ds-rstat:hover { border-color: rgba(232,65,66,0.2); }
.or-ds-rstat-label {
  font-size: 10px; font-family: 'Orbitron', monospace; font-weight: 700;
  color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 6px;
}
.or-ds-rstat-val {
  font-size: clamp(18px, 3vw, 28px); font-weight: 700;
  color: #ffe060; font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.or-ds-rstat-val.red { color: #e84142; }
.or-ds-rstat-val.cyan { color: #60eafe; }
.or-ds-rstat-sub {
  font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 4px;
}

/* ── CONTENT ARTICLE ──────────────────────────────── */
.or-ds-article {
  max-width: 780px; margin: 24px auto 0; padding: 0 28px;
}
.or-ds-article:empty { margin: 0; }
.or-ds-article + .or-ds-article { margin-top: 0; }
.or-ds-article h2 {
  font-family: 'Orbitron', monospace; font-size: 16px;
  color: #ffe060; letter-spacing: 1px; margin: 32px 0 12px;
}
.or-ds-article p {
  font-size: 14px; color: rgba(255,255,255,0.75);
  line-height: 1.8; margin-bottom: 16px;
}
.or-ds-article a { color: #60eafe; text-decoration: none; }
.or-ds-article a:hover { text-decoration: underline; }

/* ── TIMELINE ─────────────────────────────────────── */
.or-ds-timeline {
  position: relative; padding-left: 28px; margin: 24px 0;
}
.or-ds-timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: rgba(255,224,96,0.1);
}
.or-ds-timeline-item {
  position: relative; margin-bottom: 20px; padding-left: 20px;
}
.or-ds-timeline-item::before {
  content: ''; position: absolute; left: -24px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #ffe060; border: 2px solid #070a18;
}
.or-ds-timeline-date {
  font-size: 11px; font-family: 'Orbitron', monospace;
  color: rgba(255,224,96,0.6); letter-spacing: 1px; margin-bottom: 4px;
}
.or-ds-timeline-text {
  font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   DSN LIVE STATION PANELS
   ═══════════════════════════════════════════════════════ */
.or-ds-dsn-stations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.or-ds-dsn-loading {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 40px; color: rgba(255,255,255,0.4); font-size: 13px;
}

.or-dsn-station {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px; padding: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.or-dsn-station.active {
  border-color: rgba(96,234,254,0.15);
  box-shadow: 0 0 24px rgba(96,234,254,0.04);
}

/* Station header */
.or-dsn-station-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.or-dsn-station-flag {
  font-size: 22px; flex-shrink: 0;
}
.or-dsn-station-info { flex: 1; min-width: 0; }
.or-dsn-station-name {
  font-family: 'Orbitron', monospace; font-weight: 700;
  font-size: 12px; color: #ffe060; letter-spacing: 1px;
  text-transform: uppercase;
}
.or-dsn-station-loc {
  font-size: 10px; color: rgba(255,255,255,0.3);
  margin-top: 2px; letter-spacing: 0.5px;
}
.or-dsn-station-status { flex-shrink: 0; }
.or-dsn-status-badge {
  font-family: 'Orbitron', monospace; font-size: 9px;
  font-weight: 700; letter-spacing: 0.8px;
  padding: 4px 10px; border-radius: 8px;
  display: flex; align-items: center; gap: 5px;
}
.or-dsn-status-badge.on {
  background: rgba(96,234,254,0.08); color: #60eafe;
  border: 1px solid rgba(96,234,254,0.18);
}
.or-dsn-status-badge.off {
  background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Dish indicators */
.or-dsn-dishes {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.or-dsn-dish {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; position: relative;
  padding: 6px 8px; border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
}
.or-dsn-dish.transmitting {
  background: rgba(96,234,254,0.04);
  border-color: rgba(96,234,254,0.15);
}
.or-dsn-dish.transmitting svg {
  filter: drop-shadow(0 0 4px rgba(96,234,254,0.4));
}
.or-dsn-dish-id {
  font-size: 9px; font-family: 'Orbitron', monospace;
  color: rgba(255,255,255,0.35); letter-spacing: 0.5px;
  font-weight: 700;
}
.or-dsn-dish.transmitting .or-dsn-dish-id { color: rgba(96,234,254,0.7); }

/* Pulsing signal emanating from active dish */
.or-dsn-dish-signal {
  position: absolute; top: 2px; right: 2px;
  width: 6px; height: 6px; border-radius: 50%;
  background: #60eafe;
  animation: or-dsn-sig-pulse 1.5s ease-out infinite;
}
@keyframes or-dsn-sig-pulse {
  0% { box-shadow: 0 0 0 0 rgba(96,234,254,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(96,234,254,0); }
  100% { box-shadow: 0 0 0 0 rgba(96,234,254,0); }
}

/* Signal links */
.or-dsn-signals {
  display: flex; flex-direction: column; gap: 6px;
}
.or-dsn-signals-label {
  font-family: 'Orbitron', monospace; font-size: 9px;
  color: rgba(96,234,254,0.4); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 4px;
}
.or-dsn-signal-row {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px; border-radius: 8px;
  background: rgba(96,234,254,0.025);
  border: 1px solid rgba(96,234,254,0.06);
  font-size: 11px;
}
.or-dsn-signal-dish {
  font-family: 'Orbitron', monospace; font-size: 10px;
  color: rgba(96,234,254,0.55); font-weight: 700;
  min-width: 44px; flex-shrink: 0;
}
.or-dsn-signal-dir {
  font-size: 11px; flex-shrink: 0; width: 16px; text-align: center;
}
.or-dsn-signal-dir.uplink { color: rgba(255,224,96,0.6); }
.or-dsn-signal-dir.downlink { color: rgba(96,234,254,0.6); }
.or-dsn-signal-dir.bidirectional { color: rgba(160,212,255,0.7); }
.or-dsn-signal-beam {
  display: flex; align-items: center; gap: 0;
  flex: 0 0 36px; overflow: hidden; position: relative;
}
.or-dsn-beam-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(96,234,254,0.15), rgba(96,234,254,0.5));
  animation: or-dsn-beam-flow 1.2s linear infinite;
}
@keyframes or-dsn-beam-flow {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}
.or-dsn-beam-arrow {
  color: #60eafe; font-size: 12px; line-height: 1;
  animation: or-dsn-arrow-pulse 1.2s ease-in-out infinite;
}
@keyframes or-dsn-arrow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.or-dsn-signal-target {
  color: #60eafe; font-weight: 600;
  flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.or-dsn-signal-delay {
  color: rgba(255,255,255,0.3); font-size: 10px;
  flex-shrink: 0; margin-left: auto;
}
.or-dsn-no-signal {
  font-size: 12px; color: rgba(255,255,255,0.2);
  text-align: center; padding: 12px 0;
}
.or-dsn-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 32px 20px;
  font-size: 13px; color: rgba(255,255,255,0.35);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 12px;
}

/* ── FAQ SECTION ──────────────────────────────────── */
.or-ds-faq { margin: 40px 0; }
.or-ds-faq-item {
  border: 1px solid rgba(255,255,255,0.05); border-radius: 12px;
  margin-bottom: 8px; overflow: hidden;
}
.or-ds-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.015); transition: background 0.2s;
}
.or-ds-faq-q:hover { background: rgba(255,224,96,0.03); }
.or-ds-faq-q::after {
  content: '+'; font-size: 18px; color: rgba(255,224,96,0.5);
  transition: transform 0.3s;
}
.or-ds-faq-item.open .or-ds-faq-q::after { content: '−'; color: #ffe060; }
.or-ds-faq-a {
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7;
}
.or-ds-faq-item.open .or-ds-faq-a { max-height: 400px; padding: 0 20px 18px; }

/* ── FOOTER ───────────────────────────────────────── */
.or-ds-footer {
  margin-top: 64px; padding: 28px 0;
  border-top: 1px solid rgba(255,224,96,0.08);
}
.or-ds-footer-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 32px; max-width: 1120px; margin: 0 auto; padding: 0 28px;
}
.or-ds-footer-col { display: flex; flex-direction: column; gap: 0; }
.or-ds-footer-col a {
  display: block; color: rgba(255,255,255,0.4); text-decoration: none;
  font-size: 12px; padding: 3px 0; transition: color 0.2s;
}
.or-ds-footer-col a:hover { color: #ffe060; }
.or-ds-footer-heading {
  font-family: 'Orbitron', monospace; font-size: 11px;
  color: #ffe060; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px; font-weight: 700;
}
.or-ds-footer a { color: rgba(255,224,96,0.5); text-decoration: none; transition: color 0.2s; }
.or-ds-footer a:hover { color: #ffe060; }
.or-ds-footer-bottom {
  text-align: center; margin-top: 28px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.or-ds-footer-bottom a { color: rgba(255,224,96,0.5); text-decoration: none; }

/* ── ANIMATIONS ───────────────────────────────────── */
.or-ds-fade-in {
  opacity: 0; transform: translateY(12px);
  animation: or-ds-fadeUp 0.6s ease forwards;
}
@keyframes or-ds-fadeUp { to { opacity: 1; transform: none; } }
.or-ds-fade-in:nth-child(2) { animation-delay: 0.08s; }
.or-ds-fade-in:nth-child(3) { animation-delay: 0.16s; }
.or-ds-fade-in:nth-child(4) { animation-delay: 0.24s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .or-ds-topbar-nav { display: none; }
  .or-ds-topbar-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,10,24,0.98); padding: 16px;
    border-bottom: 1px solid rgba(255,224,96,0.15);
  }
  .or-ds-hamburger { display: flex; }
  .or-ds-canvas-wrap { height: clamp(360px, 55vh, 560px); }
  .or-ds-controls {
    bottom: 48px; left: 12px; right: 12px;
    transform: none;
    flex-wrap: wrap; justify-content: center;
    border-radius: 12px; padding: 4px;
  }
  .or-ds-ctrl-btn { font-size: 9px; padding: 6px 10px; }
  .or-ds-ctrl-btn .ctrl-ico { font-size: 12px; }
  .or-ds-info-panel {
    width: 100%; right: 0; top: auto; bottom: 0;
    max-height: 50%; border-radius: 16px 16px 0 0;
  }
  .or-ds-card-hero { grid-column: span 1; }
  .or-ds-hero { padding: 28px 20px 16px; }
  .or-ds-roadster-stats { grid-template-columns: repeat(2, 1fr); padding: 0 16px; }
  .or-ds-section { padding: 0 16px; }
  .or-ds-grid { grid-template-columns: 1fr; }
  .or-ds-dsn-stations { grid-template-columns: 1fr; }
  .or-ds-footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .or-ds-roadster-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .or-ds-rstat { padding: 10px 12px; }
  .or-ds-rstat-val { font-size: 20px; }
  .or-ds-ctrl-btn .ctrl-label { display: none; }
  .or-ds-ctrl-btn .ctrl-ico { font-size: 14px; }
  .or-ds-ctrl-btn { padding: 8px 10px; }
}

/* ── SKIP LINK ────────────────────────────────────── */
.or-skip-link {
  position: absolute; top: -100px; left: 16px;
  background: #ffe060; color: #070a18; padding: 8px 16px;
  border-radius: 8px; font-weight: 700; z-index: 999;
  transition: top 0.2s;
}
.or-skip-link:focus { top: 8px; }

/* ═══ UPCOMING EVENTS STRIP ═══════════════════════ */
.or-ds-events-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,224,96,0.15) transparent;
  -webkit-overflow-scrolling: touch;
}
.or-ds-events-strip::-webkit-scrollbar { height: 4px; }
.or-ds-events-strip::-webkit-scrollbar-thumb { background: rgba(255,224,96,0.15); border-radius: 4px; }
.or-ds-event-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,224,96,0.08);
  border-radius: 10px;
  min-width: 200px;
  transition: border-color 0.3s, background 0.3s;
}
.or-ds-event-card:hover {
  border-color: rgba(255,224,96,0.2);
  background: rgba(255,224,96,0.04);
}
.or-ds-event-date {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255,224,96,0.6);
  text-transform: uppercase;
}
.or-ds-event-text {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  line-height: 1.5;
}
.or-ds-event-text:hover { color: #ffe060; }
.or-ds-event-text strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

/* ═══ HELIOPAUSE VISUAL LABEL ═════════════════════ */
/* Handled via Three.js — these support the interstellar view */

@media (max-width: 600px) {
  .or-ds-events-strip { gap: 8px; }
  .or-ds-event-card { min-width: 180px; padding: 10px 14px; }
}

/* ═══ DSN STRIP — VISUAL CHIPS ═════════════════════ */
.or-ds-dsn-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Orbitron', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; color: rgba(96,234,254,0.6); text-transform: uppercase;
  padding: 4px 10px; white-space: nowrap;
}
.or-ds-dsn-pulse {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #60eafe; animation: or-dsn-pulse-glow 2s ease-in-out infinite;
}
@keyframes or-dsn-pulse-glow {
  0%,100% { opacity: 0.4; box-shadow: 0 0 3px rgba(96,234,254,0.2); }
  50% { opacity: 1; box-shadow: 0 0 8px rgba(96,234,254,0.6); }
}

.or-dsn-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; margin: 2px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(96,234,254,0.12);
  border-radius: 8px; white-space: nowrap;
  font-size: 11px; color: rgba(255,255,255,0.7);
  transition: border-color 0.3s, background 0.3s;
  animation: or-dsn-chip-in 0.5s ease-out;
}
.or-dsn-chip:hover {
  border-color: var(--sc, rgba(96,234,254,0.3));
  background: rgba(96,234,254,0.04);
}
@keyframes or-dsn-chip-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.or-dsn-chip-dish {
  display: inline-flex; align-items: center; gap: 4px;
}
.or-dsn-chip-svg {
  flex-shrink: 0;
  animation: or-dsn-dish-bob 3s ease-in-out infinite;
}
@keyframes or-dsn-dish-bob {
  0%,100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}
.or-dsn-chip-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  color: var(--sc, rgba(96,234,254,0.8));
  letter-spacing: 0.5px;
}

.or-dsn-chip-beam {
  display: inline-flex; align-items: center; gap: 3px;
  position: relative;
}
.or-dsn-chip-dir {
  font-size: 11px; font-weight: 700; line-height: 1;
}
.or-dsn-chip-dir.up { color: #ffe060; }
.or-dsn-chip-dir.down { color: #60eafe; }
.or-dsn-chip-dir.bidi { color: #51cf66; }

.or-dsn-chip-signal {
  display: inline-block; width: 20px; height: 2px;
  background: linear-gradient(90deg, var(--sc, #60eafe), transparent);
  border-radius: 1px; position: relative; overflow: hidden;
}
.or-dsn-chip-signal::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--sc, #60eafe), transparent);
  animation: or-dsn-signal-flow 1.5s linear infinite;
}
@keyframes or-dsn-signal-flow {
  0% { left: -100%; }
  100% { left: 100%; }
}

.or-dsn-chip-target {
  color: #60eafe; text-decoration: none; font-weight: 600;
  font-size: 11px; letter-spacing: 0.3px;
}
a.or-dsn-chip-target:hover { color: #ffe060; }

.or-dsn-chip-lt {
  font-size: 9px; color: rgba(255,224,96,0.45);
  font-family: 'JetBrains Mono', monospace;
  padding-left: 2px;
}

@media (max-width: 600px) {
  .or-dsn-chip { padding: 4px 8px; font-size: 10px; gap: 4px; }
  .or-dsn-chip-signal { width: 12px; }
  .or-dsn-chip-lt { display: none; }
}
