:root {
  --bg-0: #020611;
  --bg-1: #071326;
  --bg-2: #0d2348;
  --panel: rgba(8, 18, 38, 0.68);
  --panel-strong: rgba(5, 12, 28, 0.84);
  --line: rgba(122, 229, 255, 0.18);
  --line-strong: rgba(122, 229, 255, 0.34);
  --text: #e5edf8;
  --muted: #95a7c0;
  --cyan: #93c7dc;
  --teal: #86bda9;
  --gold: #c4a97a;
  --coral: #ff8f70;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --pointer-x: 50%;
  --pointer-y: 25%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(13, 35, 72, 0.72), transparent 42%),
    radial-gradient(circle at 10% 20%, rgba(92, 255, 198, 0.04), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(255, 209, 102, 0.05), transparent 24%),
    linear-gradient(180deg, #030712 0%, #010309 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
}

body::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(92, 255, 198, 0.07), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(122, 229, 255, 0.09), transparent 28%),
    radial-gradient(circle at 55% 78%, rgba(255, 143, 112, 0.05), transparent 30%);
  filter: blur(70px);
  opacity: 0.55;
  animation: aurora 18s linear infinite alternate;
}

body::after {
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(122, 229, 255, 0.07), transparent 18%);
  z-index: -3;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-layer-stars {
  z-index: -2;
  opacity: 0.26;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.2px),
    radial-gradient(circle at 80% 18%, rgba(122, 229, 255, 0.9) 0 1px, transparent 1.2px),
    radial-gradient(circle at 62% 72%, rgba(255, 209, 102, 0.75) 0 1px, transparent 1.4px),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.2px),
    radial-gradient(circle at 90% 66%, rgba(92, 255, 198, 0.75) 0 1px, transparent 1.4px);
  background-size: 240px 240px, 320px 320px, 460px 460px, 520px 520px, 660px 660px;
  animation: drift 90s linear infinite;
}

.bg-layer-grid {
  z-index: -1;
  background-image:
    linear-gradient(rgba(122, 229, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 229, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.12;
  transform: perspective(1200px) rotateX(78deg) translateY(28vh) scale(1.4);
  transform-origin: center top;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 68%, transparent 100%);
}

.bg-layer-noise {
  z-index: -1;
  opacity: 0.04;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0, transparent 45%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.16) 0, transparent 40%);
  mix-blend-mode: screen;
}

.site-header,
.section,
.site-footer {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.25rem;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(3, 8, 18, 0.54);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ffffff 0, #7ae5ff 32%, #5cffc6 68%, rgba(92, 255, 198, 0.16) 100%);
  box-shadow: 0 0 10px rgba(92, 255, 198, 0.45), 0 0 20px rgba(122, 229, 255, 0.22);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.site-nav,
.eyebrow,
.button,
.panel-kicker,
.hud,
.card-index,
.terminal-bar,
.scroll-cue {
  font-family: "Oxanium", sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.section {
  position: relative;
  padding: 4.5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-areas:
    "copy stage"
    "meta stage";
  gap: clamp(1.75rem, 3vw, 3rem);
  align-items: center;
  min-height: calc(100vh - 6rem);
  padding-top: 3.5rem;
}

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
  text-wrap: balance;
  text-shadow: 0 0 18px rgba(122, 229, 255, 0.08);
}

.hero-text,
.section-copy,
.info-card p,
.panel p,
.metric-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 1.4rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.7rem 0;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

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

.button-primary {
  color: #03111f;
  background: linear-gradient(135deg, #a2c9d8, #8eb7a8);
  box-shadow: 0 8px 24px rgba(146, 185, 171, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(122, 229, 255, 0.36);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.hero-stats,
.metric-grid,
.card-grid {
  display: grid;
  gap: 1rem;
}

.hero-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-chip,
.panel,
.info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(10, 22, 46, 0.58), rgba(6, 12, 24, 0.84));
  box-shadow: var(--shadow);
}

.stat-chip {
  padding: 1.1rem 1.15rem;
}

.stat-chip::before,
.panel::before,
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 229, 255, 0.06), transparent 32%, transparent 68%, rgba(255, 209, 102, 0.05));
  pointer-events: none;
}

.stat-label,
.hud-panel span,
.signal-meta span,
.panel-kicker,
.telemetry-stream,
.terminal-bar,
.card-index,
.tag-list,
.metric-card strong,
.scroll-cue {
  letter-spacing: 0.08em;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.stat-chip strong {
  display: block;
  margin-top: 0.45rem;
  font-family: "Oxanium", sans-serif;
  font-size: 1.4rem;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.35rem;
  color: rgba(229, 237, 248, 0.58);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.scroll-cue-line {
  width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 229, 255, 0.08), rgba(122, 229, 255, 0.55));
}

.hero-stage {
  grid-area: stage;
  min-width: 0;
}

.hero-meta {
  grid-area: meta;
}

.stage-frame {
  position: relative;
  min-height: 540px;
  height: min(64vh, 680px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 40%, rgba(147, 199, 220, 0.16), transparent 26%),
    radial-gradient(circle at 68% 24%, rgba(196, 169, 122, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(8, 16, 34, 0.58), rgba(4, 8, 18, 0.94));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  transform: translateZ(0);
}

.stage-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(147, 199, 220, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px);
  opacity: 0.06;
  mix-blend-mode: screen;
  animation: scan 18s linear infinite;
  pointer-events: none;
}

.stage-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, transparent 0, transparent 28%, rgba(2, 6, 17, 0.18) 66%, rgba(2, 6, 17, 0.56) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 78%, rgba(2, 6, 17, 0.34));
  pointer-events: none;
}

#space-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
}

.stage-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: min(90%, 24rem);
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(122, 229, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 12, 28, 0.76);
  color: rgba(229, 237, 248, 0.78);
  font-family: "Oxanium", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  backdrop-filter: blur(12px);
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
}

.stage-loader.is-hidden {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 12px));
}

.hud {
  position: absolute;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  pointer-events: none;
}

.hud-top {
  top: 1rem;
  align-items: flex-start;
}

.hud-bottom {
  bottom: 1rem;
  align-items: flex-end;
}

.hud-badge,
.hud-panel {
  position: relative;
  overflow: hidden;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(7, 14, 28, 0.42), rgba(4, 9, 20, 0.66));
  backdrop-filter: blur(16px) saturate(125%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.hud-badge::before,
.hud-panel::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 199, 220, 0.3), transparent);
  pointer-events: none;
}

.hud-badge {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.55rem;
  min-width: 9.2rem;
  color: rgba(229, 237, 248, 0.68);
}

.hud-copy {
  display: grid;
  gap: 0.12rem;
}

.hud-copy small,
.hud-kicker {
  color: rgba(149, 167, 192, 0.74);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hud-copy strong {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hud-badge strong,
.hud-panel strong {
  color: var(--text);
  font-weight: 600;
}

.signal-dot,
.terminal-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
}

.signal-dot {
  background: var(--teal);
  box-shadow: 0 0 6px rgba(134, 189, 169, 0.48);
  animation: pulse 2.2s ease-in-out infinite;
}

.hud-panel {
  display: grid;
  gap: 0.28rem;
  min-width: 11rem;
}

.hud-panel small {
  color: rgba(159, 180, 206, 0.7);
  line-height: 1.45;
  max-width: 24ch;
}

.hud-panel-signature {
  min-width: 14rem;
  padding-right: 1.2rem;
}

.hud-panel-compact {
  min-width: 8.5rem;
  align-items: end;
}

.hud-panel-compact span {
  color: rgba(149, 167, 192, 0.74);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hud-panel-compact strong {
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.section-heading {
  max-width: 64rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.02;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: end;
}

.section-copy {
  margin: 0;
  max-width: 34rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.panel {
  padding: 1.4rem;
}

.info-card {
  min-height: 100%;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.info-card:hover,
.info-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(122, 229, 255, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.info-card h3,
.panel h3,
.protocol-item h3 {
  font-size: 1.25rem;
  line-height: 1.08;
}

.card-index,
.panel-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--cyan);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.tag-list span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 246, 255, 0.72);
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.03);
}

.accent-cyan {
  background: linear-gradient(180deg, rgba(5, 22, 46, 0.62), rgba(4, 11, 24, 0.9));
}

.accent-gold {
  background: linear-gradient(180deg, rgba(24, 17, 6, 0.56), rgba(8, 12, 24, 0.9));
}

.field-grid,
.telemetry-grid {
  display: grid;
  gap: 1rem;
}

.field-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.formula-stack {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 1rem;
}

.formula-stack code {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(238, 246, 255, 0.85);
  font-family: "Oxanium", sans-serif;
  font-size: 0.86rem;
  line-height: 1.5;
  overflow-x: auto;
}

.signal-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.signal-row {
  display: grid;
  gap: 0.55rem;
}

.signal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(238, 246, 255, 0.86);
}

.signal-bar {
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.signal-bar span {
  display: block;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--teal), var(--gold));
  background-size: 200% 100%;
  box-shadow: 0 0 10px rgba(122, 229, 255, 0.16);
  animation: shimmer 8s linear infinite;
}

.protocol-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.protocol-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(5, 12, 28, 0.58);
  box-shadow: var(--shadow);
}

.protocol-item p {
  margin: 0.6rem 0 0;
}

.protocol-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(122, 229, 255, 0.16), rgba(92, 255, 198, 0.16));
  color: var(--cyan);
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
}

.telemetry-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.terminal-shell {
  padding: 0;
  overflow: hidden;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  color: rgba(238, 246, 255, 0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.terminal-dot:nth-child(1) {
  background: #ff5f56;
}

.terminal-dot:nth-child(2) {
  background: #ffbd2e;
}

.terminal-dot:nth-child(3) {
  background: #27c93f;
}

.telemetry-stream {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 1.2rem;
  list-style: none;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(238, 246, 255, 0.86);
}

.telemetry-stream li {
  padding: 0.72rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card strong {
  display: block;
  margin-top: 0.3rem;
  font-family: "Oxanium", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
}

.metric-card p {
  margin: 0.85rem 0 0;
}

.site-footer {
  padding: 2rem 0 4rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
}

.noscript-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 12, 28, 0.92);
  color: var(--text);
}

@keyframes aurora {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 2%, 0) scale(1.08);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-120px, 80px, 0);
  }
}

@keyframes scan {
  from {
    transform: translateY(-8%);
  }
  to {
    transform: translateY(8%);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes shimmer {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}

@media (max-width: 1080px) {
  .hero,
  .split-heading,
  .field-grid,
  .telemetry-grid,
  .protocol-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "copy"
      "stage"
      "meta";
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .stage-frame {
    min-height: 500px;
    height: 64vh;
  }

  .card-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 1rem);
    padding: 0.85rem 1rem;
    border-radius: 26px;
  }

  .site-nav {
    display: none;
  }

  .section,
  .site-footer {
    width: calc(100% - 1rem);
  }

  .section {
    padding: 3.5rem 0;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-stats,
  .card-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .stage-frame {
    min-height: 400px;
    height: 54vh;
    border-radius: 24px;
  }

  .hud {
    left: 0.7rem;
    right: 0.7rem;
    gap: 0.6rem;
  }

  .hud-badge,
  .hud-panel {
    width: 100%;
  }

  .hud-badge {
    min-width: 0;
  }

  .telemetry-stream {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
