/* ================================================
   SIMPLE GEOMETRIC SHAPES BACKGROUND
   ================================================ */
.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 20px;
  opacity: 0.4;
  animation: shapeFloat 20s ease-in-out infinite;
}

.hero__shape--1 {
  top: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
  animation-delay: 0s;
  animation-duration: 25s;
}

.hero__shape--2 {
  bottom: 15%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.12),
    transparent 70%
  );
  animation-delay: 5s;
  animation-duration: 30s;
}

.hero__shape--3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.08),
    transparent 70%
  );
  animation-delay: 10s;
  animation-duration: 35s;
}

@keyframes shapeFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* Dot grid - subtle */
.hero__dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.1) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}

/* Vignette */
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(10, 14, 26, 0.6) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* ================================================
   ANIMATED GRID LINES - Futuristic Tech Style
   ================================================ */
.hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__grid-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(6, 182, 212, 0.4) 50%,
    transparent 100%
  );
  opacity: 0;
  animation: gridPulse 8s ease-in-out infinite;
}

.hero__grid-line--horizontal {
  width: 100%;
  height: 2px;
  left: 0;
}

.hero__grid-line--horizontal:nth-child(1) {
  top: 20%;
  animation-delay: 0s;
}

.hero__grid-line--horizontal:nth-child(2) {
  top: 50%;
  animation-delay: 2.5s;
}

.hero__grid-line--horizontal:nth-child(3) {
  top: 80%;
  animation-delay: 5s;
}

.hero__grid-line--vertical {
  height: 100%;
  width: 2px;
  top: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(139, 92, 246, 0.4) 50%,
    transparent 100%
  );
}

.hero__grid-line--vertical:nth-child(4) {
  left: 15%;
  animation-delay: 1s;
}

.hero__grid-line--vertical:nth-child(5) {
  left: 50%;
  animation-delay: 3.5s;
}

.hero__grid-line--vertical:nth-child(6) {
  left: 85%;
  animation-delay: 6s;
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

/* ================================================
   GLOWING ORBS - Energy Spheres
   ================================================ */
.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: orbFloat 20s ease-in-out infinite;
}

.hero__orb--1 {
  top: 10%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3), transparent 70%);
  animation-duration: 18s;
  animation-delay: 0s;
}

.hero__orb--2 {
  bottom: 20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.25),
    transparent 70%
  );
  animation-duration: 22s;
  animation-delay: 5s;
}

.hero__orb--3 {
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2), transparent 70%);
  animation-duration: 25s;
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translate(50px, -50px) scale(1.2);
    opacity: 0.8;
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9);
    opacity: 0.5;
  }
}

/* ================================================
   DATA STREAMS - Digital Flow Effect
   ================================================ */
.hero__data-streams {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__stream {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(6, 182, 212, 0.8) 50%,
    transparent 100%
  );
  box-shadow:
    0 0 10px rgba(6, 182, 212, 0.6),
    0 0 20px rgba(6, 182, 212, 0.4),
    0 0 30px rgba(6, 182, 212, 0.2);
  animation: streamFlow 6s linear infinite;
  opacity: 0;
}

.hero__stream--1 {
  left: 20%;
  animation-delay: 0s;
}

.hero__stream--2 {
  left: 45%;
  animation-delay: 1.5s;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(139, 92, 246, 0.8) 50%,
    transparent 100%
  );
  box-shadow:
    0 0 10px rgba(139, 92, 246, 0.6),
    0 0 20px rgba(139, 92, 246, 0.4),
    0 0 30px rgba(139, 92, 246, 0.2);
}

.hero__stream--3 {
  left: 70%;
  animation-delay: 3s;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(236, 72, 153, 0.8) 50%,
    transparent 100%
  );
  box-shadow:
    0 0 10px rgba(236, 72, 153, 0.6),
    0 0 20px rgba(236, 72, 153, 0.4),
    0 0 30px rgba(236, 72, 153, 0.2);
}

.hero__stream--4 {
  left: 85%;
  animation-delay: 4.5s;
}

@keyframes streamFlow {
  0% {
    top: -100px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero__orb--1,
  .hero__orb--2,
  .hero__orb--3 {
    width: 200px;
    height: 200px;
    filter: blur(30px);
  }

  .hero__stream {
    height: 60px;
  }

  .hero__grid-line {
    opacity: 0.5;
  }
}
