/* ============================================
   EVLVD Podcast Accelerator Discovery Page
   Brand: Bold authority · Creative energy · Futuristic & soulful
   ============================================ */

/* CSS Variables / Design Tokens */
:root {
  /* Brand Colors */
  --ink: #000000;
  --plum: #2B1B65;
  --violet: #6A2FD8;
  --magenta: #B312FF;
  --snow: #FFFFFF;
  --mist: #E6E8EE;
  --ice: #9EC9E9;
  --sky: #5AA7E6;
  --royal: #0B3EA8;
  
  /* Gradients */
  --grad: linear-gradient(90deg, var(--magenta), var(--sky), var(--royal));
  --grad-reverse: linear-gradient(90deg, var(--royal), var(--sky), var(--magenta));
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 64px;
  --spacing-2xl: 96px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  
  /* Shadows */
  --shadow-glow: 0 0 24px rgba(179, 18, 255, 0.12);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-intense: 0 0 40px rgba(179, 18, 255, 0.25);
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 20px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-primary);
  background: var(--ink);
  color: var(--snow);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.section-divider {
  height: 2px;
  background: radial-gradient(120px 2px at 50% 50%, var(--violet), transparent 60%);
  margin: var(--spacing-xl) 0;
}

.waveform-divider {
  height: 3px;
  background: radial-gradient(150px 3px at 50% 50%, var(--magenta), var(--sky) 40%, transparent 70%);
}

.card {
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  padding: var(--spacing-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-intense);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 44px;
  min-width: 44px;
  gap: 8px;
}

.btn:focus {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--grad);
  color: var(--snow);
  box-shadow: 0 4px 12px rgba(179, 18, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 18, 255, 0.5);
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--magenta);
  color: var(--snow);
}

.btn-secondary:hover {
  background: rgba(179, 18, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(179, 18, 255, 0.3);
}

.btn-header {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mist);
  border-bottom-color: rgba(230, 232, 238, 0.1);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
}

.logo-text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.header-nav {
  display: flex;
  gap: var(--spacing-sm);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: var(--spacing-xl) 0;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
}

.hero-container-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-visual {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(179, 18, 255, 0.3), rgba(90, 167, 230, 0.2), transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.waveform-bg {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 60px;
  opacity: 0.4;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .waveform-bg path {
    animation: waveform 3s ease-in-out infinite;
  }
}

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

.hero-content {
  text-align: center;
  width: 100%;
}

.hero-title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  letter-spacing: -1px;
}

.hero-tagline {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 300;
  color: var(--ice);
  margin-bottom: var(--spacing-sm);
  font-style: italic;
}

.hero-focus {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--mist);
  margin-bottom: var(--spacing-lg);
  font-weight: 500;
}

.hero-content .btn-primary {
  display: inline-flex;
  font-size: clamp(14px, 1.8vw, 18px);
}

/* Desktop: side-by-side */
@media (min-width: 900px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .hero-visual {
    flex: 0 0 45%;
    order: 1;
  }
  
  .hero-content {
    flex: 0 0 50%;
    order: 2;
    text-align: center;
  }
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.stats-header {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: var(--snow);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.stat-item {
  padding: var(--spacing-md);
}

.stat-number {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--mist);
  opacity: 0.8;
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   POSITIONING SECTION
   ============================================ */

.positioning {
  padding: var(--spacing-xl) 0;
}

.positioning-container {
  max-width: 800px;
  margin: 0 auto;
}

.positioning-card {
  text-align: center;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: var(--ice);
  text-align: center;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.positioning-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--snow);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.positioning-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
  text-align: center;
}

.positioning-list li {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--ice);
  padding: var(--spacing-xs) 0;
  position: relative;
}

.positioning-list li::before {
  content: '✓';
  color: var(--sky);
  margin-right: 8px;
  font-weight: 700;
}

.positioning-body {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ice);
  margin-bottom: var(--spacing-lg);
  margin-top: var(--spacing-md);
  font-weight: 300;
  font-style: italic;
  text-align: center;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem {
  padding: var(--spacing-xl) 0;
}

.problem-container {
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: rgba(179, 18, 255, 0.05);
  border: 1px solid rgba(179, 18, 255, 0.2);
  border-radius: var(--radius-md);
}

.problem-icon {
  font-size: 32px;
  color: var(--magenta);
  font-weight: 700;
  flex-shrink: 0;
}

.problem-text {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--snow);
  text-align: left;
}

.problem-footer {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--ice);
  text-align: center;
  margin-top: var(--spacing-lg);
  font-weight: 500;
  font-style: italic;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution {
  padding: var(--spacing-xl) 0;
}

.solution-container {
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-card {
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: left;
}

.comparison-card.with {
  border-color: var(--magenta);
  box-shadow: var(--shadow-glow);
}

.comparison-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-list li {
  font-size: clamp(16px, 2vw, 18px);
  padding: var(--spacing-sm) 0;
  padding-left: 32px;
  position: relative;
  color: var(--mist);
}

.comparison-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--magenta);
  font-size: 24px;
  line-height: 1;
}

.with .comparison-list li::before {
  content: '✓';
  color: var(--sky);
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  padding: var(--spacing-xl) 0;
}

.benefits-container {
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: rgba(90, 167, 230, 0.05);
  border: 1px solid rgba(90, 167, 230, 0.2);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  border-color: var(--sky);
  box-shadow: 0 4px 16px rgba(90, 167, 230, 0.2);
}

.benefit-icon {
  font-size: 40px;
}

.benefit-text {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--snow);
  font-weight: 500;
}

@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  padding: var(--spacing-xl) 0;
}

.testimonials h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.testimonials-sub {
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ice);
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.testimonial-card {
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--magenta);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.quote-icon {
  font-size: 48px;
  color: var(--magenta);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--spacing-sm);
  font-family: Georgia, serif;
}

.testimonial-quote {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--snow);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
}

.testimonial-body {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.testimonial-author {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--ice);
  font-weight: 600;
  font-style: italic;
}

@media (min-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ============================================
   ABOUT RAE SECTION
   ============================================ */

.about-rae {
  padding: var(--spacing-xl) 0;
}

.about-rae-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-rae-image-wrapper {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.about-rae-image {
  width: 100%;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
}

.about-rae-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(179, 18, 255, 0.25), rgba(90, 167, 230, 0.15), transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.about-rae-text {
  flex: 1;
  text-align: center;
}

.about-rae-body {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 900px) {
  .about-rae-content {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .about-rae-image-wrapper {
    flex: 0 0 35%;
  }
  
  .about-rae-text {
    flex: 0 0 60%;
    text-align: left;
  }
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values {
  padding: var(--spacing-xl) 0;
}

.values-container {
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.value-card {
  text-align: center;
}

.value-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

.value-scripture {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--sky);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  font-style: italic;
}

.value-description {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--mist);
  line-height: 1.6;
}

@media (min-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
  padding: var(--spacing-xl) 0;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-card {
  text-align: center;
  padding: var(--spacing-xl);
}

.final-cta-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.final-cta-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ice);
  margin-bottom: var(--spacing-lg);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: var(--spacing-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--spacing-xl);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  margin-bottom: var(--spacing-sm);
}

.footer-text {
  font-size: 14px;
  color: var(--mist);
  margin-bottom: var(--spacing-xs);
}

.footer-note {
  font-size: 12px;
  color: var(--mist);
  opacity: 0.7;
  font-style: italic;
}

/* ============================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  :root {
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
  }
  
  .btn-full {
    width: 100%;
  }
  
  .hero {
    padding: var(--spacing-lg) 0;
    min-height: auto;
  }
  
  .section-title {
    text-align: center;
  }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--magenta);
  color: var(--snow);
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* High contrast focus indicators */
a:focus,
button:focus {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

/* Ensure sufficient color contrast */
::selection {
  background: var(--magenta);
  color: var(--snow);
}

/* Keyboard navigation helper */
.focusable {
  position: relative;
}

.focusable::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 0.2s ease;
}

.focusable:focus::after {
  border-color: var(--sky);
}
