/* ==========================================
   ENHANCED HERO SECTION
   Darker background + Premium styling
   ========================================== */

/* Override hero background - Much darker */
.revolutionary-hero {
  background: linear-gradient(135deg, #000000 0%, #020208 40%, #050510 100%);
  min-height: 100vh;
  position: relative;
}

/* Subtle gradient overlays */
.revolutionary-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
  animation: heroPulse 12s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Reduce neural particles intensity */
.neural-particles {
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.04) 0%, transparent 40%);
  animation: particleFloat 15s ease-in-out infinite alternate;
}

/* Hero Grid */
.hero-grid {
  /* Let container padding handle spacing */
}

/* Hero Content - ensure all elements align left together */
.hero-content {
  text-align: left !important;
  display: block !important;
}

/* Override any centering margins from styles.css */
.hero-content p,
.hero-content h1,
.hero-content .hero-hook,
.hero-content .hero-title,
.hero-content .hero-description {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

/* Hero Hook - Above headline */
.hero-hook {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(0, 212, 255, 0.9);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-transform: none;
  display: block !important;
}

/* Enhanced Hero Title */
.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title .title-main {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 40%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  display: block !important;
}

/* Enhanced Hero Description */
.hero-description {
  font-size: 1.15rem;
  color: rgba(200, 215, 235, 0.85);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

/* Enhanced Hero Actions Container */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: flex-start !important;
}

/* ========== PREMIUM BUTTON STYLES ========== */

/* Primary Button - Gradient with glow */
.btn-revolutionary.primary {
  background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  border: none;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: none;
  color: white;
  box-shadow:
    0 4px 20px rgba(0, 212, 255, 0.3),
    0 0 40px rgba(0, 212, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-revolutionary.primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-revolutionary.primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(0, 212, 255, 0.5),
    0 0 60px rgba(139, 92, 246, 0.3);
}

.btn-revolutionary.primary:hover::before {
  opacity: 1;
}

.btn-revolutionary.primary .btn-text,
.btn-revolutionary.primary .btn-icon {
  position: relative;
  z-index: 2;
}

/* Secondary Button - Glassmorphism style */
.btn-revolutionary.secondary {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-revolutionary.secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-revolutionary.secondary:hover {
  border-color: rgba(0, 212, 255, 0.6);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(0, 212, 255, 0.2),
    inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.btn-revolutionary.secondary:hover::before {
  opacity: 1;
}

.btn-revolutionary.secondary .btn-text,
.btn-revolutionary.secondary .btn-icon {
  position: relative;
  z-index: 2;
}

/* Button icon animation */
.btn-revolutionary .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn-revolutionary:hover .btn-icon {
  transform: translateX(4px);
}

/* ========== SCROLL INDICATOR ENHANCEMENT ========== */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.7;
  animation: scrollBounce 2.5s ease-in-out infinite;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
  opacity: 1;
}

.scroll-arrow span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200, 215, 235, 0.6);
}

.scroll-arrow .arrow-down {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(200, 215, 235, 0.25);
  border-radius: 12px;
  position: relative;
}

.scroll-arrow .arrow-down::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: linear-gradient(180deg, #00d4ff, rgba(0, 212, 255, 0.3));
  border-radius: 2px;
  animation: scrollDot 2.5s ease-in-out infinite;
}

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

@keyframes scrollDot {
  0%, 100% {
    top: 8px;
    opacity: 1;
    height: 10px;
  }
  50% {
    top: 20px;
    opacity: 0.3;
    height: 6px;
  }
}

/* ========== GRID LINE DECORATION ========== */
.revolutionary-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure content is above grid */
.hero-container {
  position: relative;
  z-index: 5;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 992px) {
  .hero-title .title-main {
    text-align: center;
  }

  .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }
}

/* ==========================================
   QUANTUM AI INTEGRATION GRAPHIC - HERO
   Advanced morphing, particles & energy effects
   ========================================== */

.hero-ai-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem 0;
  perspective: 1000px;
  /* Ensure completely transparent - seamless with hero */
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  /* Allow particles to extend beyond container */
  overflow: visible !important;
}

.ai-integration-graphic {
  position: relative;
  width: 450px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  /* Glow pulse synced with morph animation cycle */
  animation: containerGlowPulse 18s linear infinite;
  /* Allow particles to extend beyond container */
  overflow: visible !important;
}

/* Container glow that changes colors with the morph cycle */
@keyframes containerGlowPulse {
  0%, 20% { filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.25)); }
  25%, 45% { filter: drop-shadow(0 0 70px rgba(139, 92, 246, 0.3)); }
  50%, 70% { filter: drop-shadow(0 0 70px rgba(236, 72, 153, 0.3)); }
  75%, 95% { filter: drop-shadow(0 0 60px rgba(16, 185, 129, 0.25)); }
  100% { filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.25)); }
}

/* ===== QUANTUM PLASMA BACKGROUND - Hidden for seamless hero blend ===== */
/* Particles are kept but backgrounds are disabled to blend with hero */
.ai-integration-graphic::before {
  display: none;
}

.ai-integration-graphic::after {
  display: none;
}

@keyframes quantumPlasma {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) scale(1);
  }
  20% {
    border-radius: 58% 42% 25% 75% / 75% 42% 58% 25%;
    transform: rotate(72deg) scale(1.12);
  }
  40% {
    border-radius: 25% 75% 70% 30% / 40% 75% 25% 60%;
    transform: rotate(144deg) scale(0.95);
  }
  60% {
    border-radius: 70% 30% 40% 60% / 60% 30% 70% 40%;
    transform: rotate(216deg) scale(1.1);
  }
  80% {
    border-radius: 40% 60% 55% 45% / 45% 55% 45% 55%;
    transform: rotate(288deg) scale(1.02);
  }
}

@keyframes quantumSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== ENERGY WAVE RINGS ===== */
.ai-orbit::before,
.ai-orbit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid transparent;
  transform: translate(-50%, -50%);
}

.ai-orbit::before {
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), transparent, rgba(139, 92, 246, 0.3)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: energyRing1 8s ease-in-out infinite;
}

.ai-orbit::after {
  width: 320px;
  height: 320px;
  background: linear-gradient(225deg, rgba(236, 72, 153, 0.4), transparent, rgba(16, 185, 129, 0.4)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: energyRing2 6s ease-in-out infinite reverse;
}

@keyframes energyRing1 {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.05);
    opacity: 1;
  }
}

@keyframes energyRing2 {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) rotate(-180deg) scale(0.95);
    opacity: 0.8;
  }
}

/* ===== HEXAGONAL CORE WITH 3D EFFECT ===== */
.business-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.business-icon {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  animation: coreFloat 6s ease-in-out infinite, iconMorph 15s ease-in-out infinite;
}

/* The morphing container shape */
@keyframes iconMorph {
  0%, 100% {
    width: 120px;
    height: 120px;
    border-radius: 30%;
  }
  15% {
    width: 130px;
    height: 110px;
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  }
  30% {
    width: 110px;
    height: 130px;
    border-radius: 50%;
  }
  45% {
    width: 125px;
    height: 125px;
    border-radius: 25%;
  }
  60% {
    width: 115px;
    height: 120px;
    border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
  }
  75% {
    width: 130px;
    height: 115px;
    border-radius: 45%;
  }
  90% {
    width: 118px;
    height: 128px;
    border-radius: 35% 65% 55% 45% / 55% 45% 55% 45%;
  }
}

/* Hexagonal shape with gradient - MORPHING */
.business-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,
    rgba(15, 23, 42, 0.98) 0%,
    rgba(30, 41, 59, 0.95) 50%,
    rgba(15, 23, 42, 0.98) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 2px 10px rgba(255, 255, 255, 0.1),
    inset 0 -2px 10px rgba(0, 0, 0, 0.3);
  animation: coreMorph 15s ease-in-out infinite;
}

/* Animated gradient border - MORPHING (no rotation to allow clip-path to work) */
.business-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: conic-gradient(from 0deg,
    #00d4ff,
    #8b5cf6,
    #ec4899,
    #10b981,
    #f59e0b,
    #00d4ff);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
  animation: coreMorph 15s ease-in-out infinite, borderGlow 3s ease-in-out infinite;
  filter: blur(2px);
}

/* Border glow pulsing effect (replaces rotation) */
@keyframes borderGlow {
  0%, 100% {
    filter: blur(2px) brightness(1);
  }
  50% {
    filter: blur(4px) brightness(1.3);
  }
}

/* Core shape morphing animation - DRAMATIC clip-path changes */
@keyframes coreMorph {
  0%, 100% {
    /* Hexagon */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }
  12% {
    /* Circle (8 points) */
    clip-path: polygon(50% 0%, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 15% 15%);
  }
  25% {
    /* Square with rounded corners */
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
  }
  37% {
    /* Diamond */
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  }
  50% {
    /* Pentagon */
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  }
  62% {
    /* Octagon */
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  }
  75% {
    /* Triangle */
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  }
  87% {
    /* Rounded hexagon */
    clip-path: polygon(50% 5%, 92% 28%, 92% 72%, 50% 95%, 8% 72%, 8% 28%);
  }
}

@keyframes coreFloat {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
    filter: drop-shadow(0 25px 50px rgba(0, 212, 255, 0.3));
  }
  25% {
    transform: translateY(-8px) rotateX(5deg) rotateY(5deg);
    filter: drop-shadow(0 35px 60px rgba(139, 92, 246, 0.4));
  }
  50% {
    transform: translateY(-5px) rotateX(0deg) rotateY(0deg);
    filter: drop-shadow(0 30px 55px rgba(236, 72, 153, 0.35));
  }
  75% {
    transform: translateY(-10px) rotateX(-5deg) rotateY(-5deg);
    filter: drop-shadow(0 40px 65px rgba(16, 185, 129, 0.4));
  }
}

/* Inner glow effect */
.business-icon-inner {
  position: absolute;
  inset: 8px;
  background: radial-gradient(ellipse at center,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: innerPulse 3s ease-in-out infinite, coreMorph 12s ease-in-out infinite;
}

@keyframes innerPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.business-icon i {
  font-size: 2.75rem;
  position: relative;
  z-index: 5;
  background: linear-gradient(135deg,
    #00d4ff 0%,
    #8b5cf6 40%,
    #ec4899 70%,
    #00d4ff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: iconGradient 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

@keyframes iconGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.business-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow:
    0 0 10px rgba(0, 212, 255, 0.5),
    0 2px 15px rgba(0, 0, 0, 0.8);
  animation: labelPulse 4s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 2px 15px rgba(0, 0, 0, 0.8);
  }
  50% {
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.7), 0 2px 20px rgba(0, 0, 0, 0.8);
  }
}

/* ===== AI ORBIT CONTAINER ===== */
.ai-orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: orbitRotate 40s linear infinite;
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== ORBIT NODES - FLOATING CAPSULES ===== */
.orbit-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: counterRotate 40s linear infinite;
}

@keyframes counterRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Node positions - spread out */
.node-agents {
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
}

.node-workflows {
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
}

.node-integrations {
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
}

.node-analytics {
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
}

/* Node Icon - Futuristic capsule design */
.node-icon {
  width: 70px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glass container */
.node-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 41, 59, 0.9) 100%);
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  animation: nodeMorph 8s ease-in-out infinite;
}

/* Glowing border */
.node-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(135deg,
    var(--node-color-1, #00d4ff) 0%,
    var(--node-color-2, #8b5cf6) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderPulse 3s ease-in-out infinite;
}

/* Individual node colors */
.node-agents .node-icon {
  --node-color-1: #00d4ff;
  --node-color-2: #06b6d4;
}
.node-workflows .node-icon {
  --node-color-1: #a78bfa;
  --node-color-2: #8b5cf6;
}
.node-integrations .node-icon {
  --node-color-1: #34d399;
  --node-color-2: #10b981;
}
.node-analytics .node-icon {
  --node-color-1: #f472b6;
  --node-color-2: #ec4899;
}

@keyframes nodeMorph {
  0%, 100% { border-radius: 24px; }
  25% { border-radius: 30px 18px 30px 18px; }
  50% { border-radius: 18px 30px 18px 30px; }
  75% { border-radius: 28px 20px 28px 20px; }
}

@keyframes borderPulse {
  0%, 100% { opacity: 0.6; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.3); }
}

/* Node floating animation */
.node-agents .node-icon { animation: nodeFloat1 5s ease-in-out infinite; }
.node-workflows .node-icon { animation: nodeFloat2 6s ease-in-out infinite; }
.node-integrations .node-icon { animation: nodeFloat3 5.5s ease-in-out infinite; }
.node-analytics .node-icon { animation: nodeFloat4 6.5s ease-in-out infinite; }

@keyframes nodeFloat1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}
@keyframes nodeFloat2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}
@keyframes nodeFloat3 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.04); }
}
@keyframes nodeFloat4 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-9px) scale(1.06); }
}

.node-icon i {
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 15px currentColor);
}

.node-agents .node-icon i { color: #00d4ff; }
.node-workflows .node-icon i { color: #a78bfa; }
.node-integrations .node-icon i { color: #34d399; }
.node-analytics .node-icon i { color: #f472b6; }

.node-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8));
}

/* ===== NEURAL CONNECTION LINES ===== */
.connection-line {
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg,
    var(--node-color-1, #00d4ff) 0%,
    transparent 100%);
  border-radius: 2px;
  overflow: hidden;
}

.connection-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 100%);
  animation: dataFlow 1.5s ease-in-out infinite;
}

@keyframes dataFlow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.node-agents .connection-line {
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  --node-color-1: #00d4ff;
}

.node-workflows .connection-line {
  left: -35px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  --node-color-1: #a78bfa;
  animation-delay: -0.4s;
}

.node-integrations .connection-line {
  top: -35px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  --node-color-1: #34d399;
  animation-delay: -0.8s;
}

.node-analytics .connection-line {
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  --node-color-1: #f472b6;
  animation-delay: -1.2s;
}

/* ===== FLOATING PARTICLE FIELD ===== */
.people-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: counterRotate 40s linear infinite;
  pointer-events: none;
}

.person-icon {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(0, 212, 255, 0.6) 40%,
    transparent 70%);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
}

.person-icon i { display: none; }

@keyframes particleFloat {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
    filter: blur(0px);
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
    filter: blur(1px);
  }
}

.person-1 { top: 18%; right: 15%; animation-delay: 0s; width: 8px; height: 8px; }
.person-2 { bottom: 20%; right: 20%; animation-delay: -2s; width: 12px; height: 12px; }
.person-3 { bottom: 25%; left: 15%; animation-delay: -4s; width: 6px; height: 6px; }

/* Additional particles */
.people-icons::before,
.people-icons::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(139, 92, 246, 0.8) 0%,
    transparent 70%);
}

.people-icons::before {
  width: 8px;
  height: 8px;
  top: 30%;
  left: 22%;
  animation: particleFloat 7s ease-in-out infinite -3s;
}

.people-icons::after {
  width: 10px;
  height: 10px;
  top: 25%;
  right: 28%;
  animation: particleFloat 9s ease-in-out infinite -1s;
  background: radial-gradient(circle,
    rgba(236, 72, 153, 0.8) 0%,
    transparent 70%);
}

/* ===== SVG CONNECTIONS ===== */
.integration-connections {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orbit-path {
  animation: orbitDash 15s linear infinite;
}

@keyframes orbitDash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 100; }
}

/* ===== OBCA HOLOGRAPHIC LABEL ===== */
.obca-label {
  position: relative;
  margin-top: 20px;
  text-align: center;
  z-index: 15;
  padding: 1rem 2rem;
  background: linear-gradient(145deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 41, 59, 0.9) 100%);
  border-radius: 20px;
  border: 1px solid transparent;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  overflow: hidden;
  width: fit-content;
}

/* Animated gradient border */
.obca-label::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg,
    #00d4ff,
    #8b5cf6,
    #ec4899,
    #10b981,
    #00d4ff);
  background-size: 400% 100%;
  border-radius: 21px;
  z-index: -1;
  animation: holoShift 6s linear infinite;
}

/* Inner background */
.obca-label::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(145deg,
    rgba(15, 23, 42, 0.98) 0%,
    rgba(30, 41, 59, 0.95) 100%);
  border-radius: 18px;
  z-index: -1;
}

@keyframes holoShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}

.obca-text {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(90deg,
    #00d4ff 0%,
    #8b5cf6 25%,
    #ec4899 50%,
    #8b5cf6 75%,
    #00d4ff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 6px;
  animation: textFlow 4s linear infinite;
  position: relative;
}

@keyframes textFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.obca-full {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
  margin-top: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ==========================================
   VIDEO SHOWCASE SECTION
   ========================================== */

.video-showcase-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #050510 0%, #0a0a1a 100%);
  position: relative;
}

.video-showcase-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.video-showcase-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.video-showcase-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.video-showcase-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-showcase-wrapper .youtube-container-hero {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

/* ==========================================
   RESPONSIVE - AI Integration Graphic
   ========================================== */

@media (max-width: 992px) {
  .hero-ai-visual {
    margin-top: 2rem;
    padding: 1rem 0;
  }

  .ai-integration-graphic {
    width: 380px;
    height: 380px;
  }

  .ai-integration-graphic::before {
    width: 300px;
    height: 300px;
  }

  .ai-integration-graphic::after {
    width: 260px;
    height: 260px;
  }

  .ai-orbit::before {
    width: 320px;
    height: 320px;
  }

  .ai-orbit::after {
    width: 280px;
    height: 280px;
  }

  .business-icon {
    width: 100px;
    height: 100px;
  }

  .business-icon i {
    font-size: 2.25rem;
  }

  .node-icon {
    width: 60px;
    height: 60px;
  }

  .node-icon i {
    font-size: 1.4rem;
  }

  .node-label {
    font-size: 0.65rem;
  }

  .obca-label {
    margin-top: 15px;
    padding: 0.75rem 1.5rem;
  }

  .obca-text {
    font-size: 1.4rem;
    letter-spacing: 5px;
  }
}

@media (max-width: 768px) {
  .hero-ai-visual {
    padding: 0.5rem 0;
    perspective: none;
    /* Remove scaling here - handled in later media query */
    transform: none;
    transform-origin: center;
  }

  .ai-integration-graphic {
    width: 240px;
    height: 240px;
    transform-style: flat;
    max-width: 100%;
  }

  .ai-integration-graphic::before {
    width: 240px;
    height: 240px;
    filter: blur(35px);
    animation: none;
    border-radius: 50%;
  }

  .ai-integration-graphic::after {
    width: 200px;
    height: 200px;
    filter: blur(30px);
    animation: none;
  }

  /* Simplified energy rings on mobile */
  .ai-orbit::before {
    width: 270px;
    height: 270px;
    animation: none;
    opacity: 0.5;
  }

  .ai-orbit::after {
    width: 230px;
    height: 230px;
    animation: none;
    opacity: 0.4;
  }

  /* Disable rotation on mobile */
  .ai-orbit {
    animation: none;
  }

  .orbit-node {
    animation: none;
  }

  /* Hide particles on mobile */
  .people-icons {
    display: none;
  }

  /* Simplified core on mobile */
  .business-icon {
    width: 90px;
    height: 90px;
    animation: none;
  }

  .business-icon::before {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }

  .business-icon::after {
    animation: none;
    filter: none;
  }

  .business-icon i {
    font-size: 2rem;
    animation: none;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
  }

  .business-label {
    font-size: 0.75rem;
    animation: none;
  }

  /* Node positions adjusted for mobile */
  .node-agents { top: 0%; }
  .node-workflows { right: -2%; }
  .node-integrations { bottom: 0%; }
  .node-analytics { left: -2%; }

  .node-icon {
    width: 52px;
    height: 52px;
  }

  .node-icon::before {
    animation: none;
    border-radius: 18px;
  }

  .node-icon::after {
    animation: none;
  }

  .node-agents .node-icon,
  .node-workflows .node-icon,
  .node-integrations .node-icon,
  .node-analytics .node-icon {
    animation: none;
  }

  .node-icon i {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px currentColor);
  }

  .node-label {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .connection-line {
    display: none;
  }

  .obca-label {
    margin-top: 12px;
    padding: 0.6rem 1.25rem;
  }

  .obca-label::before {
    animation: none;
    background: linear-gradient(90deg, #00d4ff, #8b5cf6, #ec4899);
  }

  .obca-text {
    font-size: 1.2rem;
    letter-spacing: 4px;
    animation: none;
  }

  .obca-full {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }

  .video-showcase-section {
    padding: 40px 0 60px;
  }
}

@media (max-width: 480px) {
  .ai-integration-graphic {
    width: 280px;
    height: 280px;
  }

  .ai-integration-graphic::before {
    width: 200px;
    height: 200px;
  }

  .ai-integration-graphic::after {
    width: 160px;
    height: 160px;
  }

  .ai-orbit::before {
    width: 230px;
    height: 230px;
  }

  .ai-orbit::after {
    width: 190px;
    height: 190px;
  }

  .business-icon {
    width: 75px;
    height: 75px;
  }

  .business-icon i {
    font-size: 1.75rem;
  }

  .business-label {
    font-size: 0.65rem;
  }

  .node-icon {
    width: 44px;
    height: 44px;
  }

  .node-icon i {
    font-size: 1rem;
  }

  .node-label {
    font-size: 0.55rem;
  }

  .obca-label {
    margin-top: 8px;
    padding: 0.5rem 1rem;
  }

  .obca-text {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .obca-full {
    font-size: 0.5rem;
  }
}


/* ==========================================
   OBCA NEURAL SYSTEM - 2025 UI DESIGN
   Glassmorphism, particles, holographic effects
   ========================================== */

/* Main Container */
.obca-neural-system {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Completely transparent - seamless with hero */
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  /* Allow particles to extend beyond container */
  overflow: visible !important;
}

/* Ambient Glow Background - hidden for seamless hero blend */
.neural-ambient {
  display: none;
}

@keyframes ambientPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.9;
    transform: scale(1.1) rotate(5deg);
  }
  66% {
    opacity: 0.7;
    transform: scale(0.95) rotate(-3deg);
  }
}

/* Floating Particles - Animated with morph cycle */
.neural-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background: transparent !important;
  overflow: hidden;
}

.neural-particles .particle {
  position: absolute;
  border-radius: 50%;
  /* No background fill - only glow effect */
  background: transparent;
  animation: particleDrift var(--particle-duration, 8s) ease-in-out infinite,
             particleGlow 18s linear infinite;
  box-shadow: 0 0 15px var(--particle-color, #00d4ff);
}

/* Particle dot itself */
.neural-particles .particle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--particle-color, #00d4ff);
  opacity: 0.8;
}

.particle.p1 {
  --particle-color: #00d4ff;
  width: 8px; height: 8px;
  top: 10%; left: 15%;
  --particle-duration: 7s;
}
.particle.p2 {
  --particle-color: #8b5cf6;
  width: 6px; height: 6px;
  top: 20%; right: 10%;
  --particle-duration: 9s;
  animation-delay: -2s;
}
.particle.p3 {
  --particle-color: #ec4899;
  width: 10px; height: 10px;
  bottom: 25%; left: 8%;
  --particle-duration: 6s;
  animation-delay: -1s;
}
.particle.p4 {
  --particle-color: #10b981;
  width: 5px; height: 5px;
  bottom: 15%; right: 20%;
  --particle-duration: 10s;
  animation-delay: -3s;
}
.particle.p5 {
  --particle-color: #f59e0b;
  width: 7px; height: 7px;
  top: 40%; left: 5%;
  --particle-duration: 8s;
  animation-delay: -4s;
}
.particle.p6 {
  --particle-color: #00d4ff;
  width: 4px; height: 4px;
  top: 5%; right: 30%;
  --particle-duration: 11s;
  animation-delay: -5s;
}
.particle.p7 {
  --particle-color: #8b5cf6;
  width: 9px; height: 9px;
  bottom: 5%; left: 35%;
  --particle-duration: 7s;
  animation-delay: -2.5s;
}
.particle.p8 {
  --particle-color: #ec4899;
  width: 6px; height: 6px;
  top: 60%; right: 5%;
  --particle-duration: 9s;
  animation-delay: -1.5s;
}

/* Particle glow syncs with morph cycle colors */
@keyframes particleGlow {
  0%, 20% { filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.8)); }
  25%, 45% { filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.8)); }
  50%, 70% { filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.8)); }
  75%, 95% { filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.8)); }
  100% { filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.8)); }
}

@keyframes particleDrift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(15px, -20px) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translate(-10px, 10px) scale(0.9);
    opacity: 0.6;
  }
  75% {
    transform: translate(20px, 15px) scale(1.1);
    opacity: 0.9;
  }
}

/* Orbital Ring System - Animated with morph cycle */
.orbital-system {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  pointer-events: none;
  z-index: 3;
  background: transparent !important;
}

.orbital-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid transparent;
  transform-origin: center;
}

.orbital-ring.ring-1 {
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-color: rgba(0, 212, 255, 0.2);
  animation: orbitSpin 20s linear infinite, ringPulse1 18s linear infinite;
}

.orbital-ring.ring-2 {
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-color: rgba(139, 92, 246, 0.15);
  animation: orbitSpin 30s linear infinite reverse, ringPulse2 18s linear infinite;
}

.orbital-ring.ring-3 {
  width: 340px;
  height: 340px;
  margin: -170px 0 0 -170px;
  border-color: rgba(236, 72, 153, 0.1);
  animation: orbitSpin 40s linear infinite, ringPulse3 18s linear infinite;
}

/* Orbital dots on rings */
.orbital-ring::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: -5px;
  left: 50%;
  margin-left: -5px;
}

.orbital-ring.ring-1::before {
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  box-shadow: 0 0 15px #00d4ff;
  animation: orbitalDotPulse 2s ease-in-out infinite;
}

.orbital-ring.ring-2::before {
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  box-shadow: 0 0 15px #8b5cf6;
  animation: orbitalDotPulse 2.5s ease-in-out infinite;
  width: 8px; height: 8px;
  margin-left: -4px; top: -4px;
}

.orbital-ring.ring-3::before {
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
  box-shadow: 0 0 12px #ec4899;
  animation: orbitalDotPulse 3s ease-in-out infinite;
  width: 6px; height: 6px;
  margin-left: -3px; top: -3px;
}

/* Second dot on opposite side */
.orbital-ring::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  bottom: -3px;
  left: 50%;
  margin-left: -3px;
}

.orbital-ring.ring-1::after {
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  box-shadow: 0 0 10px #10b981;
}

.orbital-ring.ring-2::after {
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  box-shadow: 0 0 10px #f59e0b;
  width: 5px; height: 5px;
}

.orbital-ring.ring-3::after {
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  box-shadow: 0 0 8px #00d4ff;
  width: 4px; height: 4px;
}

@keyframes orbitalDotPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.5); opacity: 1; }
}

/* Ring pulse syncs with morph cycle */
@keyframes ringPulse1 {
  0%, 20% { border-color: rgba(0, 212, 255, 0.3); box-shadow: 0 0 20px rgba(0, 212, 255, 0.1); }
  25%, 45% { border-color: rgba(139, 92, 246, 0.25); box-shadow: 0 0 25px rgba(139, 92, 246, 0.1); }
  50%, 70% { border-color: rgba(236, 72, 153, 0.25); box-shadow: 0 0 25px rgba(236, 72, 153, 0.1); }
  75%, 95% { border-color: rgba(16, 185, 129, 0.2); box-shadow: 0 0 20px rgba(16, 185, 129, 0.1); }
  100% { border-color: rgba(0, 212, 255, 0.3); box-shadow: 0 0 20px rgba(0, 212, 255, 0.1); }
}

@keyframes ringPulse2 {
  0%, 20% { border-color: rgba(139, 92, 246, 0.2); }
  25%, 45% { border-color: rgba(236, 72, 153, 0.18); }
  50%, 70% { border-color: rgba(16, 185, 129, 0.18); }
  75%, 95% { border-color: rgba(0, 212, 255, 0.15); }
  100% { border-color: rgba(139, 92, 246, 0.2); }
}

@keyframes ringPulse3 {
  0%, 20% { border-color: rgba(236, 72, 153, 0.12); }
  25%, 45% { border-color: rgba(16, 185, 129, 0.1); }
  50%, 70% { border-color: rgba(0, 212, 255, 0.1); }
  75%, 95% { border-color: rgba(139, 92, 246, 0.1); }
  100% { border-color: rgba(236, 72, 153, 0.12); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Central OBCA Core */
.obca-core {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Morphing Glass Container - transparent with morphing border animation */
.core-glass {
  position: absolute;
  inset: 0;
  border-radius: 40%;
  /* Transparent background - seamless with hero */
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  animation: glassMorph 12s ease-in-out infinite;
  overflow: hidden;
}

/* Glass Reflection - hidden for seamless hero blend */
.glass-reflection {
  display: none;
}

/* Gradient Border Animation - morphing animated border */
.core-glass::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: conic-gradient(from 0deg,
    #00d4ff,
    #8b5cf6,
    #ec4899,
    #10b981,
    #f59e0b,
    #00d4ff);
  border-radius: inherit;
  z-index: -1;
  animation: borderRotate 8s linear infinite, glassMorph 12s ease-in-out infinite, borderGlowCycle 18s linear infinite;
  filter: blur(3px);
}

/* Inner dark fill to create border effect */
.core-glass::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(145deg,
    rgba(5, 10, 20, 0.95) 0%,
    rgba(10, 15, 30, 0.9) 50%,
    rgba(5, 10, 20, 0.95) 100%);
  border-radius: inherit;
  z-index: 0;
  animation: glassMorph 12s ease-in-out infinite;
}

/* Morphing shape keyframes */
@keyframes glassMorph {
  0%, 100% {
    border-radius: 40%;
  }
  15% {
    border-radius: 50% 35% 50% 35%;
  }
  30% {
    border-radius: 35% 50% 35% 50%;
  }
  45% {
    border-radius: 45% 40% 55% 40%;
  }
  60% {
    border-radius: 50%;
  }
  75% {
    border-radius: 38% 52% 42% 48%;
  }
  90% {
    border-radius: 48% 42% 48% 42%;
  }
}

@keyframes borderRotate {
  from { filter: blur(3px) hue-rotate(0deg); }
  to { filter: blur(3px) hue-rotate(360deg); }
}

/* Border glow intensity syncs with morph cycle */
@keyframes borderGlowCycle {
  0%, 20% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.3);
  }
  25%, 45% {
    box-shadow: 0 0 35px rgba(139, 92, 246, 0.7), 0 0 70px rgba(139, 92, 246, 0.35);
  }
  50%, 70% {
    box-shadow: 0 0 35px rgba(236, 72, 153, 0.7), 0 0 70px rgba(236, 72, 153, 0.35);
  }
  75%, 95% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.6), 0 0 60px rgba(16, 185, 129, 0.3);
  }
  100% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.3);
  }
}

/* Inner Neural Network */
.core-neural {
  position: absolute;
  inset: 20px;
  pointer-events: none;
}

.neural-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, rgba(0, 212, 255, 1) 0%, rgba(0, 212, 255, 0.3) 50%, transparent 70%);
  border-radius: 50%;
  animation: neuralPulse 3s ease-in-out infinite;
}

.neural-node.n1 { top: 15%; left: 20%; animation-delay: 0s; }
.neural-node.n2 { top: 15%; right: 20%; animation-delay: -0.5s; background: radial-gradient(circle, rgba(139, 92, 246, 1) 0%, rgba(139, 92, 246, 0.3) 50%, transparent 70%); }
.neural-node.n3 { bottom: 15%; left: 25%; animation-delay: -1s; background: radial-gradient(circle, rgba(236, 72, 153, 1) 0%, rgba(236, 72, 153, 0.3) 50%, transparent 70%); }
.neural-node.n4 { bottom: 15%; right: 25%; animation-delay: -1.5s; background: radial-gradient(circle, rgba(16, 185, 129, 1) 0%, rgba(16, 185, 129, 0.3) 50%, transparent 70%); }
.neural-node.n5 { top: 50%; left: 10%; transform: translateY(-50%); animation-delay: -2s; width: 8px; height: 8px; }

.neural-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(0, 212, 255, 0.8) 40%,
    rgba(139, 92, 246, 0.4) 70%,
    transparent 100%);
  border-radius: 50%;
  animation: centerPulse 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(139, 92, 246, 0.3);
}

/* Neural connection lines */
.core-neural::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(0, 212, 255, 0.3) 49%, rgba(0, 212, 255, 0.3) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(139, 92, 246, 0.3) 49%, rgba(139, 92, 246, 0.3) 51%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(236, 72, 153, 0.2) 49%, rgba(236, 72, 153, 0.2) 51%, transparent 52%);
  animation: neuralLines 4s ease-in-out infinite;
}

@keyframes neuralPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
    box-shadow: 0 0 10px currentColor;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 25px currentColor, 0 0 50px currentColor;
  }
}

@keyframes centerPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(139, 92, 246, 0.3);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.9), 0 0 100px rgba(139, 92, 246, 0.5);
  }
}

@keyframes neuralLines {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Holographic Core Text */
.core-text {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
}

/* Two-line text styling - Compact AI Hub */
.core-text-line1 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
}

.core-text-line2 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: transparent;
  background: linear-gradient(135deg, #60a5fa 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.5));
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Main "AI" text in the center - kept for backwards compatibility */
.core-text-main {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.4));
  animation: letterHolo 4s ease-in-out infinite;
  letter-spacing: 4px;
}

.obca-letter {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  animation: letterHolo 4s ease-in-out infinite;
  position: relative;
}

.obca-letter:nth-child(1) { animation-delay: 0s; }
.obca-letter:nth-child(2) { animation-delay: 0.1s; }
.obca-letter:nth-child(3) { animation-delay: 0.2s; }
.obca-letter:nth-child(4) { animation-delay: 0.3s; }

@keyframes letterHolo {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    transform: translateY(0);
  }
  50% {
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(139, 92, 246, 0.7));
    transform: translateY(-3px);
  }
}

/* Holographic shimmer effect on letters */
.obca-letter::before {
  content: attr(data-letter);
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Scanning Line Effect */
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 212, 255, 0.8) 50%,
    transparent 100%);
  animation: scanMove 3s ease-in-out infinite;
  pointer-events: none;
  filter: blur(1px);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

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

/* Feature Nodes - Animated with morph cycle */
.feature-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  background: transparent !important;
}

.feature-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: featureFloat 6s ease-in-out infinite, featureGlow 18s linear infinite;
}

.feature-node.fn-orchestrate {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.feature-node.fn-cognitive {
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  animation-delay: -1.5s;
}

.feature-node.fn-automate {
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -3s;
}

.feature-node.fn-integrate {
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  animation-delay: -4.5s;
}

.fn-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(30, 41, 59, 0.8) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.fn-icon i {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #00d4ff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

.fn-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Connector lines from nodes to center */
.fn-connector {
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.5), transparent);
  height: 1px;
  width: 40px;
  animation: connectorPulse 2s ease-in-out infinite;
}

.fn-orchestrate .fn-connector {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: top center;
}

.fn-cognitive .fn-connector {
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.fn-automate .fn-connector {
  top: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: bottom center;
}

.fn-integrate .fn-connector {
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

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

.fn-cognitive, .fn-integrate {
  animation-name: nodeFloatHorizontal;
}

@keyframes nodeFloatHorizontal {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-5px);
  }
}

@keyframes connectorPulse {
  0%, 100% {
    opacity: 0.3;
    width: 40px;
  }
  50% {
    opacity: 0.8;
    width: 60px;
  }
}

/* Feature float animation */
@keyframes featureFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Feature glow syncs with morph cycle */
@keyframes featureGlow {
  0%, 20% {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
  }
  25%, 45% {
    filter: drop-shadow(0 0 18px rgba(139, 92, 246, 0.5));
  }
  50%, 70% {
    filter: drop-shadow(0 0 18px rgba(236, 72, 153, 0.5));
  }
  75%, 95% {
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
  }
}

/* Data Flow SVG - Animated paths */
.data-flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  opacity: 0.6;
  background: transparent !important;
}

.flow-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: flowDash 4s ease-in-out infinite;
}

.flow-path.fp1 { animation-delay: 0s; }
.flow-path.fp2 { animation-delay: -1s; }
.flow-path.fp3 { animation-delay: -2s; }
.flow-path.fp4 { animation-delay: -3s; }

@keyframes flowDash {
  0% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -200;
    opacity: 0;
  }
}

/* NEW OBCA Label - Holographic Style */
.obca-label-new {
  position: relative;
  margin-top: 25px;
  padding: 1rem 2.5rem;
  /* Transparent background - seamless with hero */
  background: transparent;
  border-radius: 24px;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: center;
  overflow: hidden;
  box-shadow: none;
}

/* Animated gradient border - hidden for seamless hero blend */
.obca-label-new::before {
  display: none;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Hidden for seamless hero blend */
.label-glow {
  display: none;
}

@keyframes labelGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.obca-title {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.obca-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(200, 220, 240, 0.8);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* Hidden for seamless hero blend */
.label-scanline {
  display: none;
}

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

/* ===== RESPONSIVE STYLES FOR NEW OBCA ===== */
@media (max-width: 1200px) {
  .obca-neural-system {
    width: 380px;
    height: 380px;
  }

  .obca-core {
    width: 160px;
    height: 160px;
  }

  .obca-letter {
    font-size: 1.9rem;
  }

  .fn-icon {
    width: 45px;
    height: 45px;
  }

  .fn-icon i {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .obca-neural-system {
    width: 340px;
    height: 340px;
  }

  .obca-core {
    width: 140px;
    height: 140px;
  }

  .obca-letter {
    font-size: 1.6rem;
  }

  .fn-icon {
    width: 40px;
    height: 40px;
  }

  .fn-label {
    font-size: 0.6rem;
  }

  .obca-title {
    font-size: 1.5rem;
    letter-spacing: 6px;
  }

  .obca-subtitle {
    font-size: 0.6rem;
  }
}

@media (max-width: 991px) {
  /* Tablet and mobile: show neural system centered below content */
  .hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero-content {
    text-align: center !important;
    order: 1 !important;
    width: 100%;
  }

  .hero-hook,
  .hero-title,
  .hero-title .title-main,
  .hero-description {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-actions {
    justify-content: center !important;
  }

  .hero-visual,
  .hero-ai-visual {
    order: 2 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 2rem;
    min-height: 400px !important;
  }

  .obca-neural-system {
    display: flex !important;
    margin: 0 auto !important;
    width: 380px !important;
    height: 380px !important;
    overflow: visible !important;
  }

  /* Ensure feature nodes visible on tablet */
  .feature-nodes {
    display: block !important;
    position: absolute !important;
    inset: -20px !important;
    z-index: 10 !important;
  }

  .feature-node {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10 !important;
  }
}

@media (max-width: 768px) {
  /* Mobile: keep neural system below content */
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-content {
    order: 1 !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 1rem;
  }

  .hero-visual,
  .hero-ai-visual {
    order: 2 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 1.5rem;
    min-height: 380px !important;
    overflow: visible !important;
  }

  /* Mobile OBCA system - larger size */
  .obca-neural-system {
    width: 360px !important;
    height: 360px !important;
    margin: 0 auto !important;
    position: relative !important;
    transform: none !important;
    overflow: visible !important;
  }

  /* Scale down orbital system */
  .orbital-system {
    width: 300px !important;
    height: 300px !important;
  }

  .orbital-ring.ring-1 {
    width: 180px !important;
    height: 180px !important;
    margin: -90px 0 0 -90px !important;
  }

  .orbital-ring.ring-2 {
    width: 230px !important;
    height: 230px !important;
    margin: -115px 0 0 -115px !important;
  }

  .orbital-ring.ring-3 {
    width: 280px !important;
    height: 280px !important;
    margin: -140px 0 0 -140px !important;
  }

  /* Core size */
  .obca-core {
    width: 110px !important;
    height: 110px !important;
  }

  .core-text-line1 {
    font-size: 1.4rem !important;
  }

  .core-text-line2 {
    font-size: 0.75rem !important;
  }

  /* Feature nodes - ensure visible with extended container */
  .feature-nodes {
    display: block !important;
    position: absolute !important;
    inset: -30px !important;
    z-index: 10 !important;
    pointer-events: none !important;
  }

  .feature-node {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10 !important;
    pointer-events: auto !important;
  }

  /* Reposition feature nodes - use pixels from edges of extended container */
  .feature-node.fn-orchestrate {
    top: 0 !important;
    bottom: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }

  .feature-node.fn-cognitive {
    top: 50% !important;
    bottom: auto !important;
    right: 0 !important;
    left: auto !important;
    transform: translateY(-50%) !important;
  }

  .feature-node.fn-automate {
    bottom: 0 !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }

  .feature-node.fn-integrate {
    top: 50% !important;
    bottom: auto !important;
    left: 0 !important;
    right: auto !important;
    transform: translateY(-50%) !important;
  }

  /* Icons size */
  .fn-icon {
    width: 42px !important;
    height: 42px !important;
  }

  .fn-icon i {
    font-size: 1rem !important;
  }

  .fn-label {
    font-size: 0.65rem !important;
    font-weight: 600 !important;
  }

  /* Show connectors on mobile */
  .fn-connector {
    display: block !important;
    width: 30px !important;
  }

  /* Hide extra particles */
  .particle.p5, .particle.p6, .particle.p7, .particle.p8 {
    display: none !important;
  }
}

@media (max-width: 480px) {
  /* Smaller phones */
  .hero-visual,
  .hero-ai-visual {
    min-height: 340px !important;
  }

  .obca-neural-system {
    width: 320px !important;
    height: 320px !important;
  }

  .orbital-system {
    width: 260px !important;
    height: 260px !important;
  }

  .orbital-ring.ring-1 {
    width: 150px !important;
    height: 150px !important;
    margin: -75px 0 0 -75px !important;
  }

  .orbital-ring.ring-2 {
    width: 200px !important;
    height: 200px !important;
    margin: -100px 0 0 -100px !important;
  }

  .orbital-ring.ring-3 {
    width: 240px !important;
    height: 240px !important;
    margin: -120px 0 0 -120px !important;
  }

  .obca-core {
    width: 90px !important;
    height: 90px !important;
  }

  .core-text-line1 {
    font-size: 1.2rem !important;
  }

  .core-text-line2 {
    font-size: 0.6rem !important;
  }

  .fn-icon {
    width: 32px !important;
    height: 32px !important;
  }

  .fn-icon i {
    font-size: 0.8rem !important;
  }

  .fn-label {
    font-size: 0.5rem !important;
  }
}
