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

:root {
  --navy: #0b1229;
  --navy-mid: #111a38;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --silver: #cbd5e1;
  --white: #f8fafc;
  --text-muted: #94a3b8;
}

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

html { scroll-behavior: smooth; }

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

.sparkle-bg {
  background-color: var(--navy);
  background-image: radial-gradient(ellipse at 20% 50%, rgba(16,185,129,0.07) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.07) 0%, transparent 60%);
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(245,158,11,0.4); }
  50% { box-shadow: 0 0 22px 6px rgba(245,158,11,0.8); }
}

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

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

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

.glow-gold { animation: pulse-glow 2.4s ease-in-out infinite; }
.float-anim { animation: float 4s ease-in-out infinite; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0b1229;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,158,11,0.5); }

.btn-secondary {
  background: transparent;
  color: var(--emerald);
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 0.5rem;
  border: 2px solid var(--emerald);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
}
.btn-secondary:hover { background: var(--emerald); color: #0b1229; }

.card-dark {
  background: var(--navy-mid);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card-dark:hover { border-color: var(--gold); transform: translateY(-3px); }

.badge-bonus {
  background: linear-gradient(135deg, var(--emerald-dark), var(--navy-mid));
  border: 2px solid var(--gold);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

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

.provider-cloud span {
  display: inline-block;
  margin: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.35);
  color: var(--emerald);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.provider-cloud span:hover { background: rgba(16,185,129,0.28); }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-item summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  color: var(--gold);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--emerald); }
.faq-item p { padding: 0 0 1rem; color: var(--silver); line-height: 1.7; margin: 0; }

.prose { color: var(--white); line-height: 1.8; }
.prose h2 { color: var(--gold); font-size: 1.6rem; font-weight: 700; margin: 2rem 0 1rem; border-bottom: 1px solid rgba(245,158,11,0.3); padding-bottom: 0.4rem; }
.prose h3 { color: var(--emerald); font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 0.75rem; }
.prose p { margin: 0 0 1.2rem; color: #cbd5e1; }
.prose a { color: var(--gold); text-decoration: underline; }
.prose a:hover { color: var(--emerald); }
.prose ul { margin: 0 0 1.2rem 1.5rem; padding: 0; list-style: disc; color: #cbd5e1; }
.prose ol { margin: 0 0 1.2rem 1.5rem; padding: 0; list-style: decimal; color: #cbd5e1; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote { border-left: 4px solid var(--gold); padding-left: 1rem; color: var(--silver); font-style: italic; margin: 1.5rem 0; }
.prose img { max-width: 100%; border-radius: 0.75rem; margin: 1.5rem 0; display: block; }
.prose table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; white-space: nowrap; border-collapse: collapse; width: 100%; margin: 1.5rem 0; }
.prose th { background: var(--navy-mid); color: var(--gold); padding: 0.75rem 1rem; text-align: left; border: 1px solid rgba(255,255,255,0.1); }
.prose td { padding: 0.65rem 1rem; border: 1px solid rgba(255,255,255,0.08); color: #cbd5e1; }
.prose tr:nth-child(even) td { background: rgba(255,255,255,0.03); }

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11,18,41,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(16,185,129,0.25);
}

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

.nav-link {
  color: var(--silver);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.nav-link:hover { color: var(--gold); }

.hero-overlay {
  background: linear-gradient(135deg, rgba(11,18,41,0.92) 0%, rgba(11,18,41,0.7) 50%, rgba(11,18,41,0.85) 100%);
}

@media (max-width: 640px) {
  .badge-bonus { padding: 1rem; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}
