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

:root {
  --midnight: #060d1a;
  --card-dark: #0d1f35;
  --frost: #00d4ff;
  --frost-mid: #0099cc;
  --silver: #8ab4c9;
  --frost-light: #c8e6f0;
  --text-main: #e8f4f8;
  --text-muted: #90b8cc;
  --gold: #ffd700;
  --danger: #ff4d6d;
}

body {
  background-color: var(--midnight);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

@keyframes frost-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(0,212,255,0.35); }
  50% { box-shadow: 0 0 36px rgba(0,212,255,0.7); }
}

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

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes snow {
  0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

.frost-pulse { animation: frost-pulse 2s ease-in-out infinite; }
.float-anim { animation: float 3s ease-in-out infinite; }

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.shimmer-text {
  background: linear-gradient(90deg, var(--frost-light) 20%, var(--frost) 50%, var(--frost-light) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

.frost-card {
  background: linear-gradient(135deg, #0d2040 0%, #0a1628 100%);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.frost-card:hover {
  border-color: rgba(0,212,255,0.6);
  transform: translateY(-4px);
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #060d1a;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,212,255,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--frost);
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--frost);
  transition: background 0.2s ease, color 0.2s ease;
  text-align: center;
  font-size: 1rem;
}

.btn-secondary:hover {
  background: var(--frost);
  color: #060d1a;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--frost-light);
  letter-spacing: 0.04em;
}

.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,13,26,0.55) 0%, rgba(6,13,26,0.85) 100%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.nav-glass {
  background: rgba(6,13,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,212,255,0.2);
}

.step-badge {
  width: 2.8rem;
  height: 2.8rem;
  background: linear-gradient(135deg, #00d4ff, #0077aa);
  color: #060d1a;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.provider-tag {
  display: inline-block;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--frost-light);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  margin: 0.3rem;
  transition: background 0.2s;
}

.provider-tag:hover {
  background: rgba(0,212,255,0.25);
}

.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Prose Styles */
.prose { color: var(--text-main); max-width: 100%; }
.prose h2 { font-family: 'Rajdhani', sans-serif; color: var(--frost); font-size: 1.65rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.8rem; border-bottom: 1px solid rgba(0,212,255,0.2); padding-bottom: 0.4rem; }
.prose h3 { font-family: 'Rajdhani', sans-serif; color: var(--frost-light); font-size: 1.3rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.6rem; }
.prose p { color: var(--text-main); line-height: 1.8; margin-bottom: 1rem; }
.prose a { color: var(--frost); text-decoration: underline; }
.prose a:hover { color: var(--frost-light); }
.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 { color: var(--text-main); line-height: 1.75; margin-bottom: 0.4rem; }
.prose blockquote { border-left: 3px solid var(--frost); padding-left: 1.2rem; color: var(--silver); font-style: italic; margin: 1.5rem 0; }
.prose img { max-width: 100%; border-radius: 0.75rem; margin: 1.5rem 0; }
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.prose thead { background: rgba(0,212,255,0.15); }
.prose th { color: var(--frost); font-weight: 700; padding: 0.7rem 1rem; text-align: left; border-bottom: 2px solid rgba(0,212,255,0.3); }
.prose td { color: var(--text-main); padding: 0.6rem 1rem; border-bottom: 1px solid rgba(0,212,255,0.1); }
.prose tr:hover td { background: rgba(0,212,255,0.06); }

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

.mobile-menu-open { display: block !important; }

.star-gold { color: var(--gold); }

.badge-18 {
  background: var(--danger);
  color: #fff;
  font-weight: 800;
  border-radius: 0.3rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.85rem;
  display: inline-block;
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  text-align: center;
}
