/* ============================================================
   FDC Foundation — High-tech / energetic theme
   Deep space base · tri-color neon gradient (purple→magenta→cyan)
   ============================================================ */

:root {
  --bg:        #0a0713;
  --bg-2:      #0f0a1f;
  --bg-3:      #140d28;
  --surface:   rgba(255,255,255,0.045);
  --surface-2: rgba(255,255,255,0.08);
  --line:      rgba(255,255,255,0.10);
  --line-2:    rgba(255,255,255,0.18);

  --text:      #eee9f7;
  --muted:     #a99fc6;
  --muted-2:   #776d92;

  --purple:    #8b4fd6;
  --violet:    #a36fe6;
  --magenta:   #e0409a;
  --cyan:      #34c6e8;
  --gold:      #e6b84e;

  --grad:      linear-gradient(100deg, #8b4fd6 0%, #c94fbe 45%, #34c6e8 100%);
  --grad-2:    linear-gradient(100deg, #a36fe6, #e0409a);
  --grad-soft: linear-gradient(160deg, rgba(139,79,214,0.18), rgba(52,198,232,0.10));

  --maxw: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0,0,0,0.5);
  --glow-purple: 0 0 40px rgba(139,79,214,0.5);
  --glow-cyan: 0 0 40px rgba(52,198,232,0.4);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Ambient page glow */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(50% 40% at 12% 8%, rgba(139,79,214,0.18), transparent 60%),
    radial-gradient(45% 40% at 90% 20%, rgba(52,198,232,0.14), transparent 60%),
    radial-gradient(55% 45% at 70% 95%, rgba(224,64,154,0.12), transparent 60%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0 0 .5em; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(224,64,154,0.4); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.center { text-align: center; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--cyan); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--cyan); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 26px; height: 2px; background: var(--cyan); }
.section-title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: .35em; }
.lede { font-size: 1.16rem; color: var(--muted); max-width: 62ch; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  --b: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; position: relative; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn--grad { background: var(--grad); color: #fff; box-shadow: 0 10px 34px rgba(139,79,214,0.45); }
.btn--grad:hover { box-shadow: 0 16px 46px rgba(224,64,154,0.5); }
.btn--glass { background: var(--surface-2); color: #fff; border-color: var(--line-2); backdrop-filter: blur(8px); }
.btn--glass:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--violet); }
.btn--lg { font-size: 1.08rem; padding: 18px 40px; }
.btn--block { width: 100%; }

/* ---------- Ticker ---------- */
.ticker { background: var(--bg-3); border-bottom: 1px solid var(--line); overflow: hidden; }
.ticker__track { display: flex; gap: 48px; white-space: nowrap; padding: 10px 0; width: max-content; animation: scroll-x 34s linear infinite; }
.ticker__track span { font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 12px; }
.ticker__track span b { color: var(--cyan); }
.ticker__track .star { color: var(--gold); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; transition: background .35s, box-shadow .35s, backdrop-filter .35s; }
.site-header.scrolled { background: rgba(10,7,19,0.82); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); }
.site-header.solid { background: rgba(10,7,19,0.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__crest { width: 40px; height: 40px; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; letter-spacing: 0.02em; line-height: 1; }
.brand__name span { display:block; font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cyan); margin-top: 4px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--muted); font-size: 0.95rem; font-weight: 500; position: relative; padding: 6px 0; transition: color .2s; }
.nav__links a:hover { color: #fff; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background: var(--grad); transition: width .25s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }
.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.aurora { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; z-index: 0; pointer-events: none; }
.aurora--1 { width: 520px; height: 520px; background: radial-gradient(circle, #8b4fd6, transparent 70%); top: -120px; left: -120px; animation: float1 16s ease-in-out infinite; }
.aurora--2 { width: 460px; height: 460px; background: radial-gradient(circle, #34c6e8, transparent 70%); top: 40px; right: -140px; animation: float2 18s ease-in-out infinite; }
.aurora--3 { width: 420px; height: 420px; background: radial-gradient(circle, #e0409a, transparent 70%); bottom: -160px; left: 30%; animation: float1 20s ease-in-out infinite reverse; }
@keyframes float1 { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(40px,30px); } }
@keyframes float2 { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(-40px,40px); } }

.hero .wrap { position: relative; z-index: 2; }
.hero .dancers-wm { width: 96%; left: 2%; bottom: -3%; opacity: 0.045; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line-2); backdrop-filter: blur(8px);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; margin-bottom: 26px;
}
.hero__badge .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(52,198,232,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(52,198,232,0.6);} 70%{ box-shadow: 0 0 0 12px rgba(52,198,232,0);} 100%{ box-shadow: 0 0 0 0 rgba(52,198,232,0);} }
.hero h1 { font-size: clamp(2.8rem, 6.6vw, 5rem); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: .3em; }
.hero__sub { font-size: 1.24rem; color: var(--muted); max-width: 50ch; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.chip { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); font-size: 0.86rem; font-weight: 600; }
.chip svg { color: var(--cyan); }
.chip b { color: #fff; }

/* Hero collage */
.hero__collage { position: relative; height: 540px; }
.hero__collage .tile { position: absolute; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line-2); }
.hero__collage .tile img { width: 100%; height: 100%; object-fit: cover; }
.hero__collage .t1 { width: 55%; height: 66%; top: 0; right: 6%; z-index: 2; animation: bob 7s ease-in-out infinite; }
.hero__collage .t2 { width: 44%; height: 50%; bottom: 4%; left: 0; z-index: 3; animation: bob 8s ease-in-out infinite reverse; }
.hero__collage .t3 { width: 40%; height: 40%; bottom: 12%; right: 0; z-index: 1; animation: bob 9s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.hero__collage .ring { position: absolute; inset: -6% 20% 20% -6%; border-radius: 50%; border: 1.5px dashed rgba(255,255,255,0.14); z-index: 0; animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg);} }
.hero__collage .float-badge {
  position: absolute; z-index: 4; background: rgba(10,7,19,0.8); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; animation: bob 6s ease-in-out infinite;
}
.fb-award { top: 4%; left: -4%; }
.fb-award .num { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.fb-heart { bottom: 30%; right: -6%; }

/* ---------- Photo marquee band ---------- */
.marquee { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.marquee__track { display: flex; gap: 16px; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee__track img { height: 150px; width: 230px; object-fit: cover; border-radius: 12px; filter: grayscale(0.15); transition: filter .3s, transform .3s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img:hover { filter: none; transform: scale(1.04); }

/* ---------- Cards / pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.pillar {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .3s var(--ease), border-color .3s, background .3s; position: relative; overflow: hidden;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--surface-2); }
.pillar__ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: var(--grad-soft); border: 1px solid var(--line); color: var(--cyan); }
.pillar h3 { font-size: 1.25rem; margin-bottom: .4em; }
.pillar p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* ---------- Stats ---------- */
.stats-band { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-band .wrap { position: relative; z-index: 1; }
.stats-band .dancers-wm { width: 108%; left: -4%; bottom: -8%; opacity: 0.045; }
.cta .dancers-wm { width: min(920px, 92%); left: 50%; transform: translateX(-50%); top: 50%; margin-top: -8%; opacity: 0.07; }
.dancer-topper { padding-top: 8px; margin-bottom: 40px; }
.dancer-topper .dancers { width: min(420px, 70%); opacity: 0.85; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 64px 0; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content:""; position:absolute; right:-12px; top:14%; height:72%; width:1px; background: var(--line); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; }
.stat__label { font-size: 0.84rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ---------- Proof / Hall of Fame feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--wl { grid-template-columns: 1.08fr 0.92fr; }
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 6px; }
.mini-badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 0.85rem; font-weight: 600; }
.mini-badge svg { color: var(--gold); }
.hof-card { position: relative; border-radius: var(--radius); padding: 36px; text-align: center; background: var(--grad-soft); border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.hof-card img { width: min(320px, 74%); margin: 0 auto 14px; border-radius: 18px; box-shadow: 0 14px 40px rgba(0,0,0,0.4); }
.hof-card p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* ---------- Gallery mosaic ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 50px; }
.gallery a { position: relative; overflow: hidden; border-radius: 14px; border: 1px solid var(--line); display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery a:hover img { transform: scale(1.08); }
.gallery a::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(10,7,19,0.55)); opacity: 0; transition: opacity .3s; }
.gallery a:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Impact cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .3s var(--ease), border-color .3s; }
.card:hover { transform: translateY(-6px); border-color: var(--violet); }
.card__ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: var(--grad-soft); border: 1px solid var(--line); color: var(--cyan); }
.card h3 { font-size: 1.22rem; margin-bottom: .35em; }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Opportunities ---------- */
.opps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.opp { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: #fff; box-shadow: var(--shadow); isolation: isolate; border: 1px solid var(--line); }
.opp::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(10,7,19,0.1) 0%, rgba(10,7,19,0.35) 48%, rgba(10,7,19,0.94) 100%), var(--opp-img) var(--opp-pos, center)/cover no-repeat; transition: transform .6s var(--ease); }
.opp:hover::after { transform: scale(1.06); }
/* Image URLs live here, not in an inline style: a url() inside a custom property
   resolves against this stylesheet, so an HTML-relative path lands in assets/assets/. */
.opp--founder { --opp-img: url('img/energy-yellow.jpg'); --opp-pos: center 8%; }
.opp--sponsor { --opp-img: url('img/portrait-2.jpg'); --opp-pos: center 5%; }
.opp--program { --opp-img: url('img/energy.jpg'); }
.opp__num { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--cyan); letter-spacing: 0.1em; margin-bottom: 8px; }
.opp h3 { font-size: 1.5rem; margin-bottom: 8px; }
.opp p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0 0 18px; }
.opp .btn { align-self: flex-start; }

/* ---------- Tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease), border-color .3s; }
.tier:hover { transform: translateY(-6px); border-color: var(--line-2); }
.tier--feat { border: 1.5px solid transparent; background:
  linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
  var(--grad) border-box; box-shadow: var(--shadow); }
.tier__flag { position: absolute; top: 20px; right: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--grad-2); padding: 5px 12px; border-radius: 999px; }
.tier__name { font-family: var(--font-display); font-size: 1.4rem; }
.tier__amount { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; margin: 8px 0 2px; }
.tier__amount span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.tier__give { font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; }
.tier__list { display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.tier__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.94rem; }
.tier__list svg { color: var(--cyan); flex: none; margin-top: 3px; }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; text-align: center; border-radius: 0; }
.cta__inner { position: relative; z-index: 2; }
.cta-band { background:
  radial-gradient(60% 120% at 50% 0%, rgba(139,79,214,0.35), transparent 60%),
  radial-gradient(50% 120% at 50% 100%, rgba(52,198,232,0.28), transparent 60%),
  var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: .3em; }
.cta p { font-size: 1.2rem; color: var(--muted); max-width: 56ch; margin: 0 auto 34px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 46px auto 0; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--surface); overflow: hidden; transition: border-color .3s; }
.faq__item.open { border-color: var(--line-2); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text); padding: 22px 54px 22px 24px; position: relative; }
.faq__q::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--cyan); transition: transform .3s; }
.faq__item.open .faq__q::after { content: "\2212"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { color: var(--muted); padding: 0 24px 22px; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-list { display: grid; gap: 20px; margin-top: 26px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line); color: var(--cyan); }
.contact-list h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin: 0 0 3px; }
.contact-list p, .contact-list a { color: var(--muted); margin: 0; font-size: 0.97rem; }
.contact-list a:hover { color: var(--cyan); }
.note-box { display: flex; gap: 12px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 0.9rem; color: var(--muted); }
.note-box svg { color: var(--cyan); flex: none; margin-top: 2px; }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.97rem; color: var(--text); background: rgba(0,0,0,0.25); transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(52,198,232,0.16); }
.field textarea { resize: vertical; min-height: 120px; }
.field select option { background: var(--bg-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 64px 0 30px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand p { font-size: 0.93rem; max-width: 34ch; margin-top: 16px; }
.footer-col h5 { font-family: var(--font-body); font-weight: 700; color: #fff; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.95rem; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.84rem; }
.footer-note { flex-basis: 100%; margin: 0 0 18px; max-width: 960px; font-size: 0.82rem; line-height: 1.65; color: var(--muted-2); }
.footer-note strong { color: var(--muted); }

/* ---------- Donate page ---------- */
.donate-hero { padding: 60px 0 50px; }
.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 8px 0 4px; }
.amount-grid button { padding: 16px 8px; border: 1.5px solid var(--line); background: rgba(0,0,0,0.25); border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--text); cursor: pointer; transition: .2s; }
.amount-grid button:hover { border-color: var(--violet); }
.amount-grid button.active { background: var(--grad); border-color: transparent; color: #fff; }
.freq-toggle { display: inline-flex; background: rgba(0,0,0,0.25); border: 1.5px solid var(--line); border-radius: 999px; padding: 4px; margin-bottom: 22px; }
.freq-toggle button { border: 0; background: none; padding: 9px 22px; border-radius: 999px; font-family: inherit; font-weight: 600; font-size: 0.92rem; color: var(--muted); cursor: pointer; transition: .2s; }
.freq-toggle button.active { background: var(--grad); color: #fff; }
.photo-frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame--wide { aspect-ratio: 3/2; }
.photo-badge { position: absolute; left: 16px; bottom: 16px; background: rgba(10,7,19,0.78); backdrop-filter: blur(6px); border: 1px solid var(--line-2); padding: 9px 15px; border-radius: 999px; font-size: 0.82rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.photo-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.dollar-list { display: grid; gap: 18px; margin-top: 10px; }
.dollar-list li { display: flex; gap: 16px; align-items: flex-start; }
.dollar-list .ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line); color: var(--cyan); }
.dollar-list h4 { margin: 0 0 2px; font-family: var(--font-body); font-weight: 700; font-size: 1rem; }
.dollar-list p { margin: 0; color: var(--muted); font-size: 0.93rem; }

/* ---------- Dancer silhouette motif (from the FDC Hall of Fame emblem) ---------- */
.dancers {
  aspect-ratio: 1400 / 481;
  -webkit-mask: url('img/dancers.png') center/contain no-repeat;
  mask: url('img/dancers.png') center/contain no-repeat;
  background: var(--grad);
}
/* Full-color gradient strip used as a section flourish */
.dancer-strip { display: flex; justify-content: center; }
.dancer-strip .dancers { width: min(720px, 86%); }
/* Elegant section divider: thin gradient rules flanking a small dancer graphic */
.divider { display: flex; align-items: center; gap: 24px; max-width: 540px; margin: 8px auto; padding: 0 24px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); }
.divider .dancers { width: 168px; flex: none; opacity: 0.9; }
.divider-wrap { padding: 4px 0; }

/* Faint recurring watermark that sits behind content */
.dancers-wm {
  position: absolute; pointer-events: none; z-index: 0;
  aspect-ratio: 1400 / 481;
  -webkit-mask: url('img/dancers.png') center/contain no-repeat;
  mask: url('img/dancers.png') center/contain no-repeat;
  background: #fff; opacity: 0.05;
}

/* ---------- Thank-you modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(6,4,12,0.74); backdrop-filter: blur(6px); }
.modal__card {
  position: relative; z-index: 1; max-width: 540px; width: 100%;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 42px 36px 36px; box-shadow: var(--shadow); text-align: center;
  animation: modalIn .45s var(--ease); max-height: calc(100vh - 48px); overflow-y: auto;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(22px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 12px; right: 16px; background: none; border: 0; color: var(--muted); font-size: 1.7rem; line-height: 1; cursor: pointer; transition: color .2s; }
.modal__close:hover { color: #fff; }
.modal__icon { width: 66px; height: 66px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line-2); color: var(--cyan); }
.modal__card h2 { font-size: clamp(1.6rem, 4vw, 2rem); margin-bottom: .4em; }
.modal__card p { color: var(--muted); margin: 0 auto 6px; max-width: 42ch; }
.modal__amount { display: inline-block; margin: 6px 0 2px; padding: 6px 16px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); font-weight: 600; font-size: 0.92rem; }
.modal__amount b { color: var(--cyan); }
.modal__contacts { display: grid; gap: 12px; margin: 24px 0 6px; text-align: left; }
.modal__contact { display: flex; align-items: center; gap: 14px; padding: 13px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .2s, transform .2s; }
.modal__contact:hover { border-color: var(--line-2); transform: translateY(-1px); }
.modal__contact .ic { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line); color: var(--cyan); }
.modal__contact .who { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.modal__contact a, .modal__contact .val { display: block; color: var(--text); font-weight: 600; font-size: 1.02rem; }
.modal__contact a:hover { color: var(--cyan); }
.modal__note { font-size: 0.85rem; color: var(--muted-2); margin-top: 16px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
.reveal[data-delay="4"]{ transition-delay: .32s; }
.reveal[data-delay="5"]{ transition-delay: .40s; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__collage { height: 420px; max-width: 520px; }
  .split, .split--wl, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars, .cards { grid-template-columns: repeat(2, 1fr); }
  .opps, .tiers { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat:nth-child(2)::after { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: block; position: fixed; inset: 74px 0 auto 0; background: rgba(10,7,19,0.97); backdrop-filter: blur(16px); transform: translateY(-120%); transition: transform .35s var(--ease); padding: 20px 24px 30px; z-index: 55; border-bottom: 1px solid var(--line); }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu ul { display: grid; gap: 2px; }
  .mobile-menu a { display: block; color: #fff; padding: 14px 4px; border-bottom: 1px solid var(--line); font-weight: 500; }
  .mobile-menu .btn { margin-top: 18px; width: 100%; }
}
@media (max-width: 680px) {
  .section { padding: 76px 0; }
  .pillars, .cards, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 220px; }
  .g-tall { grid-row: span 1; }
  .g-wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat::after { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions .btn { flex: 1; }
  .hero__collage .float-badge { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
