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

:root {
  --emerald: #10b981;
  --emerald-dark: #059669;
  --emerald-deep: #065f46;
  --ocean: #0ea5e9;
  --ocean-dark: #0284c7;
  --silver: #e2e8f0;
  --silver-dim: #94a3b8;
  --bg-deep: #060e1a;
  --bg-card: #0d1f35;
  --bg-card2: #112240;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --gold: #f59e0b;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 1rem;
}

.site-wrapper { max-width: 1440px; margin: 0 auto; }

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

@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(16,185,129,0.5); }
  50% { box-shadow: 0 0 38px rgba(16,185,129,0.9), 0 0 60px rgba(14,165,233,0.4); }
}

@keyframes spinBadge {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

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

.float-anim { animation: parallaxFloat 5s ease-in-out infinite; }
.glow-btn { animation: glowPulse 2.5s ease-in-out infinite; }
.fade-in-up { animation: fadeInUp 0.7s ease forwards; }

.prose {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 100%;
}

.prose h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--emerald);
  margin: 2.2rem 0 0.9rem;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--emerald-deep);
  padding-bottom: 0.4rem;
}

.prose h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--ocean);
  margin: 1.6rem 0 0.6rem;
}

.prose p { margin-bottom: 1.1rem; color: var(--text-secondary); }
.prose a { color: var(--emerald); text-decoration: underline; }
.prose a:hover { color: var(--ocean); }

.prose ul, .prose ol {
  margin: 1rem 0 1.2rem 1.5em;
  color: var(--text-secondary);
}

.prose ul li { list-style-type: disc; margin-bottom: 0.4rem; }
.prose ol li { list-style-type: decimal; margin-bottom: 0.4rem; }

.prose blockquote {
  border-left: 4px solid var(--emerald);
  padding: 0.6rem 1.2rem;
  background: var(--bg-card);
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5rem 0;
  color: var(--silver);
  font-style: italic;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  background: var(--bg-card);
}

.prose table th {
  background: var(--emerald-deep);
  color: #fff;
  padding: 0.7rem 1rem;
  text-align: left;
  font-weight: 600;
}

.prose table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #1e3a5f;
  color: var(--text-secondary);
}

.prose table tr:hover td { background: rgba(16,185,129,0.07); }

.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.prose img { max-width: 100%; border-radius: 0.75rem; margin: 1.5rem 0; display: block; }

.gradient-text {
  background: linear-gradient(135deg, var(--emerald), var(--ocean));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-glass {
  background: linear-gradient(135deg, rgba(13,31,53,0.95), rgba(17,34,64,0.9));
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--emerald), var(--ocean-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 3rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(16,185,129,0.45); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--emerald);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border-radius: 3rem;
  text-decoration: none;
  border: 2px solid var(--emerald);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.btn-secondary:hover { background: var(--emerald); color: #fff; }

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--silver-dim);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.fern-divider {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--emerald), var(--ocean), transparent);
  margin: 0;
}

.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--ocean-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.nav-link {
  color: var(--silver);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover { color: var(--emerald); background: rgba(16,185,129,0.1); }

#mobile-menu {
  background: #0a1628;
  border-top: 1px solid rgba(16,185,129,0.2);
}

.hero-pattern {
  background-image:
    radial-gradient(circle at 20% 50%, rgba(16,185,129,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(14,165,233,0.12) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(16,185,129,0.08) 0%, transparent 40%);
}

.provider-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-card2);
  color: var(--emerald);
  border: 1px solid rgba(16,185,129,0.25);
  margin: 0.25rem;
  transition: background 0.2s;
}

.provider-tag:hover { background: var(--emerald-deep); color: #fff; }
