/* 
  Volador Corporate Website Design System
  Theme: Tech Stark White & Industrial Grey
  Premium, Technical, Aerospace, Minimal
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Carbon Black & Neon Orange Theme */
  --bg-primary: #000000; /* Pure Pitch Black */
  --bg-secondary: #0A0A0A; /* Sleek Off-Black */
  --text-primary: #FFFFFF; /* Tech Stark Pure White */
  --text-secondary: #A0A5B5; /* Metallic Graphite Silver */
  --text-muted: #606470; /* Industrial Charcoal Grey */
  --accent: #FF5500; /* Vibrant Neon Orange */
  --accent-hover: #E54E00; /* Darker Orange Hover */
  --border-color: rgba(255, 255, 255, 0.08); /* Transparent borders for dark mode */
  --border-dark: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-display: 'Inter', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Spacing */
  --nav-height: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Engineering Grids & Layout Utilities */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.thin-border {
  border: 1px solid var(--border-color);
}

.border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.border-top {
  border-top: 1px solid var(--border-color);
}

.border-left {
  border-left: 1px solid var(--border-color);
}

.border-right {
  border-right: 1px solid var(--border-color);
}

/* Sharp Edges Override */
.sharp-card, button, input, textarea, select {
  border-radius: 0 !important;
}

/* Premium Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--text-primary);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.4s;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn:hover {
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.btn:hover::after {
  transform: scaleY(1);
  transform-origin: top;
}

/* Electric Accent Buttons */
.btn-accent {
  border-color: var(--accent);
  color: var(--bg-primary);
  background: var(--accent);
}

.btn-accent::after {
  background: var(--text-primary);
}

.btn-accent:hover {
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

.btn-secondary {
  border-color: var(--border-dark);
  color: var(--text-primary);
}

/* Technical Link Underline Hover Effect */
.tech-link {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.tech-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.tech-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Navigation System */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  background-color: rgba(10, 10, 10, 0.75); /* Frosted dark glass navigation bar */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  transition: background-color 0.4s, border-bottom 0.4s, box-shadow 0.4s, color 0.4s;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

@media (min-width: 1025px) {
  .navbar nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  transition: color 0.4s;
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
  transition: filter 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(0) invert(1) !important; /* Keep logo white in dark mode */
}

.logo .accent-dot {
  color: var(--accent);
  margin-left: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  padding: 10px 0;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

/* Dropdown Menu (Products hover) */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 10px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  z-index: 1000;
  text-align: left;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered load animation */
.nav-item-dropdown:hover .dropdown-menu li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}
.nav-item-dropdown:hover .dropdown-menu li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}
.nav-item-dropdown:hover .dropdown-menu li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.19s;
}
.nav-item-dropdown:hover .dropdown-menu li:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}
.nav-item-dropdown:hover .dropdown-menu li:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.33s;
}

.dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--text-secondary) !important;
  transition: color 0.3s, padding-left 0.3s !important;
  border-bottom: none !important;
}

.dropdown-menu a:hover {
  color: var(--accent) !important;
  padding-left: 30px !important;
}

/* Subpage banner active header alignment */
body.has-transparent-header header:not(.scrolled):not(.dark-banner) .dropdown-menu {
  background-color: rgba(17, 17, 17, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.has-transparent-header header:not(.scrolled):not(.dark-banner) .dropdown-menu a {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.has-transparent-header header:not(.scrolled):not(.dark-banner) .dropdown-menu a:hover {
  color: var(--bg-primary) !important;
}

/* Transparent Header (only active when body has .has-transparent-header AND header is not scrolled or dark) */
body.has-transparent-header header:not(.scrolled):not(.dark-banner) {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

body.has-transparent-header header:not(.scrolled):not(.dark-banner) .logo {
  color: var(--bg-primary);
}

body.has-transparent-header header:not(.scrolled):not(.dark-banner) .logo img {
  filter: brightness(0) invert(1);
}


body.has-transparent-header header:not(.scrolled):not(.dark-banner) .nav-links a {
  color: rgba(255, 255, 255, 0.7);
}

body.has-transparent-header header:not(.scrolled):not(.dark-banner) .nav-links a:hover,
body.has-transparent-header header:not(.scrolled):not(.dark-banner) .nav-links a.active {
  color: var(--accent);
}

body.has-transparent-header header:not(.scrolled):not(.dark-banner) .mobile-toggle span {
  background-color: var(--bg-primary);
}

/* Dynamic Dark Banner (when scrolled over dark sections or on black pages) */
header.dark-banner {
  background-color: var(--bg-primary) !important; /* Sleek Black */
  border-bottom: 1px solid var(--border-color) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

header.dark-banner .logo {
  color: var(--text-primary) !important;
}

header.dark-banner .logo img {
  filter: brightness(0) invert(1) !important;
}


header.dark-banner .nav-links a {
  color: rgba(255, 255, 255, 0.7) !important;
}

header.dark-banner .nav-links a:hover,
header.dark-banner .nav-links a.active {
  color: var(--accent) !important;
}

header.dark-banner .mobile-toggle span {
  background-color: var(--bg-primary) !important;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s, background-color 0.4s;
}

/* Mobile Nav Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 99;
  padding: 120px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border-color);
}

.mobile-menu.open {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-nav-links a:hover {
  color: var(--accent);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

/* Motion Reveal Animation Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Zoom Image Reveal */
.zoom-container {
  overflow: hidden;
  position: relative;
}

.zoom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.zoom-container:hover .zoom-image {
  transform: scale(1.04);
}

/* Image Mask Reveal */
.mask-container {
  position: relative;
  overflow: hidden;
}

.mask-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 2;
}

.mask-container.revealed::after {
  transform: scaleX(0);
  pointer-events: none;
}

/* Global Footer */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}

.footer-top {
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo .accent-dot {
  color: var(--accent);
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 30px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-link-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-link-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-group a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-link-group a:hover {
  color: var(--text-primary);
  padding-left: 4px;
  transition: padding 0.2s ease, color 0.2s ease;
}

.newsletter-form h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.newsletter-input-group {
  display: flex;
  margin-top: 15px;
}

.newsletter-input-group input {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.9rem;
  border: 1px solid var(--border-dark);
  border-right: none;
  background-color: var(--bg-primary);
  outline: none;
  color: var(--text-primary);
}

.newsletter-input-group button {
  padding: 12px 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  header {
    height: 70px;
  }
  .nav-links, .nav-cta-wrapper {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-top .grid-12 {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* Utility spacer classes */
.py-large {
  padding-top: 120px;
  padding-bottom: 120px;
}
.py-medium {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .py-large {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .py-medium {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* Editorial Layout Title Section */
.section-header {
  margin-bottom: 60px;
}

.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.8rem;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Cinematic Redesign Extensions
   ========================================================================== */

/* 1. Global Film-Grain Overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* 2. Floating Sound Toggle Widget */
.sound-toggle-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background-color: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--border-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.sound-toggle-btn:hover {
  background-color: var(--bg-secondary);
  border-color: var(--text-muted);
  transform: scale(1.05);
}

.sound-toggle-btn svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

.sound-toggle-btn .sound-on {
  display: none;
}

.sound-toggle-btn.unmuted .sound-on {
  display: block;
}

.sound-toggle-btn.unmuted .sound-off {
  display: none;
}


/* Smooth Scrolling & Sticky Nav Tweaks */
html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.4s, border-color 0.4s, box-shadow 0.4s;
}

header.scrolled {
  background-color: rgba(10, 10, 10, 0.78) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

header.dark-banner {
  background-color: rgba(17, 17, 17, 0.78) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18) !important;
}

/* Page Transition Overlay */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 9999;
  pointer-events: all;
  opacity: 1;
  transition: none;
}

/* Scrolling Side Drone Styling */
.scrolling-side-drone {
  position: absolute;
  top: 40%;
  left: -160px; /* Offscreen left initially */
  width: 130px;
  height: 130px;
  color: var(--accent); /* Neon Orange */
  opacity: 0.18; /* Subtle watermark vector style */
  z-index: 0; /* Behind content */
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}

.scrolling-side-drone svg {
  width: 100%;
  height: 100%;
}

/* Shared Propeller Spin Animations for any page drone */
.prop-tl {
  transform-origin: 50px 50px;
  animation: preloaderPropSpin 0.12s linear infinite;
}

.prop-tr {
  transform-origin: 150px 50px;
  animation: preloaderPropSpinReverse 0.12s linear infinite;
}

.prop-bl {
  transform-origin: 50px 150px;
  animation: preloaderPropSpinReverse 0.12s linear infinite;
}

.prop-br {
  transform-origin: 150px 150px;
  animation: preloaderPropSpin 0.12s linear infinite;
}

@keyframes preloaderPropSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderPropSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

/* ==========================================================================
   Glowing Neon Orange Energy Lines (Global Component)
   ========================================================================== */
.energy-line {
  position: relative;
  width: 100%;
  height: 3px;
  background: #401500; /* Solid dark orange base line (non-transparent equivalent of 25% orange on black) */
  overflow: hidden;
  box-shadow: 0 0 6px rgba(255, 85, 0, 0.15);
  margin: 0;
  border: none;
  z-index: 5;
}

.energy-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  box-shadow: 0 0 12px var(--accent), 0 0 24px var(--accent), 0 0 4px var(--accent); /* Much brighter neon orange glow */
  animation: energyLineFlow 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Variations for organic/async pulses */
.energy-line.fast::after {
  animation-duration: 3.5s;
}

.energy-line.slow::after {
  animation-duration: 7s;
}

.energy-line.delay-1::after {
  animation-delay: 1.5s;
}

.energy-line.delay-2::after {
  animation-delay: 3s;
}

@keyframes energyLineFlow {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}

/* Glowing Neon Orange vertical line for timelines */
.vertical-energy-conduit {
  position: relative;
  overflow: hidden;
}

.vertical-energy-conduit::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 3px !important;
  background: #331100 !important; /* Solid dark orange (non-transparent equivalent of 20% orange on black) */
  box-shadow: 0 0 6px rgba(255, 85, 0, 0.1) !important;
}

.vertical-energy-conduit::after {
  content: '' !important;
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: -30% !important;
  width: 3px !important;
  height: 25% !important;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 50%, transparent 100%) !important;
  box-shadow: 0 0 12px var(--accent), 0 0 24px var(--accent) !important;
  animation: verticalEnergyFlow 4.5s linear infinite !important;
}

@keyframes verticalEnergyFlow {
  0% {
    top: -30%;
  }
  100% {
    top: 130%;
  }
}

/* Global timeline dot glow override */
.timeline-dot {
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent) !important;
  transition: all 0.3s ease;
}

.timeline-dot:hover {
  transform: scale(1.25);
  box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent) !important;
}


