/* ========================================
   FFLW: Bright, Bold, Story-Driven
   ======================================== */

:root {
  --blue: #3b82f6;
  --blue-deep: #1d4ed8;
  --blue-light: #eff6ff;
  --orange: #f97316;
  --orange-deep: #ea580c;
  --orange-light: #fff7ed;
  --pink: #ec4899;
  --pink-light: #fdf2f8;
  --green: #10b981;
  --green-light: #ecfdf5;
  --purple: #8b5cf6;
  --purple-light: #f5f3ff;
  --red: #ef4444;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 86px;
  --max-w: 1120px;
  --narrow: 720px;
  --radius: 20px;
  --radius-sm: 12px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--gray-800); background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; text-align: left; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ---- UTILITIES ---- */
.container-narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 24px; }

[data-anim] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim].visible {
  opacity: 1;
  transform: none;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; font-size: 15px; font-weight: 700;
  border-radius: 100px; border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn--big { padding: 18px 44px; font-size: 17px; }
.btn--white { background: #fff; color: var(--gray-900); }
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn--nav { background: var(--orange); color: #fff; padding: 10px 24px; font-size: 14px; }
.btn--nav:hover { background: var(--orange-deep); }

.btn--pledge-pop {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: linear-gradient(120deg, #3b82f6 0%, #8b5cf6 25%, #ec4899 50%, #f97316 75%, #10b981 100%);
  background-size: 260% 260%;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(255,255,255,0.18) inset;
  animation: pledgeGradientShift 6s ease infinite;
}
.btn--pledge-pop::before {
  content: '';
  position: absolute;
  top: -220%;
  left: -60%;
  width: 52%;
  height: 520%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.42), rgba(255,255,255,0));
  animation: pledgeShineSweep 3.2s ease-in-out infinite;
  pointer-events: none;
}
.btn--pledge-pop:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28), 0 0 28px rgba(236, 72, 153, 0.35);
}

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

@keyframes pledgeShineSweep {
  0% { left: -70%; opacity: 0; }
  20% { opacity: 1; }
  50% { left: 125%; opacity: 0.9; }
  100% { left: 125%; opacity: 0; }
}

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gray-200);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
  transition: transform 0.2s;
}
.nav.scrolled .nav-logo {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 18px rgba(17,24,39,0.1);
}
.nav-logo:hover { transform: translateY(-1px); }
.nav-logo-img { height: 68px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a:not(.btn) {
  padding: 8px 16px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8);
  border-radius: 100px; transition: all 0.2s;
}
.nav.scrolled .nav-links a:not(.btn) { color: var(--gray-600); }
.nav-links a:not(.btn):hover { background: rgba(255,255,255,0.15); color: #fff; }
.nav.scrolled .nav-links a:not(.btn):hover { background: var(--gray-100); color: var(--gray-900); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav.scrolled .nav-toggle span { background: var(--gray-800); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 120px 24px 80px; position: relative;
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 40%, #ec4899 80%, #f97316 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-logo-mark {
  height: 110px;
  width: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.18));
  opacity: 0;
  animation: rise 0.7s 0.1s forwards;
}
.hero-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  opacity: 0; animation: rise 0.7s 0.2s forwards;
}
.hero-title {
  margin-bottom: 24px;
  opacity: 0; animation: rise 0.7s 0.4s forwards;
}
.hero-title span {
  display: block; font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px);
  font-weight: 800; color: rgba(255,255,255,0.95);
}
.hero-title em {
  display: block; font-family: var(--font-display); font-style: normal;
  font-size: clamp(52px, 10vw, 88px); font-weight: 900;
  line-height: 1; letter-spacing: -0.03em; color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.15);
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px); color: rgba(255,255,255,0.85);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.7;
  opacity: 0; animation: rise 0.7s 0.6s forwards;
}
.hero-sub strong { color: #fff; }
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: rise 0.7s 0.8s forwards;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  opacity: 0; animation: rise 0.7s 1s forwards;
}
.hero-scroll-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(12px); opacity: 1; }
}

/* ---- CHAPTERS ---- */
.chapter { padding: 100px 0; }
.chapter--colored { background: var(--blue-light); }
.chapter--think { background: var(--gray-50); }
.chapter--pledge {
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
  color: #fff;
}
.chapter--cta { padding-bottom: 120px; }

.chapter-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--blue); margin-bottom: 16px;
}
.chapter--pledge .chapter-label { color: rgba(255,255,255,0.7); }
.chapter-label--light { color: rgba(255,255,255,0.7); }

.chapter-title {
  font-family: var(--font-display); font-size: clamp(34px, 6vw, 56px);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 20px; color: var(--gray-900);
}
.chapter--pledge .chapter-title { color: #fff; }
.chapter--cta .chapter-title { text-align: center; }
.chapter-title--light { color: #fff; }

.chapter-intro {
  font-size: 18px; color: var(--gray-500); line-height: 1.8; margin-bottom: 48px;
}
.chapter--cta .chapter-intro { text-align: center; }

.chapter-bridge {
  text-align: center; font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px); font-weight: 900;
  color: var(--gray-900); margin-top: 60px; letter-spacing: -0.02em;
}

/* ---- PHOTO BREAK ---- */
.photo-break {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.photo-break-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}


/* ---- FEATURED PHOTO ---- */
.featured-photo {
  max-width: var(--max-w);
  margin: 0 auto 40px;
  padding: 0 24px;
}
.featured-photo-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

/* ---- CTA BANNER ---- */
.cta-banner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.cta-banner-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

/* ---- STATS SCROLL ---- */
.stats-scroll {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.stat-block {
  padding: 48px 36px; border-radius: var(--radius);
  text-align: center;
}
.stat-block--orange { background: var(--orange-light); }
.stat-block--blue { background: var(--blue-light); }
.stat-block--pink { background: var(--pink-light); }
.stat-block--green { background: var(--green-light); }

.stat-number {
  font-family: var(--font-display); font-size: clamp(48px, 8vw, 72px);
  font-weight: 900; line-height: 1; letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.stat-block--orange .stat-number { color: var(--orange); }
.stat-block--blue .stat-number { color: var(--blue); }
.stat-block--pink .stat-number { color: var(--pink); }
.stat-block--green .stat-number { color: var(--green); }

.stat-text {
  font-size: 17px; color: var(--gray-600); line-height: 1.6;
  max-width: 320px; margin: 0 auto;
}
.stat-text em { font-style: italic; font-weight: 600; color: var(--gray-800); }

/* ---- WAGE HERO ---- */
.wage-hero {
  text-align: center; padding: 64px 24px; margin: 48px 0;
}
.wage-hero-number {
  font-family: var(--font-display); font-size: clamp(80px, 15vw, 140px);
  font-weight: 900; line-height: 1; letter-spacing: -0.04em;
  color: var(--red);
  text-shadow: 0 4px 24px rgba(239,68,68,0.15);
}
.wage-hero-sub {
  font-size: 20px; color: var(--gray-600); margin-top: 16px;
}
.wage-hero-sub strong { color: var(--gray-900); }

/* ---- WAGE DEAD CALLOUT ---- */
.wage-dead-callout {
  text-align: center;
  padding: 40px 36px;
  border-radius: var(--radius);
  background: #fff;
  border: 2px solid rgba(239,68,68,0.2);
  box-shadow: 0 8px 32px rgba(239,68,68,0.06);
  margin-bottom: 48px;
}
.wage-dead-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 16px;
}
.wage-dead-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}
.wage-dead-sub strong { color: var(--red); }
.wage-dead-sub em { color: var(--green); font-weight: 600; }

/* ---- WAGE COMPARE ---- */
.wage-compare {
  display: flex; gap: 24px; align-items: stretch; margin: 48px 0;
}
.wage-col {
  flex: 1; padding: 36px 28px; border-radius: var(--radius);
  background: #fff; border: 2px solid var(--gray-200);
}
.wage-col--bad { border-color: rgba(239,68,68,0.2); }
.wage-col--good { border-color: rgba(16,185,129,0.3); box-shadow: 0 0 40px rgba(16,185,129,0.08); }

.wage-tag {
  display: inline-block; padding: 4px 14px; font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: 100px; margin-bottom: 16px;
}
.wage-tag--bad { background: rgba(239,68,68,0.1); color: var(--red); }
.wage-tag--good { background: rgba(16,185,129,0.1); color: var(--green); }

.wage-amount {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 48px);
  font-weight: 900; line-height: 1; color: var(--gray-800); margin-bottom: 8px;
}
.wage-amount small { font-size: 0.4em; font-weight: 600; opacity: 0.5; }
.wage-amount--good { color: var(--green); }

.wage-col p { font-size: 15px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.6; }

.wage-col ul { display: flex; flex-direction: column; gap: 10px; }
.wage-col li {
  font-size: 15px; font-weight: 500; padding-left: 28px; position: relative;
  line-height: 1.5;
}
.wage-col li::before {
  content: ''; position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px; border-radius: 50%; background-size: 10px; background-repeat: no-repeat; background-position: center;
}
.wage-col--bad li { color: var(--gray-500); }
.wage-col--bad li::before {
  background-color: rgba(239,68,68,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}
.wage-col--good li { color: var(--gray-800); }
.wage-col--good li::before {
  background-color: rgba(16,185,129,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.wage-vs {
  display: flex; align-items: center; font-family: var(--font-display);
  font-size: 20px; font-weight: 900; color: var(--gray-400); flex-shrink: 0;
}

.wage-definition {
  text-align: center; padding: 32px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--gray-200);
}
.wage-definition p { font-size: 17px; color: var(--gray-600); line-height: 1.8; }
.wage-definition strong { color: var(--gray-900); }

/* ---- GEN Z & MILLENNIALS ---- */
.chapter--genz {
  background: linear-gradient(180deg, #fff 0%, var(--purple-light) 100%);
}

.genz-stats {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.genz-stat {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  text-align: center;
}

.genz-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--purple);
}
.genz-stat-icon svg {
  width: 100%;
  height: 100%;
}

.genz-stat h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.genz-stat p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

.genz-cta {
  text-align: center;
  font-size: 20px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 48px;
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.15);
}
.genz-cta strong {
  color: var(--purple);
}

/* ---- THINK PHOTO ---- */
.think-photo {
  margin-bottom: 32px;
}
.think-photo-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

/* ---- THINK CARD ---- */
.think-card {
  padding: 56px 48px; border-radius: var(--radius);
  background: #fff; border: 2px solid var(--gray-200);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
  text-align: center;
}
.think-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--orange); margin-bottom: 16px;
}
.think-title {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px);
  font-weight: 900; color: var(--gray-900); margin-bottom: 24px; letter-spacing: -0.03em;
}
.think-card p { font-size: 18px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.think-card strong { color: var(--gray-900); }
.think-punch {
  font-size: 20px !important; font-weight: 600;
  color: var(--orange) !important; margin-top: 24px !important;
  line-height: 1.6;
}

/* ---- ABOUT / COMPARE GRID ---- */
.chapter--about {
  background: var(--gray-50);
}

.compare-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.compare-block {
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}
.compare-block:hover { transform: translateY(-4px); }

.compare-rank {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}
.compare-block--red .compare-rank { color: var(--red); }
.compare-block--orange .compare-rank { color: var(--orange); }
.compare-block--pink .compare-rank { color: var(--pink); }
.compare-block--blue .compare-rank { color: var(--blue); }
.compare-block--purple .compare-rank { color: var(--purple); }
.compare-block--green .compare-rank { color: var(--green); }

.compare-block h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.compare-block p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.affordability-callout {
  text-align: center;
  padding: 40px 36px;
  margin-top: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange-light), var(--pink-light));
  border: 1px solid rgba(249,115,22,0.2);
}
.affordability-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(249,115,22,0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.affordability-callout p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
}
.affordability-callout strong {
  color: var(--orange-deep);
}

/* ---- MISSION & VALUES ---- */
.chapter--mission {
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #ec4899 100%);
  color: #fff;
}

.mission-text {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 48px;
}

.values-row {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-4px); }

.value-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: rgba(255,255,255,0.9);
}
.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
}

.value-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.humanity-banner {
  margin-top: 48px;
  text-align: center;
  padding: 40px 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

.humanity-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.humanity-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.humanity-banner strong {
  color: #fff;
}

/* ---- PILLARS ---- */
.pillars {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.pillar {
  padding: 36px 28px; border-radius: var(--radius);
  transition: transform 0.3s;
}
.pillar:hover { transform: translateY(-4px); }
.pillar--blue { background: var(--blue-light); }
.pillar--orange { background: var(--orange-light); }
.pillar--pink { background: var(--pink-light); }
.pillar--green { background: var(--green-light); }

.pillar-num {
  font-family: var(--font-display); font-size: 14px;
  font-weight: 900; opacity: 0.4; margin-bottom: 16px;
}
.pillar h3 {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 900; margin-bottom: 10px; color: var(--gray-900);
}
.pillar p { font-size: 15px; color: var(--gray-500); line-height: 1.6; }

/* ---- PLEDGE BOX ---- */
.pledge-box { text-align: center; max-width: 600px; margin: 0 auto; }
.pledge-logo-mark {
  height: 100px;
  width: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,0.18));
}
.pledge-count {
  font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}
.pledge-title {
  font-family: var(--font-display); font-size: clamp(48px, 10vw, 80px);
  font-weight: 900; line-height: 1; margin-bottom: 24px;
}
.pledge-text {
  font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

/* ---- PLEDGE TRACKER ---- */
.pledge-tracker {
  margin-bottom: 32px;
}

.pledge-tracker-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 72px);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
  margin-bottom: 8px;
}

.pledge-tracker-label {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.pledge-tracker-bar {
  max-width: 400px;
  margin: 0 auto;
  height: 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
}

.pledge-tracker-fill {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.85));
  box-shadow: 0 0 16px rgba(255,255,255,0.4);
  transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.pledge-tracker-goal {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}
.pledge-tracker-goal strong {
  color: rgba(255,255,255,0.9);
}

/* ---- FOUNDER ---- */
.founder {
  display: flex; gap: 32px; align-items: flex-start;
  max-width: var(--narrow); margin: 48px auto 40px; padding: 0 24px;
}
.founder-avatar {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; font-weight: 900; color: #fff;
}
.founder-avatar--image {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.18);
  background: #fff;
}
.founder-content h3 {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 900; margin-bottom: 12px; color: var(--gray-900);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.founder-linkedin {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #0077b5;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.founder-linkedin:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 119, 181, 0.35);
}
.founder-linkedin img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.founder-content p {
  font-size: 16px; color: var(--gray-500); line-height: 1.8; margin-bottom: 12px;
}

/* ---- TEAM ROW ---- */
.team-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  max-width: var(--narrow); margin: 0 auto 40px; padding: 0 24px;
  justify-content: center;
}
.team-chip {
  padding: 12px 20px; border-radius: 100px;
  background: var(--gray-100); font-size: 14px; color: var(--gray-600);
  display: flex; gap: 6px; align-items: baseline;
}
.team-chip strong { color: var(--gray-800); font-weight: 700; }
.team-chip--link {
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.team-chip--link:hover {
  background: var(--blue-light);
  border-color: rgba(59, 130, 246, 0.35);
  color: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.14);
}
.team-chip--link:hover strong {
  color: var(--blue-deep);
}

/* ---- TEAM PROFILE CARDS ---- */
.team-profiles {
  max-width: var(--max-w);
  margin: 48px auto 40px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-profile-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.team-profile-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.12);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}
.team-profile-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.team-profile-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.team-profile-quote {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
}
.team-profile-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.team-profile-social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--gray-500);
  transition: all 0.2s;
}
.team-profile-social a:hover {
  background: #0077b5;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}
.team-profile-social a svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .team-profiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .team-profiles { grid-template-columns: 1fr; }
}

/* ---- PARTNERS ROW ---- */
.partners-row {
  text-align: center; max-width: var(--narrow);
  margin: 0 auto; padding: 0 24px;
}
.partners-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gray-400); margin-bottom: 16px;
}
.partners-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.partners-chips a {
  padding: 10px 20px; border-radius: 100px;
  border: 1px solid var(--gray-200); font-size: 14px;
  font-weight: 600; color: var(--gray-500);
  transition: all 0.2s;
}
.partners-chips a:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ---- CTA PRIMARY ---- */
.cta-primary {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding: 0 24px;
}
.cta-primary-inner {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}
.cta-primary-inner h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-primary-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 24px;
}

/* ---- CTA GRID ---- */
.cta-grid {
  max-width: var(--max-w); margin: 48px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.cta-grid--secondary {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}
.cta-card {
  display: flex; flex-direction: column;
  padding: 40px 32px; border-radius: var(--radius);
  color: #fff; transition: transform 0.3s, box-shadow 0.3s;
}
.cta-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.cta-card--blue { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); }
.cta-card--orange { background: linear-gradient(135deg, var(--orange), var(--orange-deep)); }
.cta-card--green { background: linear-gradient(135deg, var(--green), #059669); }
.cta-card--purple { background: linear-gradient(135deg, var(--purple), #6d28d9); }

.cta-icon { width: 40px; height: 40px; margin-bottom: 20px; opacity: 0.9; }
.cta-icon svg { width: 100%; height: 100%; }
.cta-card h3 {
  font-family: var(--font-display); font-size: 24px;
  font-weight: 900; margin-bottom: 8px;
}
.cta-card p { font-size: 15px; opacity: 0.85; line-height: 1.6; }

/* ---- VOLUNTEER CARD ---- */
.cta-card--volunteer {
  position: relative;
}
.cta-volunteer-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  border-radius: 100px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.cta-volunteer-btn:hover {
  background: rgba(255,255,255,0.35);
}

/* ---- NEWSLETTER ---- */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--purple) 100%);
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.newsletter-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

.newsletter-form {
  width: 100%;
  max-width: 480px;
}

.newsletter-input-row {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 16px;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.2s;
}
.newsletter-input::placeholder {
  color: rgba(255,255,255,0.5);
}
.newsletter-input:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.18);
}
.newsletter-input--error {
  border-color: var(--red) !important;
}

.btn--newsletter {
  padding: 16px 32px;
  background: #fff;
  color: var(--blue-deep);
  font-size: 16px;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn--newsletter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.newsletter-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

.newsletter-success {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  padding: 16px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.newsletter-error {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 12px 14px;
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-sm);
}

/* ---- DONATE WIDGET ---- */
.chapter--donate {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}
.donate-container {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
}
.donate-widget {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.donate-header { text-align: center; margin-bottom: 32px; }
.donate-header-icon {
  width: 40px; height: 40px; color: var(--orange);
  margin: 0 auto 16px;
}
.donate-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 900; color: var(--gray-900);
  letter-spacing: -0.03em; margin-bottom: 8px;
}
.donate-sub {
  font-size: 16px; color: var(--gray-500); line-height: 1.6;
  margin-bottom: 8px;
}
.donate-tax {
  display: inline-block;
  font-size: 12px; font-weight: 600; color: var(--green);
  background: rgba(16,185,129,0.08);
  padding: 4px 14px; border-radius: 100px;
}

.donate-steps-indicator {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 36px;
}
.donate-step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  transition: all 0.3s;
  flex-shrink: 0;
}
.donate-step-dot--active {
  background: var(--orange); color: #fff;
}
.donate-step-dot--done {
  background: var(--green); color: #fff;
}
.donate-step-line {
  height: 2px; width: 48px;
  background: var(--gray-200);
  transition: background 0.3s;
}
.donate-step-line--done {
  background: var(--green);
}

.donate-step {
  display: none;
}
.donate-step--visible {
  display: block;
  animation: donateStepIn 0.35s ease;
}
@keyframes donateStepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: none; }
}

.donate-step-label {
  font-size: 15px; font-weight: 700; color: var(--gray-800);
  margin-bottom: 20px; text-align: center;
}

.donate-amounts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 16px;
}
.donate-amt {
  padding: 16px 8px; border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  background: #fff; color: var(--gray-800);
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  cursor: pointer; transition: all 0.2s;
  text-align: center;
}
.donate-amt:hover {
  border-color: var(--orange); color: var(--orange);
}
.donate-amt--selected {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.donate-custom {
  display: flex; align-items: center;
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 0 16px; margin-bottom: 24px;
  transition: border-color 0.2s;
}
.donate-custom:focus-within {
  border-color: var(--orange);
}
.donate-custom-symbol {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 800; color: var(--gray-400);
}
.donate-custom input {
  flex: 1; border: none; outline: none;
  padding: 14px 8px; font-family: var(--font-display);
  font-size: 20px; font-weight: 800; color: var(--gray-800);
  background: transparent; width: 100%;
}
.donate-custom input::placeholder {
  color: var(--gray-400); font-weight: 600; font-size: 16px;
}

.btn--donate-next {
  width: 100%; padding: 16px;
  background: var(--orange); color: #fff;
  font-size: 17px; font-weight: 700;
  border-radius: 100px; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn--donate-next:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}

.donate-fields {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 24px;
}
.donate-input {
  padding: 14px 16px;
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 16px; font-family: var(--font-body);
  color: var(--gray-800); outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.donate-input:focus { border-color: var(--orange); }
.donate-input::placeholder { color: var(--gray-400); }
.donate-input--error { border-color: var(--red); }

.donate-btn-row {
  display: flex; gap: 12px; margin-top: 4px;
}
.btn--donate-back {
  padding: 16px 28px; border-radius: 100px;
  border: 2px solid var(--gray-200); background: #fff;
  color: var(--gray-500); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.btn--donate-back:hover {
  border-color: var(--gray-400); color: var(--gray-800);
}
.donate-btn-row .btn--donate-next {
  flex: 1;
}

.donate-summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-radius: var(--radius-sm);
  background: var(--orange-light); margin-bottom: 24px;
}
.donate-summary span { font-size: 15px; color: var(--gray-500); }
.donate-summary strong {
  font-family: var(--font-display); font-size: 28px;
  font-weight: 900; color: var(--orange);
}

#paypal-button-container {
  margin-bottom: 16px;
  min-height: 55px;
}

.donate-secure {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; font-size: 13px; color: var(--gray-400);
  margin-bottom: 16px;
}
.donate-secure svg { opacity: 0.6; }

.donate-thanks {
  text-align: center; padding: 20px 0;
}
.donate-thanks-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  animation: donateCheckPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.donate-thanks-check svg { width: 32px; height: 32px; }
@keyframes donateCheckPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.donate-thanks h3 {
  font-family: var(--font-display); font-size: 28px;
  font-weight: 900; color: var(--gray-900);
  margin-bottom: 8px;
}
.donate-thanks p {
  font-size: 16px; color: var(--gray-500); line-height: 1.6;
  margin-bottom: 24px;
}
.donate-thanks strong { color: var(--orange); }
.btn--donate-again {
  padding: 12px 28px; border-radius: 100px;
  border: 2px solid var(--gray-200); background: #fff;
  color: var(--gray-600); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.btn--donate-again:hover {
  border-color: var(--orange); color: var(--orange);
}

/* ---- DONATE FEED ---- */
.donate-paypal-error {
  margin-top: 12px; padding: 12px 14px;
  background: #fef2f2; border: 1px solid #fecaca;
  color: #991b1b; border-radius: var(--radius-sm);
  font-size: 13px; line-height: 1.5; text-align: center;
}
.donate-paypal-error a { color: #991b1b; text-decoration: underline; }

/* Pledge counter bump animation when someone takes the pledge */
@keyframes pledgeBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.15); color: var(--orange); }
  100% { transform: scale(1); }
}
.pledge-bump {
  animation: pledgeBump 0.6s ease;
}

/* ---- QUOTE ---- */
.quote-section { padding: 100px 0; background: var(--gray-50); }
.big-quote {
  text-align: center; font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px); font-weight: 900;
  line-height: 1.4; color: var(--gray-800);
  max-width: 640px; margin: 0 auto; letter-spacing: -0.02em;
}
.big-quote cite {
  display: block; margin-top: 20px;
  font-family: var(--font-body); font-size: 15px;
  font-weight: 600; font-style: normal; color: var(--gray-400);
}

/* ---- FOOTER ---- */
.footer { padding: 60px 24px 32px; background: var(--gray-900); color: var(--gray-400); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 44px; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; }
.footer-meta { font-size: 12px; opacity: 0.5; margin-top: 4px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a, .footer-col span { font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-social-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.78);
  transition: all 0.2s ease;
}
.social-links a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.social-links svg {
  width: 19px;
  height: 19px;
}
.footer-copy { text-align: center; font-size: 12px; opacity: 0.4; margin-top: 32px; max-width: var(--max-w); margin-left: auto; margin-right: auto; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid--secondary { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .values-row { grid-template-columns: repeat(2, 1fr); }
  .genz-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  :root { --nav-h: 74px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; z-index: 105;
    flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a:not(.btn) { font-size: 20px; color: var(--gray-800) !important; padding: 12px 24px; }
  .nav-toggle.open span { background: var(--gray-800) !important; }
  .nav-logo { padding: 6px 10px; border-radius: 12px; }
  .nav-logo-img { height: 52px; }
  .hero-logo-mark { height: 86px; margin-bottom: 16px; }
  .pledge-logo-mark { height: 80px; }

  .photo-break-img { height: 260px; }
  .featured-photo-img { height: 240px; }
  .think-photo-img { height: 260px; }
  .cta-banner-img { height: 220px; }
  .stats-scroll { grid-template-columns: 1fr; }
  .wage-compare { flex-direction: column; }
  .wage-vs { justify-content: center; padding: 8px 0; }
  .pillars { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-grid--secondary { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr; }
  .genz-stats { grid-template-columns: 1fr; }
  .founder { flex-direction: column; align-items: center; text-align: center; }
  .chapter { padding: 72px 0; }
  .think-card { padding: 40px 28px; }
  .donate-widget { padding: 32px 20px; }
  .donate-amounts { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .donate-amt { font-size: 17px; padding: 14px 6px; }
  .donate-step-line { width: 32px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-logo { height: 36px; }
  .newsletter-input-row { flex-direction: column; }
  .cta-primary-inner { padding: 36px 24px; }

  .hero-title span {
    font-size: clamp(26px, 5vw, 36px);
  }
  .hero-title em {
    font-size: clamp(44px, 10vw, 72px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn--pledge-pop,
  .btn--pledge-pop::before {
    animation: none;
  }
}
