#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16,185,129,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 75%);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.orb1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, #10b981, transparent 70%);
  top: -200px; left: -180px;
  animation: orb-float-1 18s ease-in-out infinite;
}
.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  bottom: -100px; right: -150px;
  animation: orb-float-2 22s ease-in-out infinite;
}
.orb3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #34d399, transparent 70%);
  top: 45%; left: 60%;
  animation: orb-float-3 20s ease-in-out infinite;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-25px, 15px) scale(1.03); }
  66% { transform: translate(20px, -25px) scale(0.96); }
}
@keyframes orb-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -30px) scale(1.06); }
}

.floating-shapes {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.floating-shapes svg {
  position: absolute;
  opacity: 0.06;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.float-hex-1 { top: 12%; left: 3%; animation: float-drift-a 28s infinite; }
.float-hex-2 { top: 55%; right: 4%; animation: float-drift-b 32s infinite; }
.float-circle-1 { top: 30%; left: 92%; animation: float-drift-c 24s infinite; }
.float-circle-2 { top: 75%; left: 8%; animation: float-drift-a 30s infinite reverse; }
.float-hex-3 { top: 88%; right: 15%; animation: float-drift-b 26s infinite; }

@keyframes float-drift-a {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(12px, -18px) rotate(15deg); }
  50% { transform: translate(-8px, -30px) rotate(-10deg); }
  75% { transform: translate(15px, -12px) rotate(8deg); }
}
@keyframes float-drift-b {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-15px, 10px) rotate(-12deg); }
  66% { transform: translate(10px, -20px) rotate(18deg); }
}
@keyframes float-drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.1); }
}

.section-connector {
  position: relative;
  z-index: 1;
  height: 60px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
  pointer-events: none;
}
.section-connector svg {
  width: 100%;
  height: 60px;
}
.connector-line {
  stroke: rgba(16,185,129,0.15);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 8 6;
  animation: dash-flow 3s linear infinite;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -56; }
}

.section-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
  overflow: visible;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: -2px;
  width: 60px; height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  animation: divider-slide 6s ease-in-out infinite;
}
@keyframes divider-slide {
  0%, 100% { left: 0%; }
  50% { left: calc(100% - 60px); }
}

.divider-dots {
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 7px;
  pointer-events: none;
}
.divider-dot {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: dot-pulse 3s ease-in-out infinite;
}
.divider-dot:nth-child(1) { left: 20%; animation-delay: 0s; }
.divider-dot:nth-child(2) { left: 40%; animation-delay: 0.6s; }
.divider-dot:nth-child(3) { left: 60%; animation-delay: 1.2s; }
.divider-dot:nth-child(4) { left: 80%; animation-delay: 1.8s; }

@keyframes dot-pulse {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 0.7; transform: scale(1.4); }
}
