/* ==========================================================================
   Universe Labs - Core CSS Stylesheet (Spatial, Glitch & Cyber Monitor Theme)
   Theme: Space Black (with teal-grey tint), Cyber Monitor Overlay, Glitches
   ========================================================================== */

:root {
  /* HSL Color Palette - Pitch-Black Space Theme with Silver & White text */
  --bg-color: #020403;
  --bg-gradient: radial-gradient(circle at 50% 50%, #050a08 0%, #000000 100%);
  
  /* Glassmorphism surfaces - translucent dark slate */
  --surface-color: rgba(2, 4, 3, 0.75);
  --surface-color-solid: #020403;
  --surface-border: rgba(255, 255, 255, 0.08);
  --surface-border-hover: rgba(0, 240, 255, 0.45);
  
  --primary: #00f0ff; /* Electric Cyan */
  --primary-rgb: 0, 240, 255;
  --primary-glow: rgba(0, 240, 255, 0.3);
  --primary-dark: #009db3;
  
  --secondary: #7f00ff; /* Electric Indigo */
  --secondary-rgb: 127, 0, 255;
  --secondary-glow: rgba(127, 0, 255, 0.25);
  --secondary-dark: #5800b3;
  
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0; /* Crisp Silver White */
  --text-muted: #64748b; /* Slate grey */
  
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  
  --transition-fast: 0.12s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-smooth: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);

  --glitch-color-1: #00f0ff;
  --glitch-color-2: #7f00ff;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-color);
}

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background: var(--bg-gradient);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 255, 0.25);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 240, 255, 0.6);
  box-shadow: 0 0 10px var(--primary-glow);
}

::selection {
  background: var(--primary);
  color: #000;
  text-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* Background Space Canvases */
#starfieldCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  pointer-events: none;
}

#threeCanvasContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* ==========================================================================
   Cyber Monitor Overlay HUD Screen Effects
   ========================================================================== */

.monitor-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998; /* Under cursor, over everything else */
}

.monitor-scanlines {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.38) 50%
  );
  background-size: 100% 3px;
  opacity: 0.45;
  z-index: 1;
}

.monitor-flicker {
  position: absolute;
  inset: 0;
  background: rgba(0, 240, 255, 0.002);
  animation: monitorFlicker 0.18s infinite;
  z-index: 2;
}

.monitor-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 55%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 3;
}

.monitor-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.004) 35%, transparent 35%);
  z-index: 4;
}

.monitor-static-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 0;
  z-index: 5;
}

.monitor-static-bar-1 {
  background: rgba(0, 240, 255, 0.12);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
  animation: staticBar1 10s linear infinite;
}

.monitor-static-bar-2 {
  background: rgba(127, 0, 255, 0.1);
  box-shadow: 0 0 8px rgba(127, 0, 255, 0.25);
  animation: staticBar2 7s linear infinite;
}

@keyframes monitorFlicker {
  0%, 100% { opacity: 0.14; }
  50% { opacity: 0.18; }
}

@keyframes staticBar1 {
  0% { top: -10px; opacity: 0; }
  3% { opacity: 0.8; }
  8% { top: 110%; opacity: 0.8; }
  8.1% { opacity: 0; }
  100% { top: 110%; opacity: 0; }
}

@keyframes staticBar2 {
  0% { top: -10px; opacity: 0; }
  40% { top: -10px; opacity: 0; }
  43% { opacity: 0.7; }
  50% { top: 110%; opacity: 0.7; }
  50.1% { opacity: 0; }
  100% { top: 110%; opacity: 0; }
}

/* ==========================================================================
   Heads Up Display (HUD) Interface Overlays
   ========================================================================== */

.hud-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.hud-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 240, 255, 0.25);
}

.hud-corner-tl { top: 30px; left: 30px; border-right: none; border-bottom: none; }
.hud-corner-tr { top: 30px; right: 30px; border-left: none; border-bottom: none; }
.hud-corner-bl { bottom: 30px; left: 30px; border-right: none; border-top: none; }
.hud-corner-br { bottom: 30px; right: 30px; border-left: none; border-top: none; }

.hud-scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to bottom, rgba(0, 240, 255, 0.12), transparent);
  animation: scanLoop 8s linear infinite;
}

.hud-grid-crosshair {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* Custom Tech Cursor */
.custom-cursor {
  display: none;
  width: 24px;
  height: 24px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.1s ease-out;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.custom-cursor.glitch-cursor {
  animation: cursorJitter 0.15s linear infinite;
}

.custom-cursor-dot {
  display: none;
  width: 4px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 8px var(--secondary-glow);
}

.custom-cursor.active {
  width: 40px;
  height: 40px;
  border-color: var(--secondary);
  background-color: rgba(127, 0, 255, 0.05);
}

@media (pointer: fine) and (min-width: 769px) {
  body { cursor: none; }
  a, button, .tech-card, .project-card, .cta-nav { cursor: none; }
  .custom-cursor,
  .custom-cursor-dot {
    display: block;
  }
}

/* ==========================================================================
   Layout Containers & Buttons
   ========================================================================== */

.container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-header.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  background: linear-gradient(to right, #fff 30%, var(--secondary-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.section-header.text-center .section-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 1.5px;
  border-radius: 0px;
  background: transparent;
  transition: var(--transition-smooth);
}

.btn-primary {
  border: 1px dashed rgba(0, 240, 255, 0.45);
  color: var(--primary);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.05);
}

.btn-primary:hover {
  border-style: solid;
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 20px var(--primary-glow);
  text-shadow: 0 0 5px var(--primary);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
}

.btn-secondary:hover {
  border-style: solid;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.btn:hover svg {
  transform: translate(2px, -2px);
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(6, 12, 10, 0.85);
  border-bottom: 1px solid var(--surface-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-svg {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.brand-name::before,
.brand-name::after {
  content: 'Universe Labs';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.brand-name::before {
  color: var(--primary);
  z-index: -1;
  text-shadow: -1px 0 var(--primary);
}

.brand-name::after {
  color: var(--secondary);
  z-index: -2;
  text-shadow: 1px 0 var(--secondary);
}

.brand-name.glitch-active::before {
  opacity: 1;
  animation: brandGlitch1 0.3s steps(2) infinite;
}

.brand-name.glitch-active::after {
  opacity: 1;
  animation: brandGlitch2 0.3s steps(2) infinite;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
  box-shadow: 0 0 8px var(--primary);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.cta-nav {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  border: 1px dashed rgba(0, 240, 255, 0.4);
  padding: 8px 20px;
  border-radius: 0px;
  background: transparent;
  transition: var(--transition-smooth);
}

.cta-nav:hover {
  border-style: solid;
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 15px var(--primary-glow);
  text-shadow: 0 0 5px var(--primary);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(6, 12, 10, 0.96);
    border-left: 1px solid var(--surface-border);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }
}

/* ==========================================================================
   Hero Section - Immersive 3D Space Background
   ========================================================================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding-top: 60px;
}

.badge-container {
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 8px var(--primary);
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 28px;
  font-weight: 500;
}

.highlight-typewriter {
  color: var(--primary);
  border-right: 2px solid var(--primary);
  padding-right: 4px;
  animation: blink 0.75s step-end infinite;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 44px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.scroll-indicator a:hover {
  opacity: 0.9;
}

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 1px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollMouse 1.8s infinite;
  box-shadow: 0 0 5px var(--primary);
}

.scroll-text {
  font-family: var(--font-heading);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* Glitch Heading Text Effect */
.glitch-text {
  position: relative;
  color: white;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.glitch-text::before {
  left: 2px;
  text-shadow: -1.5px 0 var(--glitch-color-1);
  clip: rect(44px, 999px, 56px, 0);
  animation: glitch-anim 6s infinite linear alternate-reverse;
}

.glitch-text::after {
  left: -2px;
  text-shadow: -1.5px 0 var(--glitch-color-2), 0 1px var(--glitch-color-2);
  clip: rect(85px, 999px, 140px, 0);
  animation: glitch-anim2 6s infinite linear alternate-reverse;
}

@media (max-width: 768px) {
  .hero-title { font-size: 3.2rem; }
  .hero-subtitle { font-size: 1.3rem; }
}

/* ==========================================================================
   Capabilities Section
   ========================================================================== */

.tech-section {
  padding: 120px 0;
  position: relative;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.tech-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 40px 32px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.tech-card:hover {
  border-color: var(--surface-border-hover);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.04), 0 0 2px rgba(0, 240, 255, 0.2);
  transform: translateY(-5px);
}

.tech-card:hover::before {
  transform: scaleX(1);
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 120px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 240, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tech-card:hover .card-glow {
  opacity: 1;
}

.card-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: rgba(0, 240, 255, 0.02);
  border: 1px solid rgba(0, 240, 255, 0.15);
  margin-bottom: 24px;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.tech-card:hover .card-icon-container {
  background: rgba(0, 240, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  transform: scale(1.05);
}

.card-icon {
  width: 22px;
  height: 22px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.card-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 20px;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.tech-card:hover .card-list li {
  color: var(--text-secondary);
}

.card-list li svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0.6;
}

.tech-card:hover .card-list li svg {
  opacity: 1;
  filter: drop-shadow(0 0 3px var(--primary));
}

/* ==========================================================================
   Interactive Operations Terminal
   ========================================================================== */

.terminal-section {
  padding: 80px 0;
}

.terminal-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(2, 4, 3, 0.85);
  border: 1px solid var(--surface-border);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.015);
  overflow: hidden;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.terminal-header {
  background: #060b09;
  border-bottom: 1px solid var(--surface-border);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.terminal-title {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  color: var(--text-muted);
}

.terminal-badge {
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(0, 240, 255, 0.08);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-pulse {
  width: 4px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.terminal-body {
  padding: 24px;
  height: 320px;
  overflow-y: auto;
  font-family: 'Courier New', Courier, monospace;
  font-size: 11.5px;
  line-height: 1.5;
  color: #bcd1e0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.log-line {
  display: flex;
  gap: 12px;
}

.log-time {
  color: var(--text-muted);
  flex-shrink: 0;
  user-select: none;
}

.log-tag {
  flex-shrink: 0;
  font-weight: bold;
}

.tag-sys { color: var(--primary); }
.tag-xr { color: #f0f; }
.tag-ai { color: #ffeb3b; }
.tag-chain { color: #bb66ff; }

.log-msg {
  white-space: pre-wrap;
  word-break: break-all;
}




/* ==========================================================================
   Orbit Matrix Core Section (Futuristic 3D Horizontal Carousel & Statistics)
   ========================================================================== */

.orbit-carousel-section {
  padding: 100px 0 140px 0;
  position: relative;
  z-index: 2;
}

.orbit-matrix-horizontal-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 50px;
}

/* SpaceX-inspired horizontal selector tabs */
.orbit-selectors-horizontal {
  display: flex;
  justify-content: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
  z-index: 5;
}

.orbit-selectors-horizontal .selector-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-radius: 0px;
  transition: var(--transition-smooth);
}

.orbit-selectors-horizontal .selector-tab:hover {
  border-bottom-color: rgba(0, 240, 255, 0.45);
  transform: translateY(-2px);
}

.orbit-selectors-horizontal .selector-tab.active {
  border-bottom-color: var(--primary);
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.04) 0%, transparent 100%);
}

.selector-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.orbit-selectors-horizontal .selector-tab.active .selector-num {
  color: var(--primary);
  text-shadow: 0 0 5px var(--primary);
}

.selector-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.orbit-selectors-horizontal .selector-tab:hover .selector-label,
.orbit-selectors-horizontal .selector-tab.active .selector-label {
  color: var(--text-primary);
}

/* Middle Content Split (Left Text Panel, Right Canvas) */
.orbit-middle-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}

/* Lanyue-inspired HUD details */
.orbit-details-panel-horizontal {
  background: rgba(6, 12, 10, 0.45);
  border: 1px solid var(--surface-border);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
}

/* Tech layout ticks for details panel */
.orbit-details-panel-horizontal::before,
.orbit-details-panel-horizontal::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(0, 240, 255, 0.4);
  pointer-events: none;
}
.orbit-details-panel-horizontal::before { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.orbit-details-panel-horizontal::after { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.hud-frame-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.hud-sub-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--secondary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.hud-node-title {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.hud-coordinate {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--primary);
  letter-spacing: 1px;
}

.hud-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hud-frame-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
}

.hud-hash-tag {
  color: var(--text-muted);
}

.hud-pulse-tag {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 3D Interactive Canvas Container */
.orbit-canvas-container-horizontal {
  background: rgba(6, 12, 10, 0.35);
  border: 1px solid var(--surface-border);
  border-radius: 4px;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.orbit-canvas-container-horizontal:hover {
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 240, 255, 0.03);
}

/* Horizontal Chevrons Overlay */
.orbit-nav-arrows-horizontal {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  pointer-events: none;
  z-index: 10;
}

.orbit-nav-arrows-horizontal .arrow-btn {
  background: rgba(2, 4, 3, 0.85);
  border: 1px solid var(--surface-border);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: var(--transition-smooth);
}

.orbit-nav-arrows-horizontal .arrow-btn:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.orbit-canvas-hud-horizontal {
  position: absolute;
  bottom: 20px;
  left: 20px;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  border-left: 2px solid var(--primary);
  padding-left: 8px;
}

/* Orvion Space statistics row at the bottom */
.orvion-stats-grid-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box-horizontal {
  background: rgba(4, 8, 6, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 0px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition-smooth);
}

.stat-box-horizontal::before {
  content: '';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(0, 240, 255, 0.3);
  border-right: 1px solid rgba(0, 240, 255, 0.3);
}

.stat-box-horizontal:hover {
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(8, 17, 14, 0.6);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.02);
}

.stat-num-horizontal {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.stat-lbl-horizontal {
  font-family: var(--font-mono);
  font-size: 7.5px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .orbit-middle-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .orvion-stats-grid-horizontal {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .orbit-canvas-container-horizontal {
    min-height: 320px;
  }
  
  .orbit-selectors-horizontal {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .orbit-selectors-horizontal .selector-tab {
    padding: 10px 16px;
  }
}

@media (max-width: 576px) {
  .orvion-stats-grid-horizontal {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: #000000;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding: 80px 0 40px 0;
  position: relative;
  z-index: 2;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-svg {
  width: 28px;
  height: 28px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.5;
}

.footer-section-title {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  border-bottom: 1px dashed rgba(0, 240, 255, 0.2);
  padding-bottom: 6px;
}

.footer-nav-section {
  display: flex;
  flex-direction: column;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-nav-grid a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-nav-grid a:hover {
  color: var(--primary);
  text-shadow: 0 0 5px var(--primary-glow);
  transform: translateX(2px);
}

.footer-contact-section {
  display: flex;
  flex-direction: column;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--secondary);
  letter-spacing: 1px;
}

.contact-val {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: var(--transition-fast);
}

a.contact-val:hover {
  color: var(--primary);
  text-shadow: 0 0 4px var(--primary-glow);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 30px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.telemetry-v {
  font-family: var(--font-heading);
  font-size: 8px;
  letter-spacing: 1px;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.5; box-shadow: 0 0 10px var(--primary); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes scanLoop {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes cardScan {
  0% { top: -50%; }
  100% { top: 150%; }
}

@keyframes cursorJitter {
  0%, 100% { transform: translate(-50%, -50%) translate(0, 0); }
  20% { transform: translate(-50%, -50%) translate(-2px, 1px) skewX(5deg); }
  40% { transform: translate(-50%, -50%) translate(2px, -2px) skewY(-5deg); }
  60% { transform: translate(-50%, -50%) translate(-1px, 2px); }
  80% { transform: translate(-50%, -50%) translate(1px, -1px); }
}

@keyframes scrollMouse {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: var(--primary); }
}

/* Glitch Animation Keyframes */
@keyframes glitch-anim {
  0% { clip: rect(15px, 9999px, 66px, 0); }
  5% { clip: rect(48px, 9999px, 92px, 0); }
  10% { clip: rect(80px, 9999px, 5px, 0); }
  15% { clip: rect(113px, 9999px, 120px, 0); }
  20% { clip: rect(2px, 9999px, 45px, 0); }
  25% { clip: rect(67px, 9999px, 108px, 0); }
  30% { clip: rect(98px, 9999px, 30px, 0); }
  35% { clip: rect(54px, 9999px, 83px, 0); }
  40% { clip: rect(12px, 9999px, 115px, 0); }
  45% { clip: rect(87px, 9999px, 62px, 0); }
  50% { clip: rect(104px, 9999px, 18px, 0); }
  55% { clip: rect(41px, 9999px, 95px, 0); }
  60% { clip: rect(76px, 9999px, 8px, 0); }
  65% { clip: rect(119px, 9999px, 127px, 0); }
  70% { clip: rect(25px, 9999px, 50px, 0); }
  75% { clip: rect(61px, 9999px, 101px, 0); }
  80% { clip: rect(90px, 9999px, 38px, 0); }
  85% { clip: rect(58px, 9999px, 89px, 0); }
  90% { clip: rect(9px, 9999px, 112px, 0); }
  95% { clip: rect(83px, 9999px, 57px, 0); }
  100% { clip: rect(109px, 9999px, 21px, 0); }
}

@keyframes glitch-anim2 {
  0% { clip: rect(88px, 9999px, 105px, 0); }
  5% { clip: rect(22px, 9999px, 47px, 0); }
  10% { clip: rect(65px, 9999px, 98px, 0); }
  15% { clip: rect(110px, 9999px, 32px, 0); }
  20% { clip: rect(5px, 9999px, 76px, 0); }
  25% { clip: rect(54px, 9999px, 118px, 0); }
  30% { clip: rect(91px, 9999px, 14px, 0); }
  35% { clip: rect(42px, 9999px, 83px, 0); }
  40% { clip: rect(122px, 9999px, 129px, 0); }
  45% { clip: rect(70px, 9999px, 53px, 0); }
  50% { clip: rect(101px, 9999px, 6px, 0); }
  55% { clip: rect(35px, 9999px, 90px, 0); }
  60% { clip: rect(80px, 9999px, 19px, 0); }
  65% { clip: rect(116px, 9999px, 125px, 0); }
  70% { clip: rect(18px, 9999px, 60px, 0); }
  75% { clip: rect(63px, 9999px, 109px, 0); }
  80% { clip: rect(95px, 9999px, 44px, 0); }
  85% { clip: rect(51px, 9999px, 87px, 0); }
  90% { clip: rect(12px, 9999px, 114px, 0); }
  95% { clip: rect(79px, 9999px, 66px, 0); }
  100% { clip: rect(109px, 9999px, 21px, 0); }
}

/* ==========================================================================
   Iron Man HUD Cockpit Theme Extensions
   ========================================================================== */

/* Cockpit Vignette & Curved Glass Look */
.hud-cockpit-curvature {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 990;
  background: radial-gradient(circle, transparent 55%, rgba(2, 4, 3, 0.45) 80%, rgba(0, 240, 255, 0.04) 93%, rgba(127, 0, 255, 0.08) 100%);
  border: 1px solid rgba(0, 240, 255, 0.02);
  box-sizing: border-box;
}

/* Radar Sweep/Visor Circular Arcs */
.hud-scanner-arcs {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85vmin;
  height: 85vmin;
  border: 1px solid rgba(0, 240, 255, 0.02);
  border-radius: 50%;
  pointer-events: none;
  z-index: 991;
}

.hud-scanner-arcs::before {
  content: '';
  position: absolute;
  inset: -15px;
  border: 1px dashed rgba(127, 0, 255, 0.05);
  border-radius: 50%;
  animation: spin 90s linear infinite;
}

.hud-scanner-arcs::after {
  content: '';
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  border: 1px solid transparent;
  border-top-color: rgba(0, 240, 255, 0.08);
  border-bottom-color: rgba(0, 240, 255, 0.08);
  border-radius: 50%;
  animation: spin-reverse 45s linear infinite;
}

/* Flashing Cyber Cockpit Decals */
.hud-warning-decals {
  position: fixed;
  inset: 30px;
  pointer-events: none;
  z-index: 992;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 1px;
}

.decal-warning {
  position: absolute;
  color: var(--primary);
  opacity: 0.5;
  text-shadow: 0 0 4px var(--primary-glow);
  padding: 4px 8px;
  background: rgba(0, 240, 255, 0.015);
  border: 1.5px solid rgba(0, 240, 255, 0.15);
}

.decal-tl { top: 90px; left: 20px; border-right: none; border-bottom: none; }
.decal-tr { top: 90px; right: 20px; border-left: none; border-bottom: none; }
.decal-bl { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.decal-br { bottom: 20px; right: 20px; border-left: none; border-top: none; }

/* Asymmetric Hero Elements */
.hero-container-asymmetric {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  text-align: left;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 120px 40px 40px 40px;
  position: relative;
  z-index: 2;
}

.hero-content-left {
  max-width: 720px;
}

.hero-telemetry-right {
  background: rgba(6, 12, 10, 0.45);
  border: 1px solid var(--surface-border);
  border-radius: 4px;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 220px;
  position: relative;
  animation: float-telemetry 6s ease-in-out infinite;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.hero-stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.mini-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px dashed rgba(0, 240, 255, 0.2);
  padding-left: 8px;
}

.mini-stat-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.mini-stat-lbl {
  font-family: var(--font-mono);
  font-size: 7px;
  color: var(--text-muted);
  text-transform: uppercase;
}

@keyframes float-telemetry {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 992px) {
  .hero-container-asymmetric {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 100px;
  }
  .hero-telemetry-right {
    max-width: 500px;
  }
}

/* Animations Keyframes for Brand Name Glitch */
@keyframes brandGlitch1 {
  0% { transform: translate(-2px, -1px); clip-path: inset(0 0 70% 0); }
  25% { transform: translate(1px, 2px); clip-path: inset(40% 0 30% 0); }
  50% { transform: translate(-1px, -2px); clip-path: inset(20% 0 60% 0); }
  75% { transform: translate(2px, 1px); clip-path: inset(60% 0 10% 0); }
  100% { transform: translate(0, 0); clip-path: inset(0); }
}

@keyframes brandGlitch2 {
  0% { transform: translate(2px, 1px); clip-path: inset(60% 0 10% 0); }
  25% { transform: translate(-1px, -2px); clip-path: inset(10% 0 70% 0); }
  50% { transform: translate(2px, -1px); clip-path: inset(50% 0 20% 0); }
  75% { transform: translate(-2px, 2px); clip-path: inset(30% 0 40% 0); }
  100% { transform: translate(0, 0); clip-path: inset(0); }
}

.telemetry-bar-title {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1.5px;
  border-bottom: 1px dashed rgba(0, 240, 255, 0.2);
  padding-bottom: 6px;
  margin-bottom: 4px;
}

.telemetry-bar-line {
  color: var(--text-muted);
  letter-spacing: 0.5px;
  animation: pulse-telemetry 4s infinite ease-in-out;
}

.telemetry-bar-line:nth-child(2) { animation-delay: 0.5s; }
.telemetry-bar-line:nth-child(3) { animation-delay: 1s; }
.telemetry-bar-line:nth-child(4) { animation-delay: 1.5s; }
.telemetry-bar-line:nth-child(5) { animation-delay: 2s; }

/* Target-Lock Decals */
.hud-target-lock {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--primary);
  opacity: 0.25;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
}

.hud-target-lock::before {
  content: '';
  width: 5px;
  height: 5px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

.tech-card:hover .hud-target-lock,
.orbit-details-panel-horizontal:hover .hud-target-lock {
  opacity: 0.95;
  color: var(--text-primary);
  text-shadow: 0 0 5px var(--primary);
}

.tech-card:hover .hud-target-lock::before,
.orbit-details-panel-horizontal:hover .hud-target-lock::before {
  border-color: var(--secondary);
  background-color: var(--secondary-glow);
  box-shadow: 0 0 8px var(--secondary);
}

/* Responsive HUD layouts */
.hud-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.hud-four-col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* Lanyue Timeline styling */
.hud-timeline-wrapper {
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.hud-timeline-heading {
  font-family: var(--font-heading);
  font-size: 10px;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 35px;
  text-align: center;
  text-shadow: 0 0 8px var(--secondary-glow);
}

.hud-timeline-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  position: relative;
}

.hud-timeline-line {
  position: absolute;
  top: 12px;
  left: 16.6%;
  width: 66.8%;
  height: 1px;
  background: dashed rgba(0, 240, 255, 0.15);
  border-top: 1px dashed rgba(0, 240, 255, 0.25);
  z-index: 1;
}

.hud-timeline-node {
  position: relative;
  z-index: 2;
}

.hud-timeline-marker {
  width: 24px;
  height: 24px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 0 10px var(--primary-glow);
  transition: var(--transition-smooth);
}

.hud-timeline-marker.secondary {
  border-color: var(--secondary);
  box-shadow: 0 0 10px var(--secondary-glow);
}

.hud-timeline-marker span {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.hud-timeline-marker.secondary span {
  background: var(--secondary);
}

.hud-timeline-node:hover .hud-timeline-marker {
  transform: scale(1.2);
  border-color: var(--text-primary);
  box-shadow: 0 0 15px var(--primary);
}

.hud-timeline-node:hover .hud-timeline-marker.secondary {
  box-shadow: 0 0 15px var(--secondary);
}

.hud-timeline-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: #fff;
  margin: 6px 0;
  text-transform: uppercase;
}

.hud-timeline-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hud-telemetry-sidebar {
    display: none;
  }
  .hud-warning-decals {
    display: none;
  }
  .hud-grid-crosshair {
    display: none !important;
  }
  .hud-split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hud-four-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hud-timeline-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hud-timeline-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .container,
  .nav-container {
    padding: 0 20px;
  }
  .hero-container-asymmetric {
    padding: 100px 20px 20px 20px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hud-four-col-grid {
    grid-template-columns: 1fr;
  }
}

/* Keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes pulse-telemetry {
  0%, 100% { color: var(--text-muted); }
  50% { color: var(--text-secondary); text-shadow: 0 0 2px rgba(255,255,255,0.2); }
}
