* {
  scroll-behavior: smooth;
}
.gradient-hero {
  background: linear-gradient(135deg, #5b2eff 0%, #3d1e8c 50%, #1f1b3a 100%);
}
.gradient-dark {
  background: linear-gradient(180deg, #1f1b3a 0%, #0f0f14 100%);
}
.geo-shape {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}
.btn-glow:hover {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}
.float-animation {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.slide-up {
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.prose h2 {
  color: white;
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.prose h3 {
  color: #e5e7eb;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose p {
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}
.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #e5e7eb;
}
.prose li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  font-size: 1.125rem;
}
