/* Aurora background blobs */
.aurora-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.aurora-blob-1 { background: radial-gradient(circle, #22d3ee 0%, transparent 70%); }
.aurora-blob-2 { background: radial-gradient(circle, #a78bfa 0%, transparent 70%); }
.aurora-blob-3 { background: radial-gradient(circle, #ffd100 0%, transparent 70%); }

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -25px); }
}
.animate-float-slow { animation: float 9s ease-in-out infinite; }
.animate-float-slower { animation: float 13s ease-in-out infinite reverse; }

/* Gradient headline text */
.text-gradient {
  background: linear-gradient(90deg, #ffd100, #6ee7b7 50%, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Glassmorphism card */
.glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0e1a; }
::-webkit-scrollbar-thumb { background: #2a3350; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #3a4568; }

/* FAQ accordion */
details > summary {
  list-style: none;
  cursor: pointer;
}
details > summary::-webkit-details-marker {
  display: none;
}
.faq-chevron {
  transition: transform 0.2s ease;
}
details[open] .faq-chevron {
  transform: rotate(180deg);
}
details > summary + div {
  animation: faq-open 0.2s ease;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
