/* ═══════════════════════════════════════════════════════════════════════════
   REIMAGINED HERO SECTION CSS
   Add to: scss/hero-reimagined.css
   Catchy, attention-grabbing design with PyStatR+ brand prominence
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   HERO BADGE - Animated attention grabber
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #22d3ee;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { 
    opacity: 1; 
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
  }
  50% { 
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(34, 211, 238, 0);
  }
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #22d3ee;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO HEADLINE - Brand prominence
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.hero-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(34, 211, 238, 0.3);
}

.brand-plus {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  animation: plusGlow 3s ease-in-out infinite;
}

@keyframes plusGlow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.8));
  }
}

.hero-tagline-main {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.2;
}

.hero-tagline-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #94a3b8;
  line-height: 1.2;
}

.text-gradient-animated {
  background: linear-gradient(90deg, #22d3ee, #f59e0b, #22d3ee);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   VALUE PROPOSITION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-value-prop {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-value-prop strong {
  color: #22d3ee;
  font-weight: 600;
}

.hero-value-prop em {
  color: #fbbf24;
  font-style: normal;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOCIAL PROOF BAR
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  width: fit-content;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.proof-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.proof-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.3), transparent);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
  background: linear-gradient(135deg, #ef4444 0%, #f87171 50%, #ef4444 100%);
  color: white;
}

.cta-button-primary .cta-icon {
  flex-shrink: 0;
}

.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  background: transparent;
  color: #22d3ee;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(34, 211, 238, 0.4);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background: rgba(34, 211, 238, 0.1);
  border-color: #22d3ee;
  color: #22d3ee;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MEMBERSHIP NOTE
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-membership-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.membership-icon {
  font-size: 1rem;
}

.hero-membership-note a {
  color: #fbbf24;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.hero-membership-note a:hover {
  color: #f59e0b;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST INDICATORS
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-text {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trust-flags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.trust-flags span {
  font-size: 1.25rem;
}

.trust-more {
  font-size: 0.8rem !important;
  color: #94a3b8;
  font-weight: 500;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(148, 163, 184, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-brand-name {
    font-size: 3rem;
  }
  
  .hero-tagline-main,
  .hero-tagline-sub {
    font-size: 2rem;
  }
  
  .hero-social-proof {
    gap: 1rem;
    padding: 0.875rem 1.25rem;
  }
  
  .proof-number {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero-badge {
    margin-bottom: 1rem;
  }
  
  .badge-text {
    font-size: 0.75rem;
  }
  
  .hero-brand-name {
    font-size: 2.5rem;
  }
  
  .hero-tagline-main,
  .hero-tagline-sub {
    font-size: 1.5rem;
  }
  
  .hero-value-prop {
    font-size: 1rem;
  }
  
  .hero-social-proof {
    width: 100%;
    justify-content: center;
  }
  
  .proof-number {
    font-size: 1.125rem;
  }
  
  .proof-label {
    font-size: 0.65rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }
  
  .hero-membership-note {
    flex-direction: column;
    text-align: center;
    font-size: 0.8rem;
  }
  
  .trust-flags {
    justify-content: center;
  }
  
  .hero-trust {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-brand-name {
    font-size: 2rem;
  }
  
  .hero-tagline-main,
  .hero-tagline-sub {
    font-size: 1.25rem;
  }
  
  .hero-value-prop {
    font-size: 0.9rem;
  }
  
  .proof-divider {
    height: 30px;
  }
  
  .trust-flags span {
    font-size: 1rem;
  }
}
