@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700;800;900&display=swap');

:root {
  --bg-obsidian: #070a0f;
  --bg-dark-card: rgba(13, 20, 36, 0.90);
  --bg-glass-card: rgba(15, 23, 42, 0.85);
  --cyan-primary: #00ffb2;
  --cyan-bright: #00f2fe;
  --cyan-blue: #00c8ff;
  --cyan-glow: rgba(0, 255, 178, 0.5);
  --cyan-border: rgba(0, 255, 178, 0.45);
  --accent-gold: #f59e0b;
  --text-white: #ffffff;
  --text-silver: #f1f5f9;
  --text-muted: #94a3b8;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, sans-serif;
  --font-tech: 'Chakra Petch', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg-obsidian);
}

body {
  color: var(--text-white);
  font-family: var(--font-sans);
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 255, 178, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(0, 200, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(10, 18, 32, 0.85) 0%, transparent 85%),
    linear-gradient(to right, rgba(0, 255, 178, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 255, 178, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
}

/* ==================== Background 3D Canvas (Always STRICTLY in Background z-index: 0) ==================== */
#bg-canvas {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: 0.30 !important;
}

/* ==================== Multi-Language Selector Dropdown ==================== */
.lang-dropdown-wrap {
  position: relative;
  display: inline-block;
  z-index: 1001;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(10, 16, 28, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 255, 178, 0.45);
  border-radius: 14px;
  padding: 6px;
  min-width: 150px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 255, 178, 0.2);
  display: none;
  z-index: 1002;
  flex-direction: column;
  gap: 4px;
}

.lang-dropdown-wrap:hover .lang-dropdown-menu,
.lang-dropdown-menu.show {
  display: flex;
}

.lang-select-option {
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.lang-select-option:hover {
  background: rgba(0, 255, 178, 0.15);
  color: #ffffff;
}

.lang-select-option.active-lang {
  background: rgba(0, 255, 178, 0.25);
  color: #00ffb2;
  font-weight: bold;
  border: 1px solid rgba(0, 255, 178, 0.5);
}

/* ==================== Desktop Presentation Stage System ==================== */
@media (min-width: 769px) {
  .slides-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    width: 100vw;
    scroll-behavior: smooth;
    position: relative;
    z-index: 5;
  }

  .slide-section {
    height: 100vh;
    width: 100vw;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    position: relative !important;
    z-index: 5 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 3.5vw 20px;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .slide-stage-16-9 {
    width: min(calc(100vw - 64px), calc((100vh - 88px) * 16 / 9));
    height: min(calc(100vh - 88px), calc((100vw - 64px) * 9 / 16));
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: auto;
  }
}

/* ==================== Mobile-First UI/UX Overhaul (< 768px) ==================== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
  }

  .slides-container {
    scroll-snap-type: none !important;
    overflow-y: visible !important;
    height: auto !important;
    width: 100vw !important;
    display: block !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .slide-section {
    width: 100vw !important;
    min-height: 100vh !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 5 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 68px 16px 90px !important;
    scroll-margin-top: 52px;
    scroll-snap-align: none !important;
  }

  .slide-stage-16-9 {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin: 0 !important;
  }

  .top-hud-bar {
    padding: 0 10px !important;
    height: 50px !important;
    gap: 8px !important;
  }

  .hud-nav {
    display: none !important;
  }

  /* Web3 App Mobile Glassmorphism Dock */
  .mobile-app-dock {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(94%, 400px);
    height: 56px;
    z-index: 999 !important;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 6px;
    background: rgba(7, 10, 15, 0.90);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 255, 178, 0.4);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 255, 178, 0.2);
  }

  .dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    color: #94a3b8;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 2px 0;
    white-space: nowrap;
  }

  .dock-item:active {
    transform: scale(0.92);
  }

  .dock-item:hover, .dock-item.active {
    color: #00ffb2;
  }

  .dock-item .dock-icon {
    font-size: 17px;
    line-height: 1;
    margin-bottom: 2px;
    transition: transform 0.2s ease;
  }

  .dock-item:hover .dock-icon {
    transform: translateY(-2px);
  }

  .dock-item-highlight {
    background: linear-gradient(135deg, rgba(0, 255, 178, 0.18), rgba(0, 242, 254, 0.18));
    border: 1px solid rgba(0, 255, 178, 0.5);
    border-radius: 14px;
    color: #00ffb2;
    padding: 4px 6px;
    box-shadow: 0 0 14px rgba(0, 255, 178, 0.25);
  }

  .octane-glass-panel, .octane-card-hud, .phase-card-tier {
    padding: 20px 16px !important;
    border-radius: 18px !important;
    margin-bottom: 8px;
    position: relative !important;
    z-index: 10 !important;
  }

  .section-headline {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }

  .holo-3d-card-wrap {
    padding: 10px 0 !important;
  }

  .holo-3d-card {
    height: 165px !important;
    padding: 16px !important;
    transform: none !important;
  }

  .holo-3d-card:hover {
    transform: none !important;
  }

  .tech-vis-box {
    width: 90px !important;
    height: 70px !important;
  }

  .badge-chamfer, .link-cyber-badge {
    min-height: 42px !important;
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  /* Ensure all sections and cards are 100% visible when scrolling on mobile */
  [data-motion],
  [data-motion="slide-left"],
  [data-motion="slide-right"],
  [data-motion="scale-in"] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}

/* ==================== Enhanced Octane 3D Glass & Neon Hover ==================== */
.octane-glass-panel {
  background: var(--bg-dark-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(0, 255, 178, 0.35);
  box-shadow: 
    0 25px 60px -10px rgba(0, 0, 0, 0.75),
    0 0 35px rgba(0, 255, 178, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    inset 0 0 25px rgba(0, 255, 178, 0.05);
  border-radius: 24px;
  position: relative;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.octane-glass-panel:hover {
  border-color: #00ffb2;
  box-shadow: 
    0 35px 75px -10px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(0, 255, 178, 0.35),
    inset 0 1px 3px rgba(255, 255, 255, 0.6),
    inset 0 0 30px rgba(0, 255, 178, 0.15);
  transform: translateY(-5px) scale(1.01);
}

.octane-card-hud {
  background: rgba(13, 20, 36, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0, 255, 178, 0.3);
  border-radius: 22px;
  position: relative;
  z-index: 10;
  box-shadow: 
    0 20px 45px -8px rgba(0, 0, 0, 0.65),
    0 0 25px rgba(0, 255, 178, 0.08),
    inset 0 1px 1.5px rgba(255, 255, 255, 0.25);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.octane-card-hud:hover {
  border-color: #00ffb2;
  box-shadow: 
    0 30px 65px -8px rgba(0, 0, 0, 0.8),
    0 0 45px rgba(0, 255, 178, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.45),
    inset 0 0 20px rgba(0, 255, 178, 0.12);
  transform: translateY(-6px) scale(1.02);
}

.octane-card-hud:hover .icon-bounce {
  transform: scale(1.2) translateY(-3px);
  filter: drop-shadow(0 0 16px #00ffb2);
}

.icon-bounce {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  display: inline-block;
}

/* ==================== Slide 7 5-Phase Growth Progression Stepper ==================== */
.phase-card-tier {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  background: rgba(13, 20, 36, 0.88);
  border: 1.5px solid rgba(0, 255, 178, 0.3);
}

.phase-card-tier:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 255, 178, 0.35);
  border-color: #00ffb2;
}

.phase-card-ipo {
  background: linear-gradient(160deg, rgba(13, 20, 36, 0.95) 0%, rgba(26, 20, 8, 0.95) 100%);
  border: 1.5px solid rgba(250, 204, 21, 0.6);
  box-shadow: 0 15px 40px rgba(250, 204, 21, 0.15);
}

.phase-card-ipo:hover {
  border-color: #facc15;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 50px rgba(250, 204, 21, 0.45);
}

/* ==================== Slide 6 Pipeline Flowing Laser Animation ==================== */
.pipeline-flow-container {
  position: relative;
  width: 100%;
}

.flow-laser-line {
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 3px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #00ffb2 0%, #facc15 50%, #00e5ff 100%);
  box-shadow: 0 0 12px #00ffb2, 0 0 24px rgba(0, 255, 178, 0.6);
  z-index: 1;
}

.flow-laser-particle {
  position: absolute;
  top: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 16px #00ffb2, 0 0 30px #ffffff;
  animation: laserStream 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes laserStream {
  0% { left: 0%; opacity: 0; transform: scale(0.6); }
  15% { opacity: 1; transform: scale(1.2); }
  85% { opacity: 1; transform: scale(1.2); }
  100% { left: 100%; opacity: 0; transform: scale(0.6); }
}

/* ==================== Slide 5 AI Feature 3D Visual Cards ==================== */
.tech-vis-box {
  width: 120px;
  height: 90px;
  background: rgba(6, 11, 22, 0.9);
  border: 1px solid rgba(0, 255, 178, 0.4);
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(0, 255, 178, 0.15), inset 0 0 15px rgba(0, 255, 178, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.octane-card-hud:hover .tech-vis-box {
  border-color: #00ffb2;
  box-shadow: 0 0 25px rgba(0, 255, 178, 0.35), inset 0 0 20px rgba(0, 255, 178, 0.2);
  transform: scale(1.05);
}

/* ==================== Holographic 3D Payment Card ==================== */
.holo-3d-card-wrap {
  perspective: 1000px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.holo-3d-card {
  width: 100%;
  max-width: 440px;
  height: 220px;
  background: linear-gradient(135deg, #0e172c 0%, #060a14 100%);
  border: 1.5px solid rgba(0, 255, 178, 0.65);
  border-radius: 20px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(0, 255, 178, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
  transform: rotateX(14deg) rotateY(-16deg) rotateZ(3deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.holo-3d-card:hover {
  transform: rotateX(6deg) rotateY(-6deg) rotateZ(1deg) scale(1.04);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.85),
    0 0 55px rgba(0, 255, 178, 0.55);
}

.card-chip {
  width: 42px;
  height: 32px;
  background: linear-gradient(135deg, #facc15 0%, #ca8a04 100%);
  border-radius: 6px;
  position: relative;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.5);
}
.card-chip::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(0,0,0,0.35);
}

/* ==================== Large, Prominent Unified Typography System ==================== */
.section-headline {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  font-size: 24px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 6px !important;
}

@media (min-width: 768px) {
  .section-headline {
    font-size: 30px !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }
}

@media (min-width: 1280px) {
  .section-headline {
    font-size: 34px !important;
    line-height: 1.18 !important;
  }
}

.section-subtitle {
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
  margin-top: 4px !important;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #cbd5e1 !important;
  }
}

.text-gradient-hero {
  background: linear-gradient(135deg, #00ffb2 0%, #00c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 18px rgba(0, 255, 178, 0.4));
}

.text-gradient-gold {
  background: linear-gradient(135deg, #facc15 0%, #00ffb2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==================== Capsule Tags & Interactive Badges ==================== */
.cyber-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(0, 255, 178, 0.1);
  border: 1px solid rgba(0, 255, 178, 0.45);
  color: #00ffb2;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(0, 255, 178, 0.2);
}

.cyber-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ffb2;
  box-shadow: 0 0 10px #00ffb2;
  animation: pulseBullet 2s infinite;
}
@keyframes pulseBullet {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Cyberpunk Chamfered Badges */
.badge-chamfer {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #f1f5f9;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap !important;
  flex-shrink: 0;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.badge-chamfer:hover {
  border-color: #00ffb2;
  color: #00ffb2;
  box-shadow: 0 0 16px rgba(0, 255, 178, 0.35);
  transform: translateY(-2px);
}

/* Interactive Glowing Link Badge */
.link-cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(0, 255, 178, 0.12);
  border: 1px solid rgba(0, 255, 178, 0.5);
  color: #00ffb2;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.link-cyber-badge:hover {
  background: rgba(0, 255, 178, 0.25);
  border-color: #00ffb2;
  box-shadow: 0 0 14px rgba(0, 255, 178, 0.45);
  transform: translateY(-1px);
}

/* ==================== Granular Motion Choreography ==================== */
[data-motion] {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-motion="slide-left"] {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-motion="slide-right"] {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-motion="scale-in"] {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-active [data-motion],
.slide-active [data-motion="slide-left"],
.slide-active [data-motion="slide-right"],
.slide-active [data-motion="scale-in"] {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

[data-delay="1"] { transition-delay: 0.05s; }
[data-delay="2"] { transition-delay: 0.10s; }
[data-delay="3"] { transition-delay: 0.16s; }
[data-delay="4"] { transition-delay: 0.22s; }
[data-delay="5"] { transition-delay: 0.28s; }
[data-delay="6"] { transition-delay: 0.34s; }
[data-delay="7"] { transition-delay: 0.40s; }
[data-delay="8"] { transition-delay: 0.46s; }

/* ==================== Top HUD Bar ==================== */
.top-hud-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 1000 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(7, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 178, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.progress-bar-cyan {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ffb2, #00c8ff, #facc15);
  box-shadow: 0 0 12px rgba(0, 255, 178, 0.9);
  width: 0%;
  transition: width 0.25s ease;
}

.hud-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hud-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hud-dot:hover {
  background: var(--cyan-primary);
  transform: scale(1.3);
}

.hud-dot.active {
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(to bottom, #00ffb2, #00c8ff);
  box-shadow: 0 0 14px rgba(0, 255, 178, 0.85);
}

.hud-dot .hud-tooltip {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(10, 16, 28, 0.96);
  backdrop-filter: blur(14px);
  color: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-family: var(--font-mono);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 255, 178, 0.45);
}

.hud-dot:hover .hud-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.notes-drawer {
  position: fixed;
  right: 0;
  bottom: 0;
  top: 50px;
  width: 100%;
  max-width: 440px;
  background: rgba(7, 10, 15, 0.98);
  backdrop-filter: blur(28px);
  border-left: 1px solid rgba(0, 255, 178, 0.4);
  box-shadow: -12px 0 45px rgba(0, 0, 0, 0.7);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
}

.notes-drawer.open {
  transform: translateX(0);
}
