
/* ═══════════════════════════════════════════════════════════════
   DONATE v23 — bioluminescent · amber/gold accent
   matches Common Planet v32 design system
═══════════════════════════════════════════════════════════════ */

:root {
  --void:      #020509;
  --abyss:     #04101E;
  --ocean:     #071629;
  --deep:      #0A1F38;

  --teal:      #00D4AA;
  --teal-dim:  #00A882;
  --azure:     #00B4FF;
  --azure-dim: #0088CC;
  --jade:      #00FF88;
  --jade-dim:  #00CC6A;
  --violet:    #9B59FE;
  --violet-dim:#7B39DE;
  --magenta:   #E040FB;
  --amber:     #FFB300;
  --amber-dim: #E09500;
  --gold:      #FFD700;
  --gold-dim:  #D4A800;
  --rose:      #FF69B4;
  --crimson:   #FF3366;

  --cream:       rgba(240, 250, 255, 0.97);
  --cream-mid:   rgba(235, 250, 255, 0.98);
  --cream-dim:   rgba(225, 245, 255, 0.82);
  --cream-ghost: rgba(200, 230, 255, 0.12);
  --text-strong: rgba(240, 250, 255, 0.97);
  --text-bright: rgba(235, 250, 255, 0.98);
  --text-body: rgba(235, 250, 255, 0.96);
  --text-meta: rgba(230, 248, 255, 0.90);
  --text-soft: rgba(225, 245, 255, 0.80);
  --text-faint: rgba(210, 238, 255, 0.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 17px; overflow-x: hidden; }

body {
  background: var(--void);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

::selection { background: var(--amber); color: var(--void); }

/* ═══ ANIMATED GRADIENT TEXT ═══ */
.grad-text-warm {
  background: linear-gradient(90deg, var(--amber), var(--gold), var(--rose), var(--amber));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 5s linear infinite;
}
/* cool bioluminescent gradient text */
.grad-text {
  background: linear-gradient(90deg, var(--teal), var(--azure), var(--jade), var(--violet), var(--teal));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 6s linear infinite;
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 60%, rgba(255,179,0,0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 30%, rgba(255,105,180,0.06) 0%, transparent 55%),
              var(--void);
}
.hero-spotlight {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(circle 650px at var(--mx,50%) var(--my,50%),
    rgba(255,179,0,0.10) 0%,
    rgba(255,215,0,0.05) 40%,
    transparent 75%);
  transition: background 0.08s;
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 860px; text-align: center;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.75rem;
  animation: riseIn 0.9s 0.05s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 28px; height: 1px;
  background: rgba(255,179,0,0.4);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  font-weight: 300; font-style: italic;
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
  animation: riseIn 1s 0.1s ease both;
}
.hero-headline em {
  font-style: normal; font-weight: 400;
  background: linear-gradient(90deg, var(--amber), var(--gold), var(--rose));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 5s linear infinite;
}.hero-body {
  font-size: 1.05rem; font-weight: 300; letter-spacing: 0.04em;
  color: var(--cream-mid);
  line-height: 1.85;
  max-width: 660px;
  width: min(660px, 100%);
  margin: 0 auto 2.4rem;
  animation: riseIn 1s 0.2s ease both;
}


.hero-body strong { color: var(--amber); font-weight: 400; }
.hero-actions {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  animation: riseIn 1s 0.3s ease both;
}
.btn-amber {
  background: linear-gradient(135deg, var(--amber-dim), var(--gold-dim));
  color: var(--void);
  border: none; padding: 0.95rem 2.2rem; border-radius: 999px;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: all 0.25s;
  box-shadow: 0 0 30px rgba(255,179,0,0.35);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255,179,0,0.55);
}
.btn-outline {
  background: transparent; color: var(--cream-mid);
  border: 1px solid rgba(255,179,0,0.28);
  padding: 0.95rem 2.2rem; border-radius: 999px;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: rgba(255,179,0,0.7);
  color: var(--amber);
  transform: translateY(-2px);
}

.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  opacity: 0.3; animation: riseIn 1.2s 1.2s ease both;
  margin-top: 2.5rem;
}
.scroll-cue span { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; }
.scroll-caret { color: var(--amber); animation: bob 2.2s ease-in-out infinite; font-size: 0.9rem; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
@keyframes riseIn { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ═══ WAVE DIVIDERS ═══ */
.wave-divider {
  position: relative; width: 100%; overflow: visible;
  pointer-events: none; z-index: 10;
  height: 16px; margin-top: -1px; margin-bottom: -1px;
  background: transparent;
}
.wave-divider svg { display: block; width: 100%; height: 100%; overflow: visible;
  filter: drop-shadow(0 0 5px rgba(255,179,0,0.55)) drop-shadow(0 0 12px rgba(255,105,180,0.35)); }
.wave-path   { animation: waveFlow  8s ease-in-out infinite alternate; }
.wave-path-2 { animation: waveFlow2 10s ease-in-out infinite alternate; }
.wave-path-3 { animation: waveFlow3 12s ease-in-out infinite alternate; }
@keyframes waveFlow  { 0%{d:path("M0,8 C120,0 240,16 360,8 C480,0 600,16 720,8 C840,0 960,16 1080,8 C1200,0 1320,16 1440,8")} 100%{d:path("M0,8 C120,16 240,0 360,8 C480,16 600,0 720,8 C840,16 960,0 1080,8 C1200,16 1320,0 1440,8")} }
@keyframes waveFlow2 { 0%{d:path("M0,10 C160,2 320,18 480,10 C640,2 800,18 960,10 C1100,2 1280,18 1440,10")} 100%{d:path("M0,6 C160,14 320,0 480,8 C640,16 800,2 960,9 C1100,17 1280,3 1440,7")} }
@keyframes waveFlow3 { 0%{d:path("M0,12 C200,4 400,16 600,6 C800,0 1000,14 1200,8 C1320,4 1400,14 1440,10")} 100%{d:path("M0,5 C200,15 400,3 600,13 C800,18 1000,4 1200,11 C1320,15 1400,5 1440,9")} }
@keyframes waveColorShift {
  0%{stop-color:#FFB300} 25%{stop-color:#FFD700} 50%{stop-color:#FF69B4} 75%{stop-color:#E040FB} 100%{stop-color:#FFB300}
}
.wave-color-warm  { animation: waveColorShift 5s linear infinite; }
.wave-color-warm2 { animation: waveColorShift 7s 2s linear infinite; }

/* ═══ LAYOUT ═══ */
section { padding: 3.5rem 2rem; position: relative; overflow-x: clip; }
*, nav, section, footer, .wave-divider, .hero { max-width: 100%; }
.container      { max-width: 960px;  margin: 0 auto; position: relative; }
.container-wide { max-width: 1160px; margin: 0 auto; position: relative; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: 0.75rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.5; }
.eyebrow.amber  { color: var(--amber); }
.eyebrow.gold   { color: var(--gold); }
.eyebrow.teal   { color: var(--teal); }
.eyebrow.azure  { color: var(--azure); }
.eyebrow.violet { color: var(--violet); }

.section-h {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300; font-style: italic;
  line-height: 1.1; margin-bottom: 1.25rem;
  letter-spacing: -0.01em; color: var(--cream);
}
.section-h em { font-style: normal; font-weight: 400; }
.section-p {
  font-size: 1rem; letter-spacing: 0.04em;
  color: var(--cream-mid); line-height: 1.85; font-weight: 300;
}/* Standard section subtext widths. Width belongs on the intro paragraph class. */
.section-subtext-narrow {
  max-width: 600px;
  width: min(600px, 100%);
  margin-left: auto;
  margin-right: auto;
}.section-subtext-wide {
  max-width: 660px;
  width: min(660px, 100%);
  margin-left: auto;
  margin-right: auto;
}




/* reveal */
.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal,
  .js-ready .reveal.visible { opacity: 1; transform: none; transition: none; }
}

/* ═══ PATRON POOL ═══ */
.patron-section {
  background: radial-gradient(ellipse at 20% 30%, rgba(255,179,0,0.10) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 75%, rgba(255,215,0,0.07) 0%, transparent 55%),
              var(--abyss);
  padding: 4rem 2rem 4.5rem;
}
.patron-head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.patron-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: 24px; overflow: hidden;
  border: 1px solid transparent;
  position: relative;
}
.patron-split::before {
  content: '';
  position: absolute; inset: -1px; border-radius: 25px;
  background: linear-gradient(120deg, var(--amber), var(--gold), var(--rose), var(--magenta), var(--amber));
  background-size: 300% 300%;
  animation: gradShift 6s linear infinite;
  z-index: -1;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1px;
}
.patron-left {
  background: rgba(10, 20, 35, 0.97);
  padding: 3.25rem 3rem;
}
.patron-right {
  background: rgba(18, 12, 5, 0.97);
  padding: 3.25rem 3rem;
  border-left: 1px solid rgba(255,179,0,0.1);
}
.p-eye {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.patron-left  .p-eye { color: var(--amber); }
.patron-right .p-eye { color: var(--gold); }
.patron-left h3, .patron-right h3 {
  font-family: var(--serif);
  font-size: 1.8rem; font-weight: 300; font-style: italic;
  color: var(--cream); margin-bottom: 1rem; line-height: 1.15;
}
.patron-left p { font-size: 0.92rem; color: rgba(225,245,255,0.88); line-height: 1.82; margin-bottom: 1rem; }
.patron-right p { font-size: 0.92rem; color: rgba(225,245,255,0.88); line-height: 1.82; margin-bottom: 1rem; }
.patron-left p strong  { color: var(--amber); font-weight: 400; }
.patron-right p strong { color: var(--gold);  font-weight: 400; }

.patron-limit {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255,179,0,0.06);
  border: 1px solid rgba(255,179,0,0.2);
  border-radius: 12px;
  font-size: 0.86rem; color: rgba(225,245,255,0.88); line-height: 1.65;
}
.patron-limit strong { color: var(--amber); font-weight: 400; }

.patron-tiers { margin-top: 1.25rem; }
.tier {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255,215,0,0.08);
  font-size: 0.9rem;
}
.tier:last-child { border-bottom: 1px solid rgba(255,215,0,0.08); }
.tier-range { color: rgba(225,245,255,0.82); font-size: 0.88rem; }
.tier-badge {
  font-size: 0.7rem; font-weight: 600; padding: 3px 11px;
  border-radius: 999px;
  background: rgba(255,179,0,0.08);
  color: var(--amber);
  border: 1px solid rgba(255,179,0,0.25);
}

/* ═══ GIVE SECTION ═══ */
.give-section {
  background: var(--ocean);
  padding: 4rem 2rem;
}
.give-intro {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: start; margin-bottom: 3rem;
}
.give-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.give-card {
  border-radius: 20px;
  padding: 1.65rem 2.05rem 2.35rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 100%;
  text-decoration: none; color: inherit;
  transition: transform 0.28s, box-shadow 0.28s;
  background: rgba(7, 18, 34, 0.95);
  border: 1px solid rgba(255,179,0,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.give-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6), 0 0 40px rgba(255,179,0,0.12); }
.give-card.featured {
  background: linear-gradient(145deg, rgba(255,179,0,0.1), rgba(255,215,0,0.06), rgba(7,18,34,0.96));
  border-color: rgba(255,179,0,0.35);
}
.give-card-header {
  display: flex; align-items: center; gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.give-n {
  font-family: var(--serif);
  font-size: 2.4rem; font-weight: 700; font-style: normal;
  color: rgba(255,179,0,0.72); line-height: 1;
  flex-shrink: 0;
}
.give-card.featured .give-n {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(255,215,0,0.45);
}
.give-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 700; font-style: normal;
  color: var(--amber); margin-bottom: 0; line-height: 1.25;
}
.give-card p { font-size: 0.94rem; color: rgba(225,245,255,0.9); line-height: 1.74; margin-bottom: 1.5rem; flex: 1; }
.give-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.05rem; border-radius: 999px;
  border: 1px solid rgba(255,179,0,0.35); color: var(--amber);
  transition: all 0.18s;
  margin-top: auto; align-self: flex-start;
}
.give-card:hover .give-pill { border-color: rgba(255,179,0,0.85); color: var(--cream); background: rgba(255,179,0,0.12); }
.give-card.featured .give-pill { border-color: var(--amber); color: var(--amber); }

/* ═══ WHAT IT FUNDS ═══ */
/* ═══ ZEFFY LIVE CAMPAIGN ═══ */
.zeffy-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(0,212,170,0.07) 0%, transparent 60%),
              var(--void);
  padding: 4.5rem 2rem;
  position: relative;
}
.zeffy-head {
  max-width: 700px; margin: 0 auto 2.5rem; text-align: center;
}
.zeffy-head .eyebrow { margin-bottom: 0.6rem; }
.zeffy-head h2 { margin-bottom: 0.6rem; }
.zeffy-head p { font-size: 0.9rem; color: rgba(220,245,255,0.75); line-height: 1.75; }
.zeffy-frame-wrap {
  max-width: 900px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(0,212,170,0.18);
  box-shadow: 0 0 60px -20px rgba(0,212,170,0.2),
              0 40px 80px -30px rgba(0,0,0,0.6);
  position: relative;
}
.zeffy-frame-wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,212,170,0.04), rgba(0,180,255,0.04));
  pointer-events: none;
}
.zeffy-frame-wrap iframe {
  display: block; position: relative; z-index: 1;
  border: none; border-radius: 20px;
}

.funds-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(155,89,254,0.08) 0%, transparent 55%),
              var(--abyss);
  padding: 4rem 2rem;
}
.funds-head { max-width: 760px; margin: 0 auto 2.4rem; text-align: center; }
.funds-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 3rem;
}
.fund-card {
  border-radius: 20px;
  padding: 2rem 1.75rem;
  background: rgba(7, 18, 34, 0.95);
  border: 1px solid rgba(155,89,254,0.15);
  transition: transform 0.28s, box-shadow 0.28s;
}
.fund-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px -16px rgba(0,0,0,0.5), 0 0 34px rgba(155,89,254,0.08); }
.fund-card-header {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 0.9rem;
}
.fund-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(145deg, rgba(155,89,254,0.14), rgba(0,180,255,0.08));
  border: 1px solid rgba(155,89,254,0.24);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 18px rgba(155,89,254,0.08), 0 0 22px rgba(155,89,254,0.06);
  flex-shrink: 0;
}
.fund-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.fund-card h4 {
  font-family: var(--serif);
  font-size: 1.18rem; font-weight: 700; font-style: normal;
  color: var(--violet); margin-bottom: 0; line-height: 1.2;
  letter-spacing: 0.01em;
}
.fund-card p { font-size: 0.9rem; color: rgba(230,245,255,0.9); line-height: 1.72; }
.fund-card p em { color: #c7a7ff; font-style: italic; }

/* ═══ LETTER FROM FOUNDERS ═══ */
.letter-section {
  background: radial-gradient(ellipse at 60% 50%, rgba(0,212,170,0.06) 0%, transparent 55%),
              var(--ocean);
  padding: 4rem 2rem;
}
.letter-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.letter-card {
  margin-top: 2rem;
  text-align: left;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(60,40,15,0.08) 100%),
    linear-gradient(180deg, #ede0c0 0%, #e5d5a8 60%, #ddc99a 100%);
  border: 1px solid rgba(80,55,25,0.26);
  border-radius: 6px;
  padding: 2.65rem 2.7rem 2.4rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 2px 0 rgba(60,40,15,0.12),
    0 16px 30px -10px rgba(0,0,0,0.55),
    0 30px 50px -25px rgba(0,0,0,0.40);
}
.letter-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 12%, transparent 86%, rgba(90,60,20,0.08) 100%);
  pointer-events: none;
}
.letter-card::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  mix-blend-mode: multiply;
}
.letter-card p {
  position: relative;
  z-index: 1;
  font-size: 0.99rem;
  color: rgba(15,8,2,0.97);
  line-height: 1.72;
  margin-bottom: 1.15rem;
  font-weight: 400;
}
.letter-card p:last-child { margin-bottom: 0; }
.letter-card strong { color: #130e06; font-weight: 700; }
.letter-list {
  position: relative;
  z-index: 1;
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(107,58,20,0.35);
}
.letter-list li {
  font-size: 0.94rem;
  color: rgba(28,18,8,0.92);
  padding: 0.35rem 0;
  line-height: 1.58;
}
.letter-sig {
  position: relative;
  z-index: 1;
  margin-top: 1.9rem; padding-top: 1.35rem;
  border-top: 1px solid rgba(80,55,25,0.20);
}
.sig-name {
  font-family: var(--serif);
  font-size: 1.75rem; font-weight: 600; font-style: italic;
  color: #130e06; margin-bottom: 0.12rem;
}
.sig-role {
  font-size: 0.58rem;
  color: var(--teal);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ═══ QUOTE ═══ */
.quote-section {
  background: radial-gradient(ellipse at 50% 50%, rgba(255,179,0,0.06) 0%, transparent 65%),
              var(--abyss);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}
.qtext {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 300; font-style: italic;
  color: var(--cream-mid); line-height: 1.75;
  max-width: 700px; margin: 0 auto 1.5rem;
  position: relative;
}
.quote-mark {
  color: var(--teal);
  opacity: 1;
  font-size: 1.36em;
  line-height: 0;
  text-shadow: 0 0 12px rgba(0,212,170,0.85), 0 0 28px rgba(0,212,170,0.45);
}
.qattr {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,179,0,0.35);
}
.qattr em { font-style: normal; color: rgba(255,179,0,0.5); }
.qattr-bright { color: rgba(240,250,255,0.88); }
.qattr-bright em {
  color: rgba(0,212,170,0.98);
  font-style: italic;
  text-shadow: 0 0 10px rgba(0,212,170,0.35);
}

/* ═══ DISCLAIMER ═══ */
.disclaimer-section { background: var(--void); padding: 3rem 2rem; }
.disclaimer-box {
  max-width: 760px; margin: 0 auto;
  padding: 1.25rem 1.75rem;
  background: rgba(255,179,0,0.03);
  border: 1px solid rgba(255,179,0,0.08);
  border-radius: 12px;
  font-size: 0.91rem; color: rgba(240,250,255,0.95); opacity: 1;
  line-height: 1.72;
  text-align: center;
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--void);
  padding: 5rem 3rem 2.5rem;
  position: relative;
  border-top: 1px solid rgba(0,212,170,0.1);
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--violet), var(--azure), transparent);
  opacity: 0.35;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr;
  gap: 4rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(200,230,255,0.06);
  margin-bottom: 1.5rem;
}
.f-brand h3 {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 300; font-style: italic;
  color: var(--cream); margin-bottom: 0.7rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.f-brand h3 em { font-style: normal; color: var(--teal); font-weight: 400; }
.f-brand p {
  font-size: 0.87rem; letter-spacing: 0.04em;
  color: var(--text-body); line-height: 1.78;
  max-width: 440px; margin-bottom: 1.25rem;
}
.address {
  font-size: 0.77rem; letter-spacing: 0.06em;
  color: rgba(220,245,255,0.75); line-height: 1.75;
}
.f-col h4 {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
}
.f-col a {
  display: block; font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--text-body); text-decoration: none;
  margin-bottom: 0.55rem; transition: color 0.15s;
}
.f-col a:hover { color: var(--teal); }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  padding-top: 0.5rem;
  align-items: start;
}
.f-legal, .f-disc {
  font-size: 0.74rem; letter-spacing: 0.04em;
  color: var(--text-soft); line-height: 1.7;
  max-width: 100%;
}
.f-disc { text-align: left; }
@media (max-width: 700px) {
  .footer-bottom { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 860px) {
.patron-split { grid-template-columns: 1fr; }
  .patron-right { border-left: none; border-top: 1px solid rgba(255,179,0,0.1); }
  .give-intro { grid-template-columns: 1fr; gap: 2rem; }
  .give-grid { grid-template-columns: 1fr; }
  .funds-grid { grid-template-columns: 1fr 1fr; }
  .letter-card { padding: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .f-disc { text-align: left; }
}
@media (max-width: 600px) {
  section { padding: 3rem 1.25rem; }
  .give-card-header { align-items: flex-start; }
  .give-n { font-size: 2.1rem; }
  .funds-grid { grid-template-columns: 1fr; }
  .fund-card-header { align-items: flex-start; }
  .fund-icon { width: 44px; height: 44px; }
}

/* ═══ FIXED NAV / REVEAL FLICKER PATCH ═══
   Prevents scroll-reveal text from flashing behind the fixed blurred nav
   and isolates looping decorative animations onto their own paint layers. */
nav {
  transform: translateZ(0);
  will-change: transform;
  isolation: isolate;
  contain: paint;
  backface-visibility: hidden;
}
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: inherit;
  pointer-events: none;
}
.reveal {
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.reveal.visible {
  will-change: auto;
}
.grad-text,
.grad-text-warm,
.grad-text-jade,
.grad-text-azure,
.hero-headline em,
.hl-accent,
.wave-divider,
.wave-divider svg,
.wave-path,
.wave-path-2,
.wave-path-3,
.wave-color-mid,
.wave-color-mid2,
.wave-color-warm,
.wave-color-warm2,
.hero-spotlight,
.game-a::before,
.game-b::before,
.story-panel::before,
.phase-step.active .phase-dot,
.phase-step.active .phase-dot::after {
  transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .grad-text,
  .grad-text-warm,
  .grad-text-jade,
  .grad-text-azure,
  .hero-headline em,
  .hl-accent,
  .wave-path,
  .wave-path-2,
  .wave-path-3,
  .wave-color-mid,
  .wave-color-mid2,
  .wave-color-warm,
  .wave-color-warm2,
    .phase-step.active .phase-dot,
  .phase-step.active .phase-dot::after {
    animation: none !important;
  }
}



.hero {
  isolation: isolate;
}

.hero-content {
  z-index: 4;
}

@keyframes partners-ff-1 { 0%{transform:translate(0,0) scale(1);} 25%{transform:translate(8vw,-12vh) scale(1.1);} 50%{transform:translate(20vw,-28vh) scale(0.9);} 75%{transform:translate(35vw,-18vh) scale(1.05);} 100%{transform:translate(50vw,-38vh) scale(1);} }
@keyframes partners-ff-2 { 0%{transform:translate(0,0) scale(1);} 25%{transform:translate(-10vw,14vh) scale(1.15);} 50%{transform:translate(-22vw,8vh) scale(0.85);} 75%{transform:translate(-32vw,22vh) scale(1.05);} 100%{transform:translate(-44vw,36vh) scale(1);} }
@keyframes partners-ff-3 { 0%{transform:translate(0,0) scale(1);} 25%{transform:translate(12vw,-10vh) scale(1.05);} 50%{transform:translate(-8vw,-22vh) scale(1.1);} 75%{transform:translate(18vw,-35vh) scale(0.95);} 100%{transform:translate(-12vw,-52vh) scale(1);} }
@keyframes partners-ff-4 { 0%{transform:translate(0,0) scale(1);} 20%{transform:translate(-15vw,-8vh) scale(1.08);} 45%{transform:translate(6vw,-30vh) scale(0.92);} 70%{transform:translate(-28vw,-16vh) scale(1.12);} 100%{transform:translate(10vw,-44vh) scale(1);} }
@keyframes partners-ff-5 { 0%{transform:translate(0,0) scale(1);} 30%{transform:translate(22vw,10vh) scale(0.9);} 55%{transform:translate(38vw,-5vh) scale(1.06);} 80%{transform:translate(18vw,20vh) scale(0.95);} 100%{transform:translate(42vw,8vh) scale(1);} }
@keyframes partners-ff-6 { 0%{transform:translate(0,0) scale(1);} 20%{transform:translate(-6vw,-18vh) scale(1.12);} 40%{transform:translate(14vw,-32vh) scale(0.88);} 70%{transform:translate(-4vw,-46vh) scale(1.08);} 100%{transform:translate(20vw,-58vh) scale(1);} }
@keyframes partners-ff-7 { 0%{transform:translate(0,0) scale(1);} 25%{transform:translate(16vw,8vh) scale(0.93);} 50%{transform:translate(-5vw,22vh) scale(1.07);} 75%{transform:translate(28vw,14vh) scale(0.96);} 100%{transform:translate(10vw,38vh) scale(1);} }
@keyframes partners-ff-8 { 0%{transform:translate(0,0) scale(1);} 30%{transform:translate(-20vw,6vh) scale(1.1);} 60%{transform:translate(-38vw,-10vh) scale(0.9);} 80%{transform:translate(-22vw,-28vh) scale(1.04);} 100%{transform:translate(-45vw,-18vh) scale(1);} }
@keyframes partners-ff-9 { 0%{transform:translate(0,0) scale(1);} 20%{transform:translate(5vw,-20vh) scale(1.06);} 50%{transform:translate(25vw,-8vh) scale(0.87);} 75%{transform:translate(40vw,-26vh) scale(1.1);} 100%{transform:translate(55vw,-14vh) scale(1);} }
@keyframes partners-ff-10 { 0%{transform:translate(0,0) scale(1);} 25%{transform:translate(-12vw,-14vh) scale(0.94);} 50%{transform:translate(4vw,-36vh) scale(1.09);} 75%{transform:translate(-18vw,-22vh) scale(0.91);} 100%{transform:translate(8vw,-48vh) scale(1);} }
@keyframes partners-ff-11 { 0%{transform:translate(0,0) scale(1);} 30%{transform:translate(30vw,5vh) scale(1.05);} 55%{transform:translate(18vw,-15vh) scale(0.92);} 80%{transform:translate(36vw,-30vh) scale(1.08);} 100%{transform:translate(22vw,-42vh) scale(1);} }
@keyframes partners-ff-12 { 0%{transform:translate(0,0) scale(1);} 20%{transform:translate(-8vw,16vh) scale(1.13);} 45%{transform:translate(-26vw,28vh) scale(0.88);} 70%{transform:translate(-14vw,40vh) scale(1.06);} 100%{transform:translate(-32vw,24vh) scale(1);} }
@keyframes partners-ff-13 { 0%{transform:translate(0,0) scale(1);} 25%{transform:translate(10vw,-24vh) scale(0.95);} 50%{transform:translate(-4vw,-40vh) scale(1.12);} 75%{transform:translate(16vw,-54vh) scale(0.9);} 100%{transform:translate(-8vw,-62vh) scale(1);} }
@keyframes partners-ff-14 { 0%{transform:translate(0,0) scale(1);} 30%{transform:translate(-18vw,-4vh) scale(1.07);} 55%{transform:translate(2vw,-18vh) scale(0.93);} 80%{transform:translate(-24vw,-32vh) scale(1.04);} 100%{transform:translate(6vw,-50vh) scale(1);} }
@keyframes partners-ff-15 { 0%{transform:translate(0,0) scale(1);} 20%{transform:translate(24vw,12vh) scale(0.89);} 45%{transform:translate(42vw,0vh) scale(1.08);} 70%{transform:translate(28vw,20vh) scale(0.94);} 100%{transform:translate(46vw,8vh) scale(1);} }
@keyframes partners-ff-blink-a { 0%,100%{opacity:0.10;} 20%{opacity:0.92;} 40%{opacity:0.30;} 60%{opacity:0.88;} 80%{opacity:0.48;} }
@keyframes partners-ff-blink-b { 0%,100%{opacity:0.08;} 15%{opacity:0.78;} 35%{opacity:0.22;} 58%{opacity:0.95;} 78%{opacity:0.38;} }
@keyframes partners-ff-blink-c { 0%,100%{opacity:0.12;} 25%{opacity:0.85;} 45%{opacity:0.40;} 65%{opacity:0.72;} 85%{opacity:0.18;} }

.partners-firefly-field {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.partners-firefly {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.2px);
}

.partners-firefly.pf-medium {
  width: 7.5px;
  height: 7.5px;
}

.partners-firefly.pf-large {
  width: 9px;
  height: 9px;
}

.pf-gold { background: radial-gradient(circle, rgba(255,215,0,0.95) 0%, rgba(255,215,0,0) 70%); box-shadow: 0 0 10px rgba(255,215,0,0.6), 0 0 20px rgba(255,215,0,0.3); }
.pf-jade { background: radial-gradient(circle, rgba(0,255,136,0.95) 0%, rgba(0,255,136,0) 70%); box-shadow: 0 0 10px rgba(0,255,136,0.5), 0 0 20px rgba(0,255,136,0.25); }
.pf-azure { background: radial-gradient(circle, rgba(0,180,255,0.95) 0%, rgba(0,180,255,0) 70%); box-shadow: 0 0 10px rgba(0,180,255,0.5), 0 0 20px rgba(0,180,255,0.25); }
.pf-violet { background: radial-gradient(circle, rgba(155,89,254,0.95) 0%, rgba(155,89,254,0) 70%); box-shadow: 0 0 10px rgba(155,89,254,0.55), 0 0 20px rgba(155,89,254,0.28); }
.pf-teal { background: radial-gradient(circle, rgba(0,212,170,0.95) 0%, rgba(0,212,170,0) 70%); box-shadow: 0 0 10px rgba(0,212,170,0.55), 0 0 20px rgba(0,212,170,0.28); }
.pf-magenta { background: radial-gradient(circle, rgba(224,64,251,0.95) 0%, rgba(224,64,251,0) 70%); box-shadow: 0 0 10px rgba(224,64,251,0.5), 0 0 20px rgba(224,64,251,0.25); }
.pf-amber { background: radial-gradient(circle, rgba(255,179,0,0.95) 0%, rgba(255,179,0,0) 70%); box-shadow: 0 0 10px rgba(255,179,0,0.55), 0 0 20px rgba(255,179,0,0.28); }
.pf-rose { background: radial-gradient(circle, rgba(255,105,180,0.95) 0%, rgba(255,105,180,0) 70%); box-shadow: 0 0 10px rgba(255,105,180,0.5), 0 0 20px rgba(255,105,180,0.25); }

.pf-1 { left:15%; top:60%; animation: partners-ff-1 57s ease-in-out infinite, partners-ff-blink-a 7.5s ease-in-out infinite; }
.pf-2 { left:75%; top:25%; animation: partners-ff-2 69s ease-in-out infinite, partners-ff-blink-b 9.0s ease-in-out infinite; animation-delay:-12s,-2s; }
.pf-3 { left:50%; top:80%; animation: partners-ff-3 78s ease-in-out infinite, partners-ff-blink-c 10.5s ease-in-out infinite; animation-delay:-28s,-4s; }
.pf-4 { left:30%; top:35%; animation: partners-ff-4 66s ease-in-out infinite, partners-ff-blink-a 8.25s ease-in-out infinite; animation-delay:-7s,-1s; }
.pf-5 { left:62%; top:55%; animation: partners-ff-5 87s ease-in-out infinite, partners-ff-blink-b 12.0s ease-in-out infinite; animation-delay:-34s,-3s; }
.pf-6 { left:88%; top:72%; animation: partners-ff-6 61.5s ease-in-out infinite, partners-ff-blink-c 7.2s ease-in-out infinite; animation-delay:-5s,-1.5s; }
.pf-7 { left:8%; top:18%; animation: partners-ff-7 73.5s ease-in-out infinite, partners-ff-blink-a 9.75s ease-in-out infinite; animation-delay:-19s,-3.5s; }
.pf-8 { left:44%; top:42%; animation: partners-ff-8 54s ease-in-out infinite, partners-ff-blink-b 7.8s ease-in-out infinite; animation-delay:-9s,-0.8s; }
.pf-9 { left:22%; top:88%; animation: partners-ff-9 82.5s ease-in-out infinite, partners-ff-blink-c 11.7s ease-in-out infinite; animation-delay:-40s,-2.2s; }
.pf-10 { left:68%; top:10%; animation: partners-ff-10 64.5s ease-in-out infinite, partners-ff-blink-a 8.7s ease-in-out infinite; animation-delay:-15s,-4.5s; }
.pf-11 { left:5%; top:50%; animation: partners-ff-11 91.5s ease-in-out infinite, partners-ff-blink-b 13.5s ease-in-out infinite; animation-delay:-48s,-1.2s; }
.pf-12 { left:82%; top:45%; animation: partners-ff-12 58.5s ease-in-out infinite, partners-ff-blink-c 8.4s ease-in-out infinite; animation-delay:-22s,-3.8s; }
.pf-13 { left:38%; top:15%; animation: partners-ff-13 70.5s ease-in-out infinite, partners-ff-blink-a 9.3s ease-in-out infinite; animation-delay:-31s,-0.5s; }
.pf-14 { left:56%; top:68%; animation: partners-ff-14 79.5s ease-in-out infinite, partners-ff-blink-b 11.1s ease-in-out infinite; animation-delay:-17s,-2.8s; }
.pf-15 { left:92%; top:32%; animation: partners-ff-15 52.5s ease-in-out infinite, partners-ff-blink-c 6.75s ease-in-out infinite; animation-delay:-3s,-1.8s; }


.founder-signature-names {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.35;
}

.donation-alignment-notice {
  width: min(860px, calc(100% - 2rem));
  margin: 2.65rem auto 3rem;
  padding: clamp(1.05rem, 2.5vw, 1.55rem) clamp(1.1rem, 3vw, 2rem);
  border-radius: 22px;
  background: rgba(0, 255, 136, 0.055);
  border: 1px solid rgba(0, 255, 136, 0.62);
  box-shadow: 0 0 34px rgba(0, 255, 136, 0.11), inset 0 0 28px rgba(0, 255, 136, 0.035);
}

.donation-alignment-notice p {
  margin: 0;
  color: rgba(235, 250, 255, 0.9);
  font-size: clamp(0.92rem, 1.8vw, 1.12rem);
  line-height: 1.68;
  letter-spacing: var(--track-body, 0.04em);
  text-align: center;
}

@media (max-width: 760px) {
  .founder-signature-names {
    white-space: normal;
    font-size: clamp(0.92rem, 3.4vw, 1.05rem);
  }

  .donation-alignment-notice {
    width: min(100% - 1.5rem, 860px);
    margin: 2.15rem auto 2.55rem;
    border-radius: 18px;
  }

  .donation-alignment-notice p {
    font-size: clamp(0.84rem, 3.1vw, 0.98rem);
    line-height: 1.58;
    letter-spacing: 0.035em;
  }
}


.funds-section .fund-icon svg {
  width: 30px;
  height: 30px;
}

/* BEGIN DONATE HERO BODY AND DISCLAIMER SIZE */
.donate-hero-body-roomier {
  max-width: 44.5rem !important;
  line-height: 1.72 !important;
}

.donate-disclaimer-smaller {
  font-size: 0.84rem !important;
  line-height: 1.6 !important;
}
/* END DONATE HERO BODY AND DISCLAIMER SIZE */

/* CP donate live campaign subtext normalization */
.zeffy-head .section-p.section-subtext-narrow {
  max-width: 600px;
  width: min(600px, 100%);
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.85;
  color: var(--cream-mid);
  font-weight: 300;
}
/* end CP donate live campaign subtext normalization */


/* CP donate ways-to-give rhythm */
.give-intro {
  gap: clamp(1rem, 1.8vw, 1.45rem) !important;
  row-gap: clamp(1rem, 1.8vw, 1.45rem) !important;
  align-items: start !important;
}

.give-intro .section-h {
  margin-bottom: 0 !important;
}

.give-intro .section-p {
  margin-top: 0 !important;
}

.give-intro > div:last-child {
  padding-top: 0 !important;
  align-self: start !important;
}

@media (max-width: 1100px) {
  .give-intro {
    grid-template-columns: 1fr !important;
    gap: 1.15rem !important;
    row-gap: 1.15rem !important;
  }

  .give-intro .section-p {
    max-width: 640px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

@media (max-width: 760px) {
  .give-intro {
    gap: 0.95rem !important;
    row-gap: 0.95rem !important;
  }
}
/* end CP donate ways-to-give rhythm */

