@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Rajdhani:wght@600;700&display=swap');

:root {
  --eclipse-dark: #07070f;
  --eclipse-navy: #0d1123;
  --eclipse-blue: #0f1f3d;
  --eclipse-accent: #00b4ff;
  --eclipse-glow: #0077cc;
  --eclipse-graphite: #1c2033;
  --eclipse-text: #cdd8f0;
  --eclipse-muted: #7a8aaa;
  --eclipse-gold: #f0c040;
  --eclipse-white: #e8f0ff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--eclipse-dark);
  color: var(--eclipse-text);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.font-rajdhani { font-family: 'Rajdhani', sans-serif; }

@keyframes eclipseGlow {
  0%, 100% { box-shadow: 0 0 18px 3px rgba(0,180,255,0.35); }
  50% { box-shadow: 0 0 36px 8px rgba(0,180,255,0.7); }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulseBlue {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.glow-anim { animation: eclipseGlow 2.8s ease-in-out infinite; }
.pulse-blue { animation: pulseBlue 2s ease-in-out infinite; }
.fade-in-up { animation: fadeInUp 0.7s ease both; }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.eclipse-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00b4ff 0%, #0066cc 100%);
  color: #ffffff;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.75em 1.6em;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.eclipse-btn:hover { filter: brightness(1.18); transform: translateY(-2px); }

.eclipse-btn-secondary {
  display: inline-block;
  background: transparent;
  color: #00b4ff;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.72em 1.6em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: 2px solid #00b4ff;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.eclipse-btn-secondary:hover { background: #00b4ff; color: #07070f; }

.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00b4ff44, transparent);
  margin: 0;
}

.card-graphite {
  background: var(--eclipse-graphite);
  border: 1px solid #1e2d4d;
  border-radius: 12px;
  transition: border-color 0.25s, transform 0.25s;
}
.card-graphite:hover { border-color: #00b4ff; transform: translateY(-4px); }

.badge-glow {
  background: linear-gradient(135deg, #0d2a4d 0%, #0f1f3d 100%);
  border: 2px solid #00b4ff;
  border-radius: 14px;
  padding: 1.6em 2em;
  animation: eclipseGlow 3s ease-in-out infinite;
}

.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b4ff, #0044aa);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
}

.nav-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0c18;
  border-bottom: 1px solid #1a2740;
  backdrop-filter: blur(8px);
}

.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7,7,15,0.82) 0%, rgba(13,17,35,0.75) 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }

.provider-tag {
  background: #111828;
  border: 1px solid #1e2d4d;
  border-radius: 999px;
  padding: 0.35em 1em;
  color: #7ab0e0;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  margin: 0.3em;
}
.provider-tag:hover { background: #00b4ff; color: #07070f; }

.faq-item {
  border-bottom: 1px solid #1a2535;
  padding: 1.1em 0;
}
.faq-question {
  font-weight: 700;
  color: #00b4ff;
  margin-bottom: 0.5em;
  font-size: 1rem;
}
.faq-answer { color: #a8bacf; line-height: 1.7; }

/* Prose Styles */
.prose { max-width: 100%; color: var(--eclipse-text); line-height: 1.8; }
.prose h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #00b4ff;
  margin-top: 2em;
  margin-bottom: 0.6em;
  border-left: 4px solid #00b4ff;
  padding-left: 0.7em;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #a8d8f0;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.prose p { margin-bottom: 1.2em; }
.prose a { color: #00b4ff; text-decoration: underline; }
.prose a:hover { color: #66d4ff; }
.prose ul { list-style: disc; padding-left: 1.6em; margin-bottom: 1.2em; }
.prose ol { list-style: decimal; padding-left: 1.6em; margin-bottom: 1.2em; }
.prose li { margin-bottom: 0.4em; color: var(--eclipse-text); }
.prose blockquote {
  border-left: 3px solid #00b4ff;
  padding-left: 1em;
  color: #7a8aaa;
  font-style: italic;
  margin: 1.5em 0;
}
.prose img { max-width: 100%; border-radius: 10px; margin: 1.5em 0; }
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  width: 100%;
}
.prose thead tr { background: #0f1f3d; color: #00b4ff; }
.prose th, .prose td {
  padding: 0.65em 1em;
  border: 1px solid #1e2d4d;
  text-align: left;
}
.prose tbody tr:nth-child(even) { background: #111828; }
.prose tbody tr:nth-child(odd) { background: #0d1123; }
