/* ============================================================
   oscargaray.com — CYBER-NEON NOIR
   ============================================================ */

:root {
  /* Palette */
  --bg-void:          #000000;
  --bg-deep:          #0A0A0F;
  --cyan:             #00F5FF;
  --cyan-dim:         rgba(0, 245, 255, 0.15);
  --cyan-glow:        rgba(0, 245, 255, 0.40);
  --gold-electric:    #FFD700;
  --gold-dim:         rgba(255, 215, 0, 0.20);
  --text-primary:     #FFFFFF;
  --text-secondary:   rgba(255, 255, 255, 0.70);
  --text-muted:       #4A5568;

  /* Typography */
  --font-heading:     'Space Grotesk', sans-serif;
  --font-mono:        'JetBrains Mono', monospace;

  /* Layout */
  --nav-h:            64px;
  --hud-pad-x:        40px;
  --hud-pad-y:        3rem;
}

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

html {
  scroll-behavior: auto; /* GSAP handles scrolling */
}

html {
  overscroll-behavior-y: none;
}

body {
  overscroll-behavior: none;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;             /* CRITICAL — enables ScrollTrigger */
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-heading);
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a, button { cursor: none; }

/* ── LOADER ──────────────────────────────────────────────── */
#loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-void);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

#loader-overlay.loader--hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 280px;
}

.loader-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 0.12em;
}

.loader-bar-wrap {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

#loader-bar {
  height: 100%;
  width: 0%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
  transition: width 0.1s linear;
  border-radius: 2px;
}

.loader-pct {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ── CUSTOM CURSOR ───────────────────────────────────────── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.1s ease, border-color 0.2s ease, width 0.2s ease, height 0.2s ease;
  mix-blend-mode: difference;
}

#cursor.cursor--hover {
  width: 48px;
  height: 48px;
  border-color: var(--gold-electric);
}

#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ─────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 500;
  padding: 0 var(--hud-pad-x);
  display: flex;
  align-items: center;
  background: rgba(0, 4, 12, 0.75);
  border-bottom: 1px solid rgba(0, 245, 255, 0.08);
  transition: background 0.3s ease, border-bottom-color 0.3s ease;
}

#nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 245, 255, 0.15);
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  flex-shrink: 0;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.1em;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover { color: rgba(255, 255, 255, 0.85); }

.nav-link.active {
  color: var(--cyan);
  border-bottom: 2px solid var(--cyan);
}

.nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  will-change: opacity, transform;
  animation: pulse-dot 3s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 var(--cyan-glow); opacity: 1; }
  70%       { box-shadow: 0 0 0 5px rgba(0, 245, 255, 0); opacity: 0.7; }
}

.lang-btn {
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(0, 245, 255, 0.2);
  padding: 6px 16px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  cursor: none;
  color: var(--text-secondary);
  transition: border-color 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.lang-btn:hover { border-color: var(--cyan); color: var(--cyan); }

.lang-sep { margin: 0 5px; color: var(--text-muted); }

.lang-btn.lang-es #lang-es-label { color: var(--cyan); }
.lang-btn.lang-es #lang-en-label { color: var(--text-muted); }
.lang-btn.lang-en #lang-en-label { color: var(--cyan); }
.lang-btn.lang-en #lang-es-label { color: var(--text-muted); }

/* ── CANVAS ──────────────────────────────────────────────── */
#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  z-index: 0;
  display: block;
  background: var(--bg-void);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ── GRADIENT OVERLAY (ambient vignette — above canvas, below HUD) ── */
.hero-gradient-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82)  0%,
    rgba(0, 0, 0, 0.60) 20%,
    rgba(0, 0, 0, 0.35) 42%,
    rgba(0, 0, 0, 0.08) 62%,
    transparent         75%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

/* ── HUD OVERLAY ─────────────────────────────────────────── */
#hud {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.hud-panels {
  position: relative;
  width: 100%;
  height: 100%;
}

.hud-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Flex layout for panels 1–4 — GSAP controls opacity/visibility/y */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: calc(var(--nav-h) + 1rem);
  padding-bottom: var(--hud-pad-y);
  padding-left: var(--hud-pad-x);
  padding-right: calc(80px + var(--hud-pad-x));
}

/* Panel 0 uses absolutely-positioned children — disable flex */
.hud-panel[data-panel="0"] {
  display: block;
}

/* ── Initial hidden state — GSAP animates on scene activation ── */
.hud-panel .hud-tag,
.hud-panel .hud-overline,
.hud-panel .hero-title > *,
.hud-panel .hud-scene-headline,
.hud-panel .hero-subtitle,
.hud-panel .hud-desc,
.hud-panel .hero-ctas,
.scene5-wrapper .scene5-tag,
.scene5-wrapper .scene5-title > *,
.scene5-wrapper .scene5-sub,
.scene5-wrapper .scene5-ctas {
  opacity: 0;
  transform: translateY(28px);
}
.hud-panel .hud-corner {
  opacity: 0;
  transform: scale(0.7);
}

/* ── Panel 0: Status bar ─────────────────────────────────── */
.hud-status-bar {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 2;
  padding: 10px var(--hud-pad-x);
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(0, 245, 255, 0.07);
  background: rgba(0, 0, 0, 0.25);
}

.hud-status-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.hud-status-dot--gold {
  background: var(--gold-electric);
  animation-delay: 1s;
}

.hud-status-text {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Panel 0: HUD text panel with corner brackets ────────── */
.hud-text-panel {
  position: absolute;
  left: var(--hud-pad-x);
  top: 50%;
  transform: translateY(-50%);
  max-width: 580px;
  padding: 36px 40px;
  border: 1px solid rgba(0, 245, 255, 0.1);
  z-index: 2;
  contain: layout style;
}

.hud-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--cyan);
  border-style: solid;
}

.hud-corner--tl { top: -1px;    left: -1px;   border-width: 2px 0 0 2px; }
.hud-corner--tr { top: -1px;    right: -1px;  border-width: 2px 2px 0 0; }
.hud-corner--bl { bottom: -1px; left: -1px;   border-width: 0 0 2px 2px; }
.hud-corner--br { bottom: -1px; right: -1px;  border-width: 0 2px 2px 0; }

.hud-overline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--cyan);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.hero-title-line1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-primary);
  font-weight: 700;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.95),
    0 8px 30px rgba(0, 0, 0, 0.7);
}

.hero-title-line2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-secondary);
  font-weight: 700;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.95),
    0 8px 30px rgba(0, 0, 0, 0.7);
}

.hero-title-accent {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--cyan);
  will-change: opacity;
  text-shadow:
    0 0 20px rgba(0, 245, 255, 0.7),
    0 0 60px rgba(0, 245, 255, 0.25),
    0 0 100px rgba(0, 245, 255, 0.1);
  animation: neon-pulse 3s ease-in-out infinite;
}

@keyframes neon-pulse {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(0, 245, 255, 0.7),
      0 0 60px rgba(0, 245, 255, 0.25),
      0 0 100px rgba(0, 245, 255, 0.1);
  }
  50% {
    text-shadow:
      0 0 25px rgba(0, 245, 255, 0.85),
      0 0 80px rgba(0, 245, 255, 0.35),
      0 0 140px rgba(0, 245, 255, 0.15);
  }
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  pointer-events: auto;
}

/* ── Panel 0: Stats bar ──────────────────────────────────── */
.hud-stats {
  position: absolute;
  bottom: 80px;
  left: var(--hud-pad-x);
  display: flex;
  gap: 12px;
  opacity: 0.6;
  z-index: 2;
  contain: layout style;
}

.hud-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 18px;
  border: 1px solid rgba(0, 245, 255, 0.1);
  background: rgba(0, 4, 12, 0.6);
  border-radius: 4px;
}

.hud-stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--cyan);
  line-height: 1;
}

.hud-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
}

/* ── Panel 0: Scroll indicator ───────────────────────────── */
.scroll-indicator {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  z-index: 50;
}

.scroll-beam {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 245, 255, 0.9),
    transparent
  );
  animation: beam-pulse 2.5s ease-in-out infinite;
}

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

.scroll-mouse {
  width: 36px;
  height: 56px;
  border: 2px solid rgba(0, 245, 255, 0.9);
  border-radius: 18px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  box-shadow: 0 0 16px rgba(0, 245, 255, 0.35);
}

.scroll-wheel {
  width: 6px;
  height: 12px;
  background: var(--cyan);
  border-radius: 3px;
  will-change: transform;
  animation: scroll-bounce 2.2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0);   opacity: 1;   }
  60%       { transform: translateY(10px); opacity: 0.2; }
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  text-align: center;
}

.scroll-text strong {
  color: rgba(0, 245, 255, 0.75);
  text-shadow: 0 0 8px rgba(0, 245, 255, 0.4);
}

/* ── Scene panels (1–4) ──────────────────────────────────── */
.hud-panel:not([data-panel="0"]) .hud-tag {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hud-panel:not([data-panel="0"]) .hud-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

.hud-tag {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hud-scene-headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.text-accent { color: var(--cyan); }

.hud-desc {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 500px;
}

/* ── CTA panel (panel 4) ─────────────────────────────────── */
.hud-panel--cta { text-align: left; }

.hud-cta-headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}

.hud-response {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(0, 245, 255, 0.5);
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 13px 32px;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(0, 245, 255, 0.12), inset 0 0 16px rgba(0, 245, 255, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
  pointer-events: auto;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: rgba(0, 245, 255, 0.08);
  box-shadow: 0 0 32px rgba(0, 245, 255, 0.35);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-primary--large {
  font-size: 0.9rem;
  padding: 16px 44px;
  pointer-events: auto;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 13px 28px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  pointer-events: auto;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ── Disabled links — reactivar cuando las páginas tengan contenido ── */
.disabled-link {
  pointer-events: none;
  cursor: default;
  opacity: 0.4;
}

/* ── Panel 4 — Scene 5 CTA ──────────────────────────────── */
.scene5-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 60px 80px;
  z-index: 10;
  pointer-events: auto;
  contain: layout style;
}

.scene5-wrapper::before {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.40) 50%,
    transparent         100%
  );
  pointer-events: none;
  z-index: -1;
}

.scene5-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(0, 245, 255, 0.6);
  margin-bottom: 20px;
}

.scene5-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(0, 245, 255, 0.5);
}

.scene5-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
}

.scene5-accent {
  color: var(--cyan);
  text-shadow:
    0 0 30px rgba(0, 245, 255, 0.7),
    0 0 80px rgba(0, 245, 255, 0.3);
}

.scene5-sub {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
}

.scene5-ctas {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.scene5-btn {
  font-size: 16px;
  padding: 16px 36px;
}

.scene5-contact-info {
  display: flex;
  align-items: center;
}

.contact-item {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.contact-sep {
  color: rgba(0, 245, 255, 0.3);
  margin: 0 4px;
}

/* ── Scene dot navigator (RIGHT) ─────────────────────────── */
.hud-nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 56px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-right: 2rem;
  z-index: 15;
  pointer-events: auto;
}

.hud-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hud-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
  transform: scale(1.5);
}

.hud-dot:hover { background: var(--text-secondary); }

.hud-progress-track {
  position: absolute;
  right: 2.5rem;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.hud-progress-fill {
  width: 100%;
  height: 0%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
  transition: height 0.2s ease;
  border-radius: 1px;
}

/* ── SCROLL SPACER ───────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 500vh;
  z-index: 5;
}

.hero-scene {
  height: 100vh;
  height: 100svh;
}

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --hud-pad-x: 1.5rem;
    --hud-pad-y: 2rem;
  }

  html, body { cursor: auto; }
  a, button  { cursor: auto; }
  #cursor, #cursor-dot { display: none; }

  #nav { padding: 0 1.5rem; }

  .nav-links {
    position: static;
    transform: none;
    display: none;
  }

  .hud-panel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hud-text-panel {
    left: 1.5rem;
    right: 1.5rem;
    max-width: none;
    padding: 24px 20px;
  }

  .hud-stats {
    left: 1.5rem;
    gap: 8px;
    bottom: 90px;
  }

  .hud-stat { padding: 8px 12px; }
  .hud-stat-value { font-size: 1.1rem; }

  .hud-status-bar {
    padding: 8px 1.5rem;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-title-line1,
  .hero-title-line2 {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
  }

  .hero-title-accent {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .hud-scene-headline { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hud-desc { font-size: 0.9rem; }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .hud-nav {
    padding-right: 1rem;
    width: 36px;
  }

  .hud-progress-track { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .neon-pulse, .beam-pulse, .scroll-bounce, .pulse-dot {
    animation: none;
  }
}
