@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 8px 2px #06b6d4, 0 0 24px 4px #7c3aed; }
  50% { box-shadow: 0 0 24px 8px #06b6d4, 0 0 48px 12px #7c3aed; }
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-0.75rem) rotate(6deg); }
}
.spin-ring {
  animation: spinRing 8s linear infinite;
}
.pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.chip-float {
  animation: chipFloat 4s ease-in-out infinite;
}
.fade-up {
  animation: fadeUp 0.7s ease both;
}
.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.prose {
  color: #e2e8f0;
  line-height: 1.8;
  max-width: 100%;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #22d3ee;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #7c3aed;
  padding-bottom: 0.35rem;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #a78bfa;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 1rem;
  max-width: 100%;
}
.prose a {
  color: #22d3ee;
  text-decoration: underline;
}
.prose a:hover {
  color: #67e8f9;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #7c3aed;
  padding-left: 1rem;
  color: #cbd5e1;
  font-style: italic;
  margin: 1.25rem 0;
  background: rgba(124,58,237,0.1);
  border-radius: 0 0.5rem 0.5rem 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  max-width: 100%;
}
.prose .table-wrap {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}
.prose th {
  background: #4c1d95;
  color: #22d3ee;
  padding: 0.6rem 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid #6d28d9;
}
.prose td {
  padding: 0.55rem 1rem;
  border: 1px solid #4c1d95;
  color: #e2e8f0;
  background: rgba(15,7,40,0.6);
}
.prose tr:hover td {
  background: rgba(124,58,237,0.15);
}
.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.25rem auto;
  display: block;
  border: 2px solid #7c3aed;
}
html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0d0221; }
::-webkit-scrollbar-thumb { background: #7c3aed; border-radius: 3px; }
body { background-color: #0d0221; }
.nav-bg { background: #0d0221; }
.glass-card {
  background: rgba(15,7,40,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(124,58,237,0.35);
}
.btn-primary {
  background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover { opacity: 0.88; transform: scale(1.04); }
.btn-secondary {
  background: transparent;
  color: #22d3ee;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 9999px;
  border: 2px solid #22d3ee;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover { background: #22d3ee; color: #0d0221; }
.step-badge {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #06b6d4, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.provider-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid #7c3aed;
  color: #a78bfa;
  background: rgba(124,58,237,0.12);
  font-size: 0.88rem;
  margin: 0.25rem;
  transition: background 0.2s, color 0.2s;
}
.provider-tag:hover { background: #7c3aed; color: #fff; }
