/* ═══════════════════════════════════════════════════════════════════════════
   SUPPORT ACCESS & EDUCATION PAGE - PyStatR+ Futuristic Design
   File: scss/pages/support-access-education.css
   
   Futuristic, geometric, minimalist styling matching PyStatR+ brand:
   - Deep blacks, metallic blues, cyan highlights, gold accents
   - Glowing cards and geometric orbs
   - Alternating dark/light sections
   ═══════════════════════════════════════════════════════════════════════════ */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */

:root {
  --psr-deep-black: #0a0f1a;
  --psr-dark-navy: #0d1526;
  --psr-navy: #1a2744;
  --psr-deep-blue: #003366;
  --psr-cyan: #38BDF8;
  --psr-cyan-glow: rgba(56, 189, 248, 0.3);
  --psr-gold: #FACC15;
  --psr-gold-glow: rgba(250, 204, 21, 0.3);
  --psr-emerald: #10B981;
  --psr-purple: #A855F7;
  --psr-rose: #F43F5E;
  --psr-light-bg: #f8fafc;
  --psr-white: #ffffff;
  --psr-text-light: #e2e8f0;
  --psr-text-muted: #94a3b8;
  --psr-text-dark: #1e293b;
  --psr-border-dark: rgba(255, 255, 255, 0.08);
  --psr-border-light: #e2e8f0;
}

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

.support-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.support-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--psr-deep-black) 0%,
    var(--psr-dark-navy) 50%,
    var(--psr-navy) 100%
  );
  z-index: -2;
}

/* Geometric Orbs */
.support-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
}

.support-hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--psr-cyan) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.support-hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--psr-gold) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  opacity: 0.25;
}

.support-hero-content {
  max-width: 900px;
  z-index: 1;
}

.support-hero-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--psr-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.support-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--psr-white);
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--psr-cyan) 0%, #22d3ee 50%, var(--psr-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: var(--psr-text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Hero Stats */
.support-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--psr-cyan);
  line-height: 1;
}

.stat-label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: var(--psr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--psr-border-dark), transparent);
}

.support-hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--psr-cyan), var(--psr-gold), transparent);
}

/* ==========================================================================
   SECTION SEPARATORS
   ========================================================================== */

.section-separator-white {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--psr-border-light), transparent);
}

/* ==========================================================================
   DARK SECTIONS
   ========================================================================== */

.support-section-dark {
  background: linear-gradient(180deg, var(--psr-dark-navy) 0%, var(--psr-deep-black) 100%);
  padding: 5rem 2rem;
}

.support-section-dark.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.support-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.support-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.15), rgba(250, 204, 21, 0.05));
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--psr-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.support-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--psr-white);
  margin: 0 0 1rem 0;
}

.support-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: var(--psr-text-muted);
  line-height: 1.7;
  margin: 0;
}

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

/* ==========================================================================
   MISSION CARDS (Why Support Matters)
   ========================================================================== */

.mission-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.mission-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--psr-border-dark);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mission-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--psr-white);
  margin: 0 0 1rem 0;
}

.mission-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--psr-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   LIGHT SECTIONS
   ========================================================================== */

.support-section-light {
  background: var(--psr-light-bg);
  padding: 5rem 2rem;
}

.support-section-header-light {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.support-label-light {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.1), rgba(0, 51, 102, 0.05));
  border: 1px solid rgba(0, 51, 102, 0.2);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--psr-deep-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.support-title-light {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--psr-text-dark);
  margin: 0 0 1rem 0;
}

.support-subtitle-light {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   IMPACT CARDS (How Support Is Used)
   ========================================================================== */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.impact-card {
  background: var(--psr-white);
  border: 1px solid var(--psr-border-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.impact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border-radius: 12px;
  font-size: 1.75rem;
}

.impact-icon.cyan {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.impact-icon.emerald {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.impact-icon.gold {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.15), rgba(250, 204, 21, 0.05));
  border: 1px solid rgba(250, 204, 21, 0.3);
}

.impact-icon.purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.impact-icon.blue {
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.15), rgba(0, 51, 102, 0.05));
  border: 1px solid rgba(0, 51, 102, 0.3);
}

.impact-icon.rose {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.15), rgba(244, 63, 94, 0.05));
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.impact-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--psr-text-dark);
  margin: 0 0 0.75rem 0;
}

.impact-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   SUPPORT OPTIONS CARDS
   ========================================================================== */

.support-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.support-option-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--psr-border-dark);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.support-option-card:hover {
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-6px);
}

.support-option-card.featured {
  border-color: rgba(250, 204, 21, 0.4);
}

.support-option-card.featured:hover {
  border-color: rgba(250, 204, 21, 0.6);
}

.support-option-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--psr-cyan-glow) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.support-option-glow.featured {
  background: radial-gradient(circle at center, var(--psr-gold-glow) 0%, transparent 50%);
}

.support-option-card:hover .support-option-glow {
  opacity: 0.5;
}

.support-option-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  background: var(--psr-gold);
  color: var(--psr-deep-black);
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
}

.support-option-inner {
  position: relative;
  padding: 2.5rem 2rem;
  z-index: 1;
}

.support-option-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.support-option-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--psr-white);
  margin: 0 0 0.75rem 0;
}

.support-option-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--psr-text-muted);
  line-height: 1.65;
  margin: 0 0 1.5rem 0;
}

/* Amount Tags */
.support-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.amount-tag {
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--psr-text-light);
}

/* Other Ways List */
.other-ways-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
}

.other-ways-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: var(--psr-text-muted);
}

.other-ways-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--psr-cyan);
  font-weight: 600;
}

/* Support CTAs */
.support-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.support-cta.primary {
  background: var(--psr-cyan);
  color: var(--psr-deep-black);
}

.support-cta.primary:hover {
  background: #22d3ee;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--psr-cyan-glow);
}

.support-cta.gold {
  background: var(--psr-gold);
  color: var(--psr-deep-black);
}

.support-cta.gold:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--psr-gold-glow);
}

.support-cta.secondary {
  background: transparent;
  border: 1px solid var(--psr-cyan);
  color: var(--psr-cyan);
}

.support-cta.secondary:hover {
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-2px);
}

.cta-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.support-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* Payment Info */
.payment-info {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--psr-border-dark);
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.payment-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--psr-white);
  margin: 0 0 1rem 0;
}

.payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.payment-badge {
  padding: 0.5rem 1rem;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--psr-cyan);
}

.payment-note {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: var(--psr-text-muted);
  margin: 0;
}

/* ==========================================================================
   TRANSPARENCY BOX
   ========================================================================== */

.transparency-box {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--psr-white);
  border: 1px solid var(--psr-border-light);
  border-left: 4px solid var(--psr-deep-blue);
  border-radius: 12px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.transparency-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.transparency-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--psr-text-dark);
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.transparency-content p:last-child {
  margin-bottom: 0;
}

.transparency-content strong {
  color: var(--psr-deep-blue);
}

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

.support-cta-section {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

.support-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--psr-deep-black) 0%,
    var(--psr-dark-navy) 50%,
    #0f172a 100%
  );
  z-index: -2;
}

.support-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  z-index: -1;
}

.support-cta-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--psr-gold) 0%, transparent 70%);
  top: -100px;
  left: 10%;
}

.support-cta-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--psr-cyan) 0%, transparent 70%);
  bottom: -100px;
  right: 10%;
}

.support-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.support-cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--psr-white);
  margin: 0 0 1.5rem 0;
}

.support-cta-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  color: var(--psr-text-muted);
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.gratitude-note {
  font-style: italic;
  color: var(--psr-gold) !important;
  margin-bottom: 2.5rem !important;
}

.support-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--psr-gold);
  color: var(--psr-deep-black);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-button-primary:hover {
  background: #fbbf24;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--psr-gold-glow);
}

.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--psr-white);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* C.E.I.A Values */
.ceia-values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ceia-badge {
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--psr-text-light);
  letter-spacing: 0.02em;
}

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

@media (max-width: 768px) {
  .support-hero {
    min-height: 60vh !important;
    padding: 8rem 1.5rem 3rem !important;
  }
  
  .support-hero-orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }
  
  .support-hero-orb-2 {
    width: 250px;
    height: 250px;
  }
  
  .support-hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-divider {
    height: 40px;
  }
  
  .support-section-dark,
  .support-section-light {
    padding: 4rem 1.5rem;
  }
  
  .mission-content {
    grid-template-columns: 1fr;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .support-options-grid {
    grid-template-columns: 1fr;
  }
  
  .transparency-box {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .support-cta-section {
    padding: 4rem 1.5rem;
  }
  
  .support-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .ceia-values {
    gap: 0.75rem;
  }
  
  .ceia-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

@media (max-width: 480px) {
  .support-hero {
    padding: 4rem 1rem 2.5rem;
  }
  
  .support-hero-label {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
  
  .support-hero-subtitle {
    font-size: 1rem;
  }
  
  .support-hero-stats {
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .stat-divider {
    width: 50px;
    height: 1px;
  }
  
  .support-section-dark,
  .support-section-light {
    padding: 3rem 1rem;
  }
  
  .support-option-inner {
    padding: 2rem 1.5rem;
  }
  
  .amount-tag {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
  }
  
  .payment-methods {
    gap: 0.5rem;
  }
  
  .payment-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }
}

/* ==========================================================================
   QUARTO OVERRIDES
   ========================================================================== */

/* Remove default Quarto spacing */
.quarto-title {
  display: none;
}

#quarto-content {
  padding-top: 0;
}

main.content {
  padding: 0;
  max-width: none;
}

/* Ensure full-width sections work */
.column-screen,
.column-screen-inset {
  padding: 0;
}
