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

:root {
  /* ========================================================== */
  /* VIBRANT & PREMIUM IDENTITY: DEEP NAVY + ELECTRIC AZURE-CYAN*/
  /* ========================================================== */
  --navy-deep: #060e20;
  --navy-dark: #0a1633;
  --navy-subtle: #0f2048;
  
  /* Luminous, High-Vibrancy Brand Colors */
  --blue-vibrant: #0055fe;
  --blue-electric: #0066ff;
  --blue-bright: #0084ff;
  --cyan-neon: #00d2ff;
  --cyan-bright: #00e5ff;
  --indigo-vivid: #4f46e5;
  --violet-glow: #7c3aed;

  /* Radiant Gradients */
  --grad-vibrant: linear-gradient(135deg, #0047ff 0%, #0072ff 50%, #00d2ff 100%);
  --grad-vibrant-hover: linear-gradient(135deg, #003cd6 0%, #0066ff 50%, #00e5ff 100%);
  --grad-navy-electric: linear-gradient(135deg, #060e20 0%, #0047ff 60%, #00d2ff 100%);
  --grad-text-brand: linear-gradient(135deg, #0047ff 0%, #0077fe 50%, #00d2ff 100%);
  --grad-ambient-hero: radial-gradient(ellipse 80% 55% at 50% -5%, rgba(0, 102, 255, 0.16) 0%, rgba(0, 210, 255, 0.09) 45%, rgba(255, 255, 255, 0) 80%);

  /* UI Tokens */
  --bg-page: #f8fbff;
  --text-main: #060e20;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --border-card: rgba(0, 85, 254, 0.09);
  --border-card-hover: rgba(0, 102, 255, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-page);
  color: var(--text-main);
  overflow-x: hidden;
}

/* ========================================================== */
/* LUMINOUS HERO BACKGROUND (CRYSTAL CLEAR & VIBRANT)         */
/* ========================================================== */
.hero-vibrant-bg {
  background-color: #ffffff;
  background-image: 
    radial-gradient(circle at 50% -10%, rgba(0, 102, 255, 0.18) 0%, rgba(0, 210, 255, 0.10) 40%, rgba(255, 255, 255, 0) 75%),
    radial-gradient(circle at 15% 25%, rgba(0, 210, 255, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(79, 70, 229, 0.10) 0%, transparent 40%);
  position: relative;
}

/* Crisp Dotted Grid Texture */
.dotted-pattern-vibrant {
  background-image: radial-gradient(rgba(0, 102, 255, 0.25) 1.3px, transparent 1.3px);
  background-size: 24px 24px;
}

.dotted-wave-mask {
  mask-image: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 80%);
}

/* ========================================================== */
/* 4-POINTED STAR ICON (GLOSSY NAVY + NEON BLUE GLOW)         */
/* ========================================================== */
.sparkle-icon {
  width: 72px;
  height: 72px;
  clip-path: polygon(50% 0%, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0% 50%, 37% 37%);
  background: linear-gradient(135deg, #060e20 0%, #0047ff 60%, #00d2ff 100%);
  display: inline-block;
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4), 0 0 15px rgba(0, 210, 255, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sparkle-icon:hover {
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 12px 35px rgba(0, 102, 255, 0.6), 0 0 25px rgba(0, 210, 255, 0.55);
}

.sparkle-icon-sm {
  width: 24px;
  height: 24px;
  clip-path: polygon(50% 0%, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0% 50%, 37% 37%);
  background: linear-gradient(135deg, #060e20 0%, #0047ff 60%, #00d2ff 100%);
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.35);
}

/* ========================================================== */
/* EXACT WELEADS SHIMMER (ORIGINAL COLORS & EFFECT)           */
/* ========================================================== */
@keyframes lpShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.lp-gradient-text {
  background: linear-gradient(100deg, #0071E3, #007AFF 30%, #34C8FF 50%, #007AFF 70%, #0071E3);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lpShimmer 6s ease-in-out infinite;
  display: inline-block;
}

.gradient-text-vibrant {
  background: linear-gradient(135deg, #0047ff 0%, #0077fe 45%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 14px rgba(0, 102, 255, 0.25));
}

.gradient-text-hero {
  background: linear-gradient(135deg, #0044ff 0%, #0072ff 40%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ========================================================== */
/* VIBRANT & MAGNETIC BUTTONS                                 */
/* ========================================================== */
.btn-vibrant-primary {
  background: linear-gradient(135deg, #0050ff 0%, #0072ff 50%, #00b4ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 6px 20px -2px rgba(0, 102, 255, 0.45),
    0 2px 8px rgba(0, 210, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-vibrant-primary:hover {
  background: linear-gradient(135deg, #0044ee 0%, #0066ff 50%, #00c8ff 100%);
  transform: translateY(-1.5px) scale(1.01);
  box-shadow: 
    0 10px 28px -2px rgba(0, 102, 255, 0.6),
    0 4px 14px rgba(0, 210, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-vibrant-secondary {
  background: #ffffff;
  border: 1px solid rgba(0, 102, 255, 0.22);
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.08);
  color: #060e20;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-vibrant-secondary:hover {
  background: #f0f7ff;
  border-color: #0066ff;
  color: #0066ff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.16);
}

/* ========================================================== */
/* GLASS BADGES                                               */
/* ========================================================== */
.badge-glass-vibrant {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 102, 255, 0.25);
  box-shadow: 0 4px 18px rgba(0, 102, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #0047ff;
}

/* ========================================================== */
/* CARDS WITH VIBRANT LIGHTING                                */
/* ========================================================== */
.vibrant-card {
  background: #ffffff;
  border: 1px solid rgba(0, 85, 254, 0.10);
  box-shadow: 0 1px 3px rgba(0, 40, 120, 0.02), 0 8px 24px -4px rgba(0, 85, 254, 0.06);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.vibrant-card:hover {
  border-color: #0066ff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -6px rgba(0, 102, 255, 0.16), 0 4px 12px rgba(0, 210, 255, 0.12);
}

/* Lead Cards */
.lead-card {
  background: #ffffff;
  border: 1px solid rgba(0, 85, 254, 0.11);
  box-shadow: 0 2px 8px rgba(0, 40, 120, 0.04);
  transition: all 0.2s ease-in-out;
}
.lead-card:hover {
  border-color: #0072ff;
  box-shadow: 0 12px 30px -4px rgba(0, 102, 255, 0.15), 0 4px 12px rgba(0, 210, 255, 0.10);
}

/* ========================================================== */
/* SIDEBAR (EXECUTIVE VIBRANT NAVY)                           */
/* ========================================================== */
.sidebar-vibrant-navy {
  background: linear-gradient(180deg, #060e20 0%, #0a1633 60%, #0f2048 100%);
  color: #ffffff;
  border-right: 1px solid rgba(0, 210, 255, 0.15);
  box-shadow: 4px 0 24px rgba(6, 14, 32, 0.3);
}

.sidebar-vibrant-navy .sidebar-link {
  color: #94a3b8;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sidebar-vibrant-navy .sidebar-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.sidebar-vibrant-navy .sidebar-link.active {
  background: linear-gradient(135deg, #0055fe 0%, #0099ff 100%);
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.5), 0 0 10px rgba(0, 210, 255, 0.35);
}

.sidebar-vibrant-navy .sidebar-link.active svg {
  color: #ffffff !important;
}

/* Badges */
.badge-soon {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
  letter-spacing: 0.02em;
}

.badge-no-site {
  background-color: #fee2e2;
  color: #ef4444;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
}

.badge-category {
  background-color: #f0f7ff;
  color: #0055fe;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  border: 1px solid rgba(0, 85, 254, 0.15);
}

.badge-temperature-warm {
  background-color: #fff7ed;
  color: #ea580c;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.badge-temperature-hot {
  background-color: #f0fdf4;
  color: #16a34a;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Toast */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: linear-gradient(135deg, #060e20 0%, #0a1633 100%);
  color: #ffffff;
  padding: 13px 20px;
  border-radius: 14px;
  border: 1px solid rgba(0, 210, 255, 0.4);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 14px 35px rgba(6, 14, 32, 0.5), 0 0 20px rgba(0, 210, 255, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.3s ease;
}

/* Scaffolding Animations & Motion Helpers */
@keyframes pulseSlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.animate-pulse-slow {
  animation: pulseSlow 4s ease-in-out infinite;
}

.glass-navbar {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

