/* ============================================================
   RENEWED HOPE PULSE - Main Stylesheet
   Shared across all pages
   ============================================================ */

/* ── 1. CSS VARIABLES ── */
:root {
  /* Nigerian flag green - strong, no tinting */
  --green:        #008751;
  --green-dark:   #006B41;
  --green-light:  #00A864;
  --green-pale:   #E8F5EE;
  --green-mid:    rgba(0, 135, 81, 0.15);

  /* Blue removed - brand uses green only */

  /* Neutrals */
  --ink:          #0A0A0A;
  --ink-2:        #1A1A1A;
  --muted:        #5A5A5A;
  --muted-lt:     #8A8A8A;
  --border:       #E0E0E0;
  --bg:           #F7F7F5;
  --white:        #FFFFFF;
  --dark:         #060809;
  --dark-2:       #0C0F10;

  /* Typography */
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 96px;
  --section-pad-sm: 64px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.text-green  { color: var(--green); }

.text-muted  { color: var(--muted); }
.text-white  { color: var(--white); }

/* ── 4. LAYOUT UTILITIES ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section       { padding: var(--section-pad) 0; }
.section-sm    { padding: var(--section-pad-sm) 0; }
.section-bg    { background: var(--bg); }
.section-dark  { background: var(--dark); }

.flex           { display: flex; }
.flex-center    { display: flex; align-items: center; justify-content: center; }
.flex-between   { display: flex; align-items: center; justify-content: space-between; }
.flex-col       { display: flex; flex-direction: column; }
.gap-sm         { gap: 12px; }
.gap-md         { gap: 20px; }
.gap-lg         { gap: 32px; }

.section-header { margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.75;
}

/* ── 5. EYEBROW LABELS ── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-green { color: var(--green); }

.eyebrow-white { color: rgba(255, 255, 255, 0.45); }
.eyebrow-muted { color: var(--muted-lt); }

/* ── 6. TAGS ── */
.tag {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tag-green  { background: var(--green-pale);  color: var(--green-dark); }

.tag-gold   { background: #FEF3C7;            color: #92400E; }
.tag-pink   { background: #FDF2F8;            color: #9D174D; }
.tag-light  { background: var(--bg);          color: var(--muted); }
.tag-white  { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); }

/* ── 7. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  transition: background 0.18s, border-color 0.18s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-green {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 6px 20px rgba(0,135,81,0.3);
}


.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green-pale);
}

.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-ink:hover {
  background: var(--ink);
  color: white;
}

/* ── 8. NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: transparent;
  transition: background 0.25s, border-color 0.25s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.solid {
  background: rgba(6, 8, 9, 0.97);
  border-color: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Wordmark logo */
.wordmark {
  display: flex;
  align-items: baseline;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  margin-right: auto;
  letter-spacing: -0.01em;
}
.wordmark-rh { color: var(--green); }
.wordmark-p  { color: rgba(255,255,255,0.75); }

.nav-links {
  display: flex;
  align-items: center;
  margin: 0 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover      { color: white; background: rgba(255,255,255,0.06); }
.nav-links a.active     { color: var(--green); }

/* Mobile nav */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  padding: 4px 8px;
}

/* ── 9. FOOTER ── */
.footer {
  background: var(--dark-2);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 260px;
  margin-top: 12px;
}
.footer-wordmark {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
}
.footer-wordmark .rh { color: var(--green); }
.footer-wordmark .p  { color: rgba(255,255,255,0.6); }

.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.footer-socials a:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-affil {
  display: flex;
  align-items: center;
  gap: 10px;
}
.affil-bar {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ── 10. TICKER ── */
.ticker-wrap {
  background: var(--green);
  padding: 11px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  white-space: nowrap;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

/* ── 11. HOMEPAGE HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

/* Animated atmospheric glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  bottom: -200px; left: -150px;
  background: radial-gradient(circle, rgba(0,135,81,0.22) 0%, transparent 65%);
  animation: glowDrift1 9s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(0,71,171,0.18) 0%, transparent 65%);
  animation: glowDrift2 12s ease-in-out infinite alternate;
}
.hero-glow-3 {
  width: 400px; height: 400px;
  top: 50%; right: 20%;
  background: radial-gradient(circle, rgba(0,135,81,0.08) 0%, transparent 70%);
  animation: glowDrift3 15s ease-in-out infinite alternate;
}
@keyframes glowDrift1 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.9; }
  100% { transform: translate(40px, -50px) scale(1.1); opacity: 0.7; }
}
@keyframes glowDrift2 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
  100% { transform: translate(-30px, 40px) scale(0.9); opacity: 1; }
}
@keyframes glowDrift3 {
  0%   { transform: translate(0, -50%) scale(1); }
  100% { transform: translate(-40px, -60%) scale(1.15); }
}

/* Dot grid overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Green left border accent */
.hero-border {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--green);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

/* Live badge */
.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,135,81,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(0,135,81,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,135,81,0); }
}
.live-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  color: white;
  margin-bottom: 28px;
  max-width: 920px;
}
.hero h1 em        { font-style: normal; color: var(--green); }
.hero h1 .green-w  { color: var(--green-light); }

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 72px; }

.hero-shows {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 0;
}
.hero-show-item {
  padding: 0 36px 0 0;
  margin-right: 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-show-item:last-child { border-right: none; }
.hsi-label { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 5px; }
.hsi-name  { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.75); }
.hsi-freq  { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ── 12. INNER PAGE HERO ── */
.page-hero {
  background: var(--dark);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--green);
}
.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(0,135,81,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  color: white;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: var(--green); }
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.7;
}

/* ── 13. PROGRAM CARDS ── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.program-card {
  background: var(--white);
  padding: 40px 36px;
  border-left: 4px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.program-card:hover {
  border-left-color: var(--card-accent, var(--green));
  background: #FAFAF9;
}
.program-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.program-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.program-card h3 { font-size: 22px; margin-bottom: 10px; }
.program-card p  { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.program-footer  { display: flex; align-items: center; justify-content: space-between; }
.program-meta    { font-size: 12px; color: var(--muted-lt); }
.program-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  transition: gap 0.15s;
}
.program-link:hover { gap: 10px; }

/* ── 14. EPISODE CARDS ── */
.ep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ep-big {
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.ep-big-show-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.ep-big-icon {
  font-size: 72px;
  position: absolute;
  top: 28px; right: 28px;
  opacity: 0.18;
}
.ep-play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  margin-bottom: 20px;
  transition: transform 0.15s, background 0.15s;
}
.ep-play-btn:hover {
  transform: scale(1.08);
  background: var(--green-light);
}
.ep-big h3 { font-size: 21px; color: white; line-height: 1.25; margin-bottom: 10px; }
.ep-big p  { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.ep-big-meta { display: flex; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.ep-big-meta span { font-size: 12px; color: rgba(255,255,255,0.35); }
.ep-big-meta .show-name { font-weight: 600; }

.ep-list { display: flex; flex-direction: column; }
.ep-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity 0.15s;
}
.ep-item:first-child { border-top: 1px solid var(--border); }
.ep-item:hover { opacity: 0.8; }
.ep-item-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.ep-item-info { flex: 1; min-width: 0; }
.ep-item-info h4 { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 3px; }
.ep-item-info p  { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ep-item-info .ep-dur { font-size: 11px; color: var(--muted-lt); margin-top: 5px; }
.ep-item-play {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--muted);
  margin-top: 9px;
  transition: border-color 0.15s, color 0.15s;
}
.ep-item:hover .ep-item-play { border-color: var(--green); color: var(--green); }

/* Episode card (grid layout) */
.ep-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ep-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.ep-card-thumb {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  position: relative;
}
.ep-card-body { padding: 20px; }
.ep-card-body h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.ep-card-body p  { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.ep-card-meta    { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--muted-lt); }

/* ── 15. IMPACT STATS BAR ── */
.impact-section { background: var(--green); padding: 72px 0; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.impact-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.impact-stat:last-child { border-right: none; }
.impact-stat .num {
  font-family: var(--font-head);
  font-size: 56px; font-weight: 700;
  color: white; line-height: 1;
}
.impact-stat .suffix { font-size: 32px; }
.impact-stat .lbl {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-top: 10px; line-height: 1.4;
}

/* ── 16. TEAM CARDS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
.team-avatar {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.team-init {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 26px; font-weight: 700; color: white;
}
.team-body { padding: 18px 20px; }
.team-body h4    { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.team-body .role { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.team-socials    { display: flex; gap: 6px; }
.team-socials a {
  width: 28px; height: 28px;
  border-radius: 5px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--muted);
  transition: all 0.15s;
}
.team-socials a:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }

.open-card {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 24px;
  text-align: center; min-height: 240px;
  transition: border-color 0.2s;
  cursor: pointer;
}
.open-card:hover { border-color: var(--green); }
.open-card .plus  { font-size: 32px; color: var(--border); }
.open-card h4     { font-size: 14px; color: var(--muted); }
.open-card .link  { font-size: 12px; font-weight: 600; color: var(--green); }

/* ── 17. EVENT ROWS / CARDS ── */
.events-list { display: flex; flex-direction: column; }
.event-row {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.15s;
}
.event-row:first-child { border-top: 1px solid var(--border); }
.event-row:hover { opacity: 0.88; }
.event-date-box { width: 60px; flex-shrink: 0; text-align: center; }
.event-day {
  font-family: var(--font-head);
  font-size: 38px; font-weight: 700;
  line-height: 1; color: var(--green);
}
.event-day.green { color: var(--green); }
.event-mon {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted-lt); margin-top: 2px;
}
.event-info { flex: 1; }
.event-info h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.event-info p  { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.event-tags    { display: flex; gap: 8px; flex-wrap: wrap; }
.event-action  { flex-shrink: 0; padding-top: 4px; }

/* ── 18. FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.form-input,
.form-textarea,
.form-select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,135,81,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12px; color: var(--muted); }

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

/* ── 19. JOIN SECTION (homepage) ── */
.join-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  /* Base dark navy */
  background: #080F1A;
}
/* Green + blue directional glow */
.join-glow-green {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  bottom: -200px; left: -100px;
  background: radial-gradient(circle, rgba(0,135,81,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.join-glow-green {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  top: -150px; right: -80px;
  background: radial-gradient(circle, rgba(0,71,171,0.22) 0%, transparent 60%);
  pointer-events: none;
}
/* Nigerian map SVG - decorative outline */
.join-map {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 520px;
  opacity: 0.18;
  pointer-events: none;
}
.join-content { position: relative; z-index: 2; max-width: 680px; }
.join-section h2 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
}
.join-section h2 em      { font-style: normal; color: var(--green); }
.join-section h2 .green-w { color: var(--green-light); }
.join-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}
.join-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.join-perks { display: flex; flex-wrap: wrap; gap: 16px 32px; margin-top: 44px; }
.join-perk {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.4);
}
.join-perk span { color: var(--green); font-size: 15px; }

/* ── 20. NEWSLETTER BAND ── */
.newsletter-section { background: var(--green); padding: 56px 0; }
.newsletter-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.newsletter-text h3 { font-size: 24px; color: white; margin-bottom: 4px; }
.newsletter-text p  { font-size: 14px; color: rgba(255,255,255,0.65); }
.newsletter-form { display: flex; flex: 1; max-width: 440px; }
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 14px; outline: none;
  font-family: var(--font-body);
}
.newsletter-form button {
  background: var(--dark);
  color: white; border: none;
  padding: 13px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 600; font-size: 14px;
  white-space: nowrap;
  transition: background 0.15s;
}
.newsletter-form button:hover { background: var(--ink-2); }

/* ── 21. ABOUT SECTION ── */
.about-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 96px; align-items: start; }
.about-text h2 { font-size: clamp(32px, 4vw, 50px); margin-bottom: 24px; }
.about-text h2 span { color: var(--green); }
.about-text p  { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.about-cta     { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.stat-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.stat-row:first-child { border-top: 1px solid var(--border); }
.stat-num {
  font-family: var(--font-head);
  font-size: 46px; font-weight: 700;
  color: var(--green); line-height: 1; min-width: 110px;
}
.stat-num small { font-size: 26px; color: var(--muted-lt); }
.stat-info strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.stat-info span   { font-size: 13px; color: var(--muted); }

/* ── 22. FILTERS (episodes page) ── */
.filter-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0; margin-bottom: 40px;
}
.filter-tab {
  padding: 10px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 13px; font-weight: 600;
  color: var(--muted); background: transparent;
  border: none; border-bottom: 2px solid transparent;
  cursor: pointer; transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
}
.filter-tab:hover  { color: var(--ink); }
.filter-tab.active { color: var(--green); border-color: var(--green); }

.ep-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ── 23. PAGE-SPECIFIC HEADER ROW ── */
.page-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.page-header-row h2 { font-size: clamp(28px, 3.5vw, 44px); }

/* ── 24. CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; }
.contact-form-wrap { /* main form side */ }
.contact-side h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; margin-top: 36px; }
.contact-side h3:first-child { margin-top: 0; }
.contact-side p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.contact-socials { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.contact-social-link {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink);
  padding: 10px 14px; border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.15s, background 0.15s;
}
.contact-social-link:hover { border-color: var(--green); background: var(--green-pale); }
.contact-social-link .icon { font-size: 18px; }

/* ── 25. RESPONSIVE ── */
@media (max-width: 960px) {
  .about-grid     { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .programs-grid  { grid-template-columns: 1fr; }
  .ep-grid        { grid-template-columns: 1fr; }
  .impact-grid    { grid-template-columns: 1fr 1fr; }
  .join-map       { display: none; }
}

@media (max-width: 700px) {
  :root { --section-pad: 64px; }
  .nav-links          { display: none; }
  .nav-mobile-toggle  { display: flex; }
  .hero-shows         { gap: 16px; flex-direction: column; }
  .hero-show-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 12px; padding-right: 0; margin-right: 0; }
  .hero-show-item:last-child { border-bottom: none; }
  .hero-ctas          { flex-direction: column; }
  .impact-grid        { grid-template-columns: 1fr 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .form-grid-2        { grid-template-columns: 1fr; }
  .newsletter-inner   { flex-direction: column; }
  .newsletter-form    { max-width: 100%; width: 100%; }
  .page-header-row    { flex-direction: column; align-items: flex-start; }
  .event-row          { flex-wrap: wrap; }
  .event-action       { width: 100%; }
  .event-action .btn  { width: 100%; justify-content: center; }
}

/* ── 26. PAGE HERO GLOWS (inner pages) ── */
.page-hero-glow-g {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  bottom: -180px; left: -100px;
  background: radial-gradient(circle, rgba(0,135,81,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-glow-b {
  position: absolute;
  width: 440px; height: 440px;
  border-radius: 50%;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(0,71,171,0.15) 0%, transparent 65%);
  pointer-events: none;
}

/* ── 27. JOIN / CONTACT FORMS ── */
.join-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,135,81,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.req { color: var(--green); }

/* Checkbox grid */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.check-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}
.check-label input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}

/* ── 28. FAQ ACCORDION ── */
.faq-item {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--muted-lt);
  transition: transform 0.2s;
}
.faq-item[open] summary { color: var(--green); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--green); }
.faq-body {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── 29. ROLE CARDS (join page) ── */
.role-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.role-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
  border-color: var(--green);
}
.role-icon { font-size: 2.4rem; margin-bottom: 14px; }
.role-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.role-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

/* ── 30. EPISODE CARD TILE (episodes grid) ── */
.ep-card-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ep-card-tile:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* ── 31. PRIVACY PAGE ── */
.privacy-body { display: flex; flex-direction: column; gap: 0; }
.privacy-intro {
  margin-bottom: 40px;
  padding: 28px 32px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green);
}
.privacy-intro p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.privacy-intro p:last-child { margin-bottom: 0; }

.privacy-section { margin-bottom: 48px; }
.privacy-section h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.privacy-section h4 { font-size: 1rem; margin-bottom: 10px; margin-top: 20px; color: var(--ink-2); }
.privacy-section p  { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.privacy-section ul { padding-left: 20px; display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.privacy-section ul li { font-size: 15px; color: var(--muted); line-height: 1.7; list-style: disc; }
.privacy-section a { color: var(--green); text-decoration: underline; }

/* ── 32. TEAM CARD LARGE ── */
.team-card-lg .team-avatar {
  height: 120px;
}
.team-card-lg .team-body { padding: 20px 24px; }
.team-card-lg .team-body h4 { font-size: 17px; }
.team-card-lg .team-body .role { font-size: 13px; margin-bottom: 12px; }

/* ── 33. RESPONSIVE ADDITIONS ── */
@media (max-width: 960px) {
  .form-row { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .role-card { /* stays in grid, controlled by parent */ }
  .privacy-body { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .check-grid { grid-template-columns: 1fr; }
  .join-form .form-row { grid-template-columns: 1fr; }
}


/* ============================================================
   FOUNDER SECTION
   Two-column: text left, cycling photo stage right.
   Design language mirrors hero / page-hero: dot-grid, glows, green accent bar.
   ============================================================ */

.founder-section {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 88px 0;
}

.founder-section--compact {
  padding: 64px 0;
}

/* Dot-grid texture (same density as hero) */
.founder-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* Two atmospheric radial glows */
.founder-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.founder-glow--1 {
  width: 640px; height: 640px;
  bottom: -200px; left: -160px;
  background: radial-gradient(circle, rgba(0,135,81,0.20) 0%, transparent 65%);
  animation: glowDrift1 10s ease-in-out infinite alternate;
}
.founder-glow--2 {
  width: 520px; height: 520px;
  top: -140px; right: -100px;
  background: radial-gradient(circle, rgba(0,135,81,0.09) 0%, transparent 65%);
  animation: glowDrift2 14s ease-in-out infinite alternate;
}

/* 4px green left accent bar (same as page-hero) */
.founder-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--green);
  z-index: 1;
}

/* ── Two-column row ── */
.founder-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ── Left: text column ── */
.founder-text {
  flex: 1 1 0;
  min-width: 0;
}

.eyebrow-light {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

/* Profile circle + name in one flex row */
.founder-namerow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.founder-profile {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(0,135,81,0.5);
  overflow: hidden;
  background: #1a2e20;
  box-shadow: 0 0 0 4px rgba(0,135,81,0.12);
}

.founder-profile-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-color: var(--green);
}

.founder-nameblock {
  min-width: 0;
}

.founder-name {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.founder-title {
  font-size: 0.85rem;
  color: var(--green-light, #4ade80);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.founder-bio {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}

.founder-section--compact .founder-bio {
  font-size: 0.93rem;
}

/* ── Cycling dots ── */
.founder-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.founder-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

@keyframes dotActive {
  0%    { background: var(--green-light, #4ade80); width: 20px; border-radius: 4px; }
  28%   { background: var(--green-light, #4ade80); width: 20px; border-radius: 4px; }
  33%   { background: rgba(255,255,255,0.2); width: 6px; border-radius: 50%; }
  100%  { background: rgba(255,255,255,0.2); width: 6px; border-radius: 50%; }
}

.founder-dot--1 { animation: dotActive 15s infinite 0s;  }
.founder-dot--2 { animation: dotActive 15s infinite 5s;  }
.founder-dot--3 { animation: dotActive 15s infinite 10s; }

/* ── Right: photo stage ── */
.founder-visual {
  flex: 0 0 440px;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: stretch;
}

.founder-stage {
  position: relative;
  width: 100%;
  min-height: 460px;
  border-radius: 14px;
  overflow: hidden;
  background: #0e1f14;
}

.founder-section--compact .founder-stage {
  min-height: 360px;
}

/* Photos fill the full stage */
.founder-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
}

@keyframes founderPhotoFade {
  0%    { opacity: 1; }
  28%   { opacity: 1; }
  38%   { opacity: 0; }
  95%   { opacity: 0; }
  100%  { opacity: 1; }
}

.founder-photo--1 { animation: founderPhotoFade 15s infinite 0s;  }
.founder-photo--2 { animation: founderPhotoFade 15s infinite 5s;  }
.founder-photo--3 { animation: founderPhotoFade 15s infinite 10s; }

/* Left-edge fade: stage bleeds into dark section seamlessly */
.founder-stage-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, rgba(6,8,9,0.5) 22%, transparent 42%);
  pointer-events: none;
  z-index: 1;
}

/* Bottom vignette: grounds the photo */
.founder-stage-vignette {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(6,8,9,0.65) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .founder-inner {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .founder-visual {
    flex: none;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    align-self: auto;
  }
  .founder-stage { min-height: 280px; }
  .founder-section--compact .founder-stage { min-height: 240px; }
  .founder-stage-fade {
    background: linear-gradient(to top, var(--dark) 0%, rgba(6,8,9,0.4) 18%, transparent 38%);
  }
}

@media (max-width: 600px) {
  .founder-namerow { gap: 14px; }
  .founder-profile { width: 56px; height: 56px; }
  .founder-stage { min-height: 220px; border-radius: 10px; }
}
