/* =========================================================
   REMOTE4REAL — Vercel Showcase Design System
   Engineered by alchemist4real
   Monochromatic Swiss / Braun Aesthetic • OffBit Typography
   Zero Emoji • Zero Overflow • 100% Responsive
   ========================================================= */

@font-face {
  font-family: 'OffBit DotBold';
  src: url('../fonts/OffBit-DotBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OffBit Dot';
  src: url('../fonts/OffBit-Dot.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OffBit';
  src: url('../fonts/OffBit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OffBit Bold';
  src: url('../fonts/OffBit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-page: #ffffff;
  --bg-subtle: #f8f8fa;
  --bg-surface: #f1f1f4;
  --bg-card: #ffffff;
  --bg-dark: #000000;
  --bg-dark-surface: #121214;

  --ink-primary: #000000;
  --ink-secondary: #4a4a52;
  --ink-tertiary: #848490;
  --ink-subtle: #bcbcc4;
  --ink-inverse: #ffffff;

  --border-light: rgba(0, 0, 0, 0.1);
  --border-medium: rgba(0, 0, 0, 0.24);
  --border-dark: #000000;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  --font-mono: 'OffBit Dot', 'Courier New', Courier, monospace;
  --font-heading: 'OffBit DotBold', 'OffBit Bold', 'Courier New', Courier, monospace;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.12);
  --shadow-retro: 3px 3px 0px #000000;
  --shadow-retro-lg: 5px 5px 0px #000000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--ink-primary);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: var(--font-mono);
}

.heading-mono {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

/* CONTAINER & WRAPPERS */
.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   1. NAVIGATION HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-dark);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink-primary);
}

.brand-badge {
  background: var(--ink-primary);
  color: var(--ink-inverse);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  letter-spacing: 1px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-author-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  background: var(--bg-surface);
  color: var(--ink-secondary);
  border: 1px solid var(--border-medium);
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--ink-primary);
}

.nav-cta {
  background: var(--ink-primary);
  color: var(--ink-inverse) !important;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--border-dark);
  box-shadow: var(--shadow-retro);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.nav-cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px #000000;
}

/* =========================================================
   2. HERO SECTION
   ========================================================= */
.hero-section {
  padding: 80px 0 60px;
  border-bottom: 2px solid var(--border-dark);
  background: radial-gradient(circle at top right, #f4f4f7 0%, #ffffff 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-dark);
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 20px;
  border-radius: var(--radius-xs);
  box-shadow: 2px 2px 0px #000000;
}

.live-pulse {
  width: 7px;
  height: 7px;
  background: #000000;
  border-radius: 1px;
  animation: blink 1.4s infinite ease-in-out;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink-primary);
  color: var(--ink-inverse);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 22px;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-xs);
  text-decoration: none;
  box-shadow: var(--shadow-retro);
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #000000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  color: var(--ink-primary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 22px;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-xs);
  text-decoration: none;
  box-shadow: var(--shadow-retro);
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-secondary:hover {
  background: var(--bg-surface);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #000000;
}

.hero-telemetry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.telemetry-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
}

.hero-card-preview {
  background: var(--bg-card);
  border: 2px solid var(--border-dark);
  box-shadow: var(--shadow-retro-lg);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hero-card-header {
  background: var(--bg-subtle);
  border-bottom: 2px solid var(--border-dark);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--border-dark);
  background: var(--bg-card);
}

.t-dot.active {
  background: var(--ink-primary);
}

.hero-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border-light);
  font-family: var(--font-mono);
  font-size: 12px;
}

.spec-label {
  color: var(--ink-secondary);
  font-weight: 600;
}

.spec-value {
  font-weight: 800;
  color: var(--ink-primary);
}

/* =========================================================
   3. 4 CORE MODES SECTION
   ========================================================= */
.section-padding {
  padding: 70px 0;
  border-bottom: 2px solid var(--border-dark);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-dark);
  padding: 3px 10px;
  margin-bottom: 12px;
  box-shadow: 2px 2px 0px #000000;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--ink-secondary);
  font-size: 16px;
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.mode-card {
  background: var(--bg-card);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-retro);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.mode-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0px #000000;
}

.mode-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-tertiary);
  margin-bottom: 8px;
}

.mode-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.mode-card-text {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.mode-feature-list {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.mode-feature-list li::before {
  content: "» ";
  font-weight: bold;
}

/* =========================================================
   4. LIVE INTERACTIVE SIMULATOR
   ========================================================= */
.simulator-container {
  background: var(--bg-subtle);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-retro-lg);
  overflow: hidden;
}

.simulator-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-dark);
  background: var(--bg-surface);
  overflow-x: auto;
}

.sim-tab-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 16px;
  background: transparent;
  border: none;
  border-right: 1.5px solid var(--border-dark);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  color: var(--ink-secondary);
  transition: all 0.15s ease;
  text-align: center;
}

.sim-tab-btn:last-child {
  border-right: none;
}

.sim-tab-btn.active {
  background: var(--ink-primary);
  color: var(--ink-inverse);
}

.sim-tab-btn:hover:not(.active) {
  background: #e8e8ec;
  color: var(--ink-primary);
}

.sim-view-wrapper {
  padding: 24px;
  background: #ffffff;
  min-height: 380px;
}

.sim-mode-panel {
  display: none;
}

.sim-mode-panel.active {
  display: block;
}

/* SIMULATOR: TRACKPAD */
.sim-trackpad-box {
  height: 240px;
  background: var(--bg-subtle);
  border: 2px dashed var(--border-medium);
  border-radius: var(--radius-xs);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: crosshair;
  position: relative;
  user-select: none;
  overflow: hidden;
}

.sim-trackpad-cursor {
  width: 16px;
  height: 16px;
  background: #000000;
  position: absolute;
  pointer-events: none;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease-out;
}

.sim-hud-status {
  position: absolute;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid var(--border-dark);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
}

.sim-chip-bar {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.sim-key-chip {
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 2px 2px 0px #000000;
  transition: all 0.1s ease;
}

.sim-key-chip:hover, .sim-key-chip:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0px #000000;
  background: var(--ink-primary);
  color: var(--ink-inverse);
}

/* SIMULATOR: SCREEN MIRROR */
.sim-screen-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sim-screen-display {
  width: 100%;
  max-width: 680px;
  height: 240px;
  background: #0a0a0c;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-xs);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  color: #ffffff;
  font-family: var(--font-mono);
}

.sim-screen-top-hud {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  opacity: 0.8;
}

.sim-screen-center-hud {
  text-align: center;
  align-self: center;
}

.sim-screen-bot-hud {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  opacity: 0.6;
}

/* SIMULATOR: MEDIA REMOTE */
.sim-media-deck {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sim-media-display {
  background: var(--bg-subtle);
  border: 2px solid var(--border-dark);
  padding: 18px;
  border-radius: var(--radius-xs);
}

.sim-track-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.sim-track-artist {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-secondary);
}

.sim-media-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.sim-media-btn {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 2px solid var(--border-dark);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 2px 2px 0px #000000;
  transition: all 0.1s ease;
}

.sim-media-btn:hover {
  background: var(--ink-primary);
  color: var(--ink-inverse);
  transform: translate(-1px, -1px);
}

/* SIMULATOR: GAMEPAD */
.sim-gamepad-deck {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 24px;
}

.sim-stick-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sim-joystick {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--border-dark);
  background: var(--bg-subtle);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}

.sim-joystick-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink-primary);
  border: 2px solid #ffffff;
  position: absolute;
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s ease-out;
}

.sim-abxy-cluster {
  width: 120px;
  height: 120px;
  position: relative;
}

.sim-btn-letter {
  width: 34px;
  height: 34px;
  border: 2px solid var(--border-dark);
  background: var(--bg-card);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  box-shadow: 2px 2px 0px #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-btn-letter:hover, .sim-btn-letter:active {
  background: var(--ink-primary);
  color: var(--ink-inverse);
}

.sim-btn-y { top: 0; left: 43px; }
.sim-btn-x { top: 43px; left: 0; }
.sim-btn-b { top: 43px; right: 0; }
.sim-btn-a { bottom: 0; left: 43px; }

/* =========================================================
   5. ARCHITECTURE & CODEBASE SECTION
   ========================================================= */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.arch-card {
  background: var(--bg-card);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-retro);
}

.arch-file-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  padding: 4px 8px;
  margin-bottom: 12px;
  border-radius: var(--radius-xs);
}

.arch-desc {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
}

.code-snippet-box {
  background: #0d0d10;
  color: #f1f1f4;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 12px;
  border-radius: var(--radius-xs);
  border: 1px solid #282830;
  overflow-x: auto;
  line-height: 1.45;
}

/* =========================================================
   6. INSTALLERS & DOWNLOAD HUB
   ========================================================= */
.installers-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.installer-card {
  background: var(--bg-card);
  border: 2.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-retro-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.platform-badge {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  background: var(--ink-primary);
  color: var(--ink-inverse);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.installer-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.installer-desc {
  font-size: 14px;
  color: var(--ink-secondary);
  margin-bottom: 20px;
}

.installer-steps {
  list-style: decimal inside;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-primary);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.installer-steps li span {
  font-weight: bold;
}

.copy-command-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-dark);
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  margin-top: auto;
}

.copy-btn {
  background: var(--ink-primary);
  color: var(--ink-inverse);
  border: none;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.copy-btn:hover {
  opacity: 0.85;
}

/* =========================================================
   7. LATENCY BENCHMARK TABLE
   ========================================================= */
.table-wrapper {
  overflow-x: auto;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-retro);
}

.benchmark-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: left;
}

.benchmark-table th {
  background: var(--bg-surface);
  padding: 14px 18px;
  border-bottom: 2px solid var(--border-dark);
  font-weight: 900;
  font-family: var(--font-heading);
}

.benchmark-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
}

.benchmark-table tr:last-child td {
  border-bottom: none;
}

.benchmark-table tr.highlight-row {
  background: #fbfbfd;
  font-weight: bold;
}

.badge-winner {
  background: var(--ink-primary);
  color: var(--ink-inverse);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: bold;
}

/* =========================================================
   8. FOOTER
   ========================================================= */
.site-footer {
  padding: 60px 0 40px;
  background: var(--bg-subtle);
  border-top: 2px solid var(--border-dark);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-credits {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-secondary);
}

.footer-author-highlight {
  font-weight: 900;
  color: var(--ink-primary);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-primary);
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-tertiary);
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 32px;
  }
}

@media (max-width: 680px) {
  .hero-title {
    font-size: 26px;
  }
  .hero-action-row {
    flex-direction: column;
    align-items: stretch;
  }
  .simulator-tabs {
    flex-wrap: wrap;
  }
  .sim-tab-btn {
    flex: 1 1 45%;
    font-size: 11px;
    padding: 8px;
  }
  .sim-chip-bar {
    flex-wrap: wrap;
    gap: 4px;
  }
  .sim-key-chip {
    font-size: 10px;
    padding: 3px 6px;
  }
  .telemetry-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .copy-command-box {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    word-break: break-all;
  }
  .copy-btn {
    align-self: flex-end;
  }
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .telemetry-grid {
    grid-template-columns: 1fr;
  }
  .sim-tab-btn {
    flex: 1 1 100%;
  }
  .brand-text {
    font-size: 14px;
  }
  .brand-author-tag {
    display: none;
  }
}
