/* ════════════════════════════════════════════════════
   UDAAN FOUNDATION — STYLES
   Palette: Pink-dominant gradient (#ED1E79 → #662D8C) on warm white
   Layout: Editorial / Authority hybrid (NGO trust + emotional impact)
   ════════════════════════════════════════════════════ */

:root {
  /* LIGHT (default) */
  --bg:        #fdfbfc;
  --bg2:       #f7f0f5;
  --bg3:       #2a0d20;
  --text:      #1a0612;
  --text2:     rgba(26,6,18,.62);
  --text3:     rgba(26,6,18,.42);
  --line:      rgba(26,6,18,.10);
  --line2:     rgba(26,6,18,.05);
  --surface:   #ffffff;
  --surface2:  #fbf3f7;
  --accent:    #ED1E79;
  --accent-rgb:237,30,121;
  --accent2:   #662D8C;
  --accent2-rgb:102,45,140;
  --gold:      #ED1E79;
  --grad:      linear-gradient(135deg, #ED1E79 0%, #662D8C 100%);
  --grad-soft: linear-gradient(135deg, rgba(237,30,121,.08), rgba(102,45,140,.05));

  --display: 'Playfair Display', serif;
  --body:    'Lora', Georgia, serif;
  --ui:      'DM Sans', system-ui, sans-serif;

  --pad:     min(8vw, 110px);
  --pad-y:   clamp(70px, 11vh, 140px);
  --maxw:    1480px;
}

[data-theme="dark"] {
  --bg:        #0c0410;
  --bg2:       #150818;
  --bg3:       #1f0a23;
  --text:      #fbeef5;
  --text2:     rgba(251,238,245,.62);
  --text3:     rgba(251,238,245,.42);
  --line:      rgba(251,238,245,.12);
  --line2:     rgba(251,238,245,.06);
  --surface:   #160820;
  --surface2:  #1f0a2a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin:0; padding:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  line-height: 1.85;
  overflow-x: hidden;
  cursor: none;
  transition: background .5s ease, color .5s ease;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: none; }
em { font-style: italic; color: var(--accent); font-family: var(--display); }

::selection { background: var(--accent); color: #fff; }

/* ──────────── SPLASH ──────────── */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #fff 0%, #fff 40%, #fce7f1 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 26px;
  transition: opacity .9s ease, visibility .9s;
}
#splash.gone { opacity: 0; visibility: hidden; }
.splash-orbit {
  position: absolute; width: 360px; height: 360px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(237,30,121,.18), transparent 50%);
  animation: spin 3s linear infinite;
  filter: blur(20px);
}
.splash-orbit span {
  position: absolute; left: 50%; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: #ED1E79;
  transform-origin: 0 0;
  animation: orbit 3.2s linear infinite;
}
.splash-orbit span:nth-child(2) { background: #662D8C; animation-delay: -1s; animation-duration: 4.2s; }
.splash-orbit span:nth-child(3) { background: #ED1E79; animation-delay: -2s; animation-duration: 5s; }
@keyframes orbit { from { transform: rotate(0) translateX(160px) rotate(0); } to { transform: rotate(360deg) translateX(160px) rotate(-360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }

.splash-logo {
  width: clamp(150px, 22vw, 220px);
  height: auto;
  z-index: 2;
  animation: logoPulse 2.5s ease infinite alternate;
  filter: drop-shadow(0 10px 35px rgba(237,30,121,.25));
}
@keyframes logoPulse {
  from { transform: scale(.96); opacity: .82; }
  to   { transform: scale(1.02); opacity: 1; }
}
.splash-tagline {
  font-family: var(--display); font-style: italic;
  font-size: clamp(.95rem, 1.6vw, 1.25rem);
  color: #662D8C;
  z-index: 2;
  letter-spacing: .01em;
  opacity: 0;
  animation: fadeUp 1.2s .4s ease forwards;
}
.splash-loader {
  width: 180px; height: 1px;
  background: rgba(102,45,140,.15);
  z-index: 2; overflow: hidden;
  opacity: 0; animation: fadeUp 1.2s .7s ease forwards;
}
.splash-loader i {
  display: block; width: 40%; height: 100%;
  background: linear-gradient(90deg, #ED1E79, #662D8C);
  animation: load 1.6s ease-in-out infinite;
}
@keyframes load {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(360%); }
}
.splash-footer {
  position: absolute; bottom: 38px;
  font-family: var(--ui);
  font-size: .68rem; letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(102,45,140,.55);
  display: flex; align-items: center; gap: 9px;
  z-index: 2;
  opacity: 0; animation: fadeUp 1.2s 1s ease forwards;
}
.splash-heart { color: #ED1E79; animation: beat 1.4s ease infinite; }
@keyframes beat { 0%,100%{transform:scale(1);} 50%{transform:scale(1.25);} }
@keyframes fadeUp { from{opacity:0;transform:translateY(10px);} to{opacity:1;transform:none;} }

/* ──────────── CURSOR ──────────── */
#cur, #cur2 { will-change: transform; }
#cur {
  position: fixed; width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  mix-blend-mode: multiply;
  transition: width .25s, height .25s, opacity .3s;
}
#cur2 {
  position: fixed; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(237,30,121,.45);
  pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, border-color .25s, background .25s;
}
[data-theme="dark"] #cur { mix-blend-mode: screen; }
@media (hover: none), (max-width: 768px) {
  #cur, #cur2, #inkCanvas { display: none; }
  body, button, a { cursor: auto; }
}
#inkCanvas {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
}

/* ──────────── NAV ──────────── */
nav#topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 50px);
  background: rgba(253,251,252,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line2);
  transition: background .5s, border-color .5s;
}
[data-theme="dark"] nav#topnav { background: rgba(12,4,16,.78); }
nav#topnav::after {
  content: ''; position: absolute; bottom: 0; left: 6vw; right: 6vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237,30,121,.22), transparent);
}

.nav-burger {
  width: 38px; height: 38px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px;
  padding: 0 8px;
}
.nav-burger span {
  display: block; height: 1.5px; background: var(--text);
  transition: width .3s, transform .3s, background .3s;
}
.nav-burger span:nth-child(1) { width: 22px; }
.nav-burger span:nth-child(2) { width: 16px; }
.nav-burger span:nth-child(3) { width: 22px; }
.nav-burger:hover span:nth-child(2) { width: 22px; }
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 22px; }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 22px; }

.nav-logo {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; height: 38px;
}
.nav-logo img { height: 36px; width: auto; }
.logo-light { display: block; }
.logo-dark  { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark  { display: block; }

.nav-tools { display: flex; gap: 6px; }
.nav-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--text);
  transition: background .3s, color .3s, transform .3s;
}
.nav-icon:hover { background: rgba(237,30,121,.08); color: var(--accent); }
.ic-sun { display: none; }
[data-theme="dark"] .ic-moon { display: none; }
[data-theme="dark"] .ic-sun  { display: block; }

/* ──────────── SIDE MENU ──────────── */
#smBackdrop {
  position: fixed; inset: 0; z-index: 700;
  background: rgba(12,4,16,.6);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .5s, visibility .5s;
}
#smBackdrop.on { opacity: 1; visibility: visible; }

#sideMenu {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(420px, 90vw); z-index: 800;
  background: var(--surface);
  transform: translateX(-100%);
  transition: transform .55s cubic-bezier(.7,0,.2,1);
  border-right: 1px solid var(--line);
  overflow-y: auto;
}
#sideMenu.on { transform: translateX(0); }
.sm-inner {
  padding: 80px 50px 40px;
  display: flex; flex-direction: column; gap: 4px;
  min-height: 100%;
}
.sm-close {
  position: absolute; top: 18px; right: 22px;
  width: 38px; height: 38px; font-size: 28px;
  display: grid; place-items: center; color: var(--text2);
  transition: color .3s, transform .3s;
}
.sm-close:hover { color: var(--accent); transform: rotate(90deg); }
.sm-label {
  font-family: var(--ui); font-size: .58rem; letter-spacing: .42em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 24px;
}
.sm-link {
  font-family: var(--display); font-size: clamp(1.4rem, 3vw, 1.85rem);
  display: flex; align-items: baseline; gap: 18px;
  padding: 8px 0;
  position: relative;
  transition: color .3s, padding-left .3s;
}
.sm-link span {
  font-family: var(--ui); font-size: .55rem; letter-spacing: .25em;
  color: var(--text3); font-weight: 500;
}
.sm-link:hover { color: var(--accent); padding-left: 14px; }
.sm-foot { margin-top: auto; padding-top: 40px; border-top: 1px solid var(--line); }
.sm-foot-label {
  font-family: var(--ui); font-size: .55rem; letter-spacing: .32em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 14px;
}
.sm-socials { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.sm-socials a {
  font-family: var(--ui); font-size: .72rem;
  color: var(--text2);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}
.sm-socials a:hover { color: var(--accent); border-color: var(--accent); }

/* ──────────── SIDE CHAPTER MARKS ──────────── */
.cms {
  position: fixed; right: 26px; top: 50%;
  transform: translateY(-50%); z-index: 400;
  display: flex; flex-direction: column; gap: 14px;
}
.cm {
  width: 22px; height: 1px; background: rgba(26,6,18,.22);
  display: block;
  transition: width .35s, background .35s;
  position: relative;
}
.cm::after {
  content: attr(data-l); position: absolute; right: 30px; top: -8px;
  font-family: var(--ui);
  font-size: .5rem; letter-spacing: .26em;
  text-transform: uppercase; white-space: nowrap;
  color: var(--text3);
  opacity: 0; transition: opacity .3s;
}
.cm.active { width: 38px; background: var(--accent); }
.cm:hover { width: 38px; }
.cm:hover::after, .cm.active::after { opacity: 1; }
[data-theme="dark"] .cm { background: rgba(251,238,245,.18); }
@media (max-width: 1024px) { .cms { display: none; } }

/* ──────────── SHARED ──────────── */
.ch-label {
  font-family: var(--ui); font-size: .58rem;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.ch-label::before {
  content: ''; width: 28px; height: 1px; background: var(--accent);
}
.sec-title {
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.015em;
}
.sec-title em {
  font-family: var(--display);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ──────────── HERO ──────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px clamp(20px, 5vw, 60px) 80px;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.hero-ruled {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    transparent, transparent 79px,
    rgba(102,45,140,.05) 79px, rgba(102,45,140,.05) 80px
  );
  animation: ruledShift 11s ease-in-out infinite alternate;
  opacity: .8;
}
[data-theme="dark"] .hero-ruled {
  background-image: repeating-linear-gradient(
    transparent, transparent 79px,
    rgba(251,238,245,.04) 79px, rgba(251,238,245,.04) 80px
  );
}
@keyframes ruledShift { from{background-position:0 0;} to{background-position:0 24px;} }

.hero-wm {
  position: absolute; right: -3vw; bottom: -2vw;
  font-family: var(--display); font-style: italic;
  font-weight: 700;
  font-size: clamp(12rem, 24vw, 28rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(237,30,121,.07);
  pointer-events: none; user-select: none;
  line-height: 1; letter-spacing: -0.05em;
}

.hero-words {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-words span {
  position: absolute;
  font-family: var(--display); font-style: italic;
  font-size: clamp(.8rem, 1.3vw, 1.05rem);
  color: rgba(102,45,140,.28);
  white-space: nowrap;
  animation: floaty 11s ease-in-out infinite alternate;
}
.hero-words span:nth-child(2n) { animation-duration: 13s; }
.hero-words span:nth-child(3n) { animation-duration: 15s; animation-delay: -3s; }
@keyframes floaty {
  from { transform: translate(0,0); opacity: .4; }
  to   { transform: translate(-10px,-12px); opacity: .8; }
}

.hero-grid {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.hero-left { position: relative; }
.hero-kicker {
  font-family: var(--ui); font-size: .62rem;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  opacity: 0; animation: heroIn .9s 3.0s ease forwards;
}
.hero-kicker i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: beat 1.6s ease infinite;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(2.9rem, 8.2vw, 7.4rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}
.ht-line { display: block; opacity: 0; transform: translateY(40px); }
.ht-line:nth-child(1) { animation: heroIn .9s 3.2s ease forwards; }
.ht-line:nth-child(2) { animation: heroIn .9s 3.4s ease forwards; }
.ht-line:nth-child(3) { animation: heroIn .9s 3.6s ease forwards; }
.ht-line:nth-child(4) { animation: heroIn .9s 3.8s ease forwards; }
.ht-be {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 700;
}
.ht-stroke {
  position: relative; display: inline-block;
}
.ht-stroke::before {
  content: attr(data-text);
  position: absolute; left: 5px; top: 5px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237,30,121,.32);
  z-index: -1;
}
@keyframes heroIn { to { opacity: 1; transform: none; } }

.hero-sub {
  font-family: var(--body);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  max-width: 540px;
  color: var(--text2);
  line-height: 1.75;
  margin: 0 0 36px;
  opacity: 0; animation: heroIn .9s 4.0s ease forwards;
}

.hero-ctas {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  margin-bottom: 50px;
  opacity: 0; animation: heroIn .9s 4.2s ease forwards;
}

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 6px 18px;
  font-family: var(--ui); font-size: .65rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--text3);
  opacity: 0; animation: heroIn .9s 4.4s ease forwards;
}
.hero-meta div b {
  color: var(--accent); font-weight: 600;
  font-family: var(--display); font-style: italic;
  font-size: 1.1rem; margin-right: 4px;
}

/* hero right */
.hero-right {
  position: relative;
  perspective: 1400px;
  display: flex; align-items: center; justify-content: center;
}
.hero-image-wrap {
  position: relative;
  width: min(540px, 88%); aspect-ratio: 4/5;
  transform-style: preserve-3d;
  transition: transform .25s ease;
  opacity: 0;
  animation: heroIn 1.2s 3.0s ease forwards, heroFloat 7s 3.5s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  from { transform: translateY(0) rotate(-.4deg); }
  to   { transform: translateY(-18px) rotate(.4deg); }
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  box-shadow: 0 50px 100px rgba(102,45,140,.32);
  position: relative; z-index: 2;
}
.hero-glow {
  position: absolute; inset: -25%;
  background: radial-gradient(circle at 50% 50%, rgba(237,30,121,.32), transparent 60%);
  filter: blur(40px); z-index: 0;
  animation: glowPulse 4s ease infinite alternate;
}
@keyframes glowPulse { from{opacity:.65;} to{opacity:1;} }
.hero-frame {
  position: absolute; width: 50px; height: 50px;
  border: 2px solid var(--accent); z-index: 3;
  transition: width .4s, height .4s, opacity .4s;
}
.br-tl { top: -12px; left: -12px; border-width: 2px 0 0 2px; }
.br-tr { top: -12px; right: -12px; border-width: 2px 2px 0 0; }
.br-bl { bottom: -12px; left: -12px; border-width: 0 0 2px 2px; }
.br-br { bottom: -12px; right: -12px; border-width: 0 2px 2px 0; }
.hero-image-wrap:hover .hero-frame { width: 70px; height: 70px; }
.hero-shadow {
  position: absolute; left: 10%; right: 10%; bottom: -40px; height: 30px;
  background: radial-gradient(ellipse at center, rgba(102,45,140,.4), transparent 70%);
  filter: blur(15px); z-index: 0;
}

.hero-badge {
  position: absolute; top: 6%; right: -2%;
  background: var(--surface);
  border: 1px solid var(--accent);
  padding: 12px 18px;
  font-family: var(--ui); font-size: .55rem;
  letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  z-index: 4;
  box-shadow: 0 10px 30px rgba(237,30,121,.15);
}
.hero-badge b {
  font-family: var(--display); font-style: italic;
  font-size: 1.4rem; letter-spacing: 0; color: var(--accent);
  font-weight: 600;
}

.hero-scroll {
  position: absolute; left: 6vw; bottom: 30px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 5;
  opacity: 0; animation: heroIn .9s 4.8s ease forwards;
}
.hs-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--accent));
  position: relative; overflow: hidden;
}
.hs-line::after {
  content: ''; position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--accent);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -50%; } 100% { top: 100%; }
}
.hs-text {
  font-family: var(--ui); font-size: .55rem;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--text3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ──────────── ABOUT ──────────── */
.about {
  position: relative;
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 6vw, 90px);
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--surface);
  align-items: stretch;
}
.ab-photo {
  position: relative;
  min-height: 580px;
}
.ab-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(.95);
}
.ab-photo-strip {
  position: absolute; right: -8px; top: 10%; bottom: 10%;
  width: 4px;
  background: var(--grad);
}
.ab-photo-no {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--display); font-style: italic;
  font-size: 5rem; color: rgba(255,255,255,.65);
  line-height: 1; font-weight: 700;
}

.ab-text { padding: 20px 0; max-width: 620px; }
.ab-lead {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  color: var(--text);
  line-height: 1.45;
  margin: 0 0 26px;
}
.ab-body {
  color: var(--text2);
  margin: 0 0 36px;
  max-width: 560px;
}
.ab-quote {
  background: var(--grad-soft);
  border-left: 2px solid var(--accent);
  padding: 24px 28px;
  margin-bottom: 40px;
  position: relative;
}
.ab-quote svg { color: var(--accent); opacity: .35; margin-bottom: 6px; }
.ab-quote p {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  margin: 0 0 8px; color: var(--text); line-height: 1.4;
}
.ab-quote span {
  font-family: var(--ui); font-size: .65rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--text3);
}

.ab-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.ab-stats > div { display: flex; flex-direction: column; gap: 4px; }
.ab-stats b {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.ab-stats span {
  font-family: var(--ui); font-size: .6rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--text3);
}

/* ──────────── MARQUEE ──────────── */
.mq-wrap {
  position: relative;
  padding: 30px 0;
  background: var(--bg);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  overflow: hidden;
}
.mq-wrap::before, .mq-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2;
  pointer-events: none;
}
.mq-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.mq-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.mq-track {
  display: flex; width: max-content;
  animation: mq 38s linear infinite;
}
@keyframes mq { from{transform:translateX(0);} to{transform:translateX(-50%);} }
.mq-item {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  padding: 0 50px;
  color: var(--text2);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 30px;
}
.mq-item:not(:last-child)::after {
  content: '✦'; color: var(--accent); opacity: .6;
  font-size: .8em; margin-left: 30px;
}

/* ──────────── PROGRAMS / IMPACT ──────────── */
.impact {
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--bg);
  position: relative;
}
.imp-head {
  text-align: center; max-width: 800px; margin: 0 auto 70px;
}
.imp-head .ch-label { justify-content: center; }
.imp-sub {
  font-family: var(--body);
  color: var(--text2); font-size: 1.05rem; line-height: 1.7;
  margin: 0 auto;
}

.prog-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
}
.prog {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: transform .5s ease;
  border: 1px solid var(--line);
}
.prog:hover { transform: translateY(-6px); }
.prog-img {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.prog-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55));
  z-index: 1;
}
.prog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter 1s ease;
  filter: saturate(.95);
}
.prog:hover .prog-img img { transform: scale(1.08); filter: saturate(1.1); }
.prog-body { padding: 30px 30px 36px; position: relative; }
.prog-num {
  position: absolute; top: -42px; right: 26px;
  font-family: var(--display); font-style: italic;
  font-size: 3rem; font-weight: 700;
  color: #fff; opacity: .85;
  line-height: 1; z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.prog-name {
  font-family: var(--display); font-weight: 700;
  font-size: 2rem;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.prog-cat {
  display: block;
  font-family: var(--ui); font-size: .58rem;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.prog-tag {
  font-family: var(--display); font-style: italic;
  font-size: 1.05rem; line-height: 1.45;
  margin: 0 0 14px;
  color: var(--text);
}
.prog-line {
  font-family: var(--body);
  color: var(--text2);
  font-size: .95rem; line-height: 1.65;
  margin: 0;
}

.prog-arc {
  max-width: var(--maxw); margin: 60px auto 0;
  text-align: center;
}
.arc-line {
  font-family: var(--body); font-style: italic;
  font-size: clamp(.85rem, 1.1vw, 1rem);
  color: var(--text2);
  line-height: 1.8;
  padding: 24px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.arc-line b {
  font-family: var(--display); font-weight: 600;
  color: var(--accent); font-style: normal;
  margin-right: 4px;
}
.arc-line span { color: var(--accent); margin: 0 8px; opacity: .5; }

/* ──────────── PULL QUOTE / FULL FORM ──────────── */
.pull {
  position: relative;
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--grad);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.pull-wm {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--display); font-style: italic; font-weight: 700;
  font-size: clamp(15rem, 32vw, 36rem);
  color: rgba(255,255,255,.06);
  pointer-events: none; line-height: 1;
  letter-spacing: -0.05em;
}
.pull-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.pull .ch-label { color: rgba(255,255,255,.85); }
.pull .ch-label::before { background: rgba(255,255,255,.85); }
.pull-letters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 30px 60px;
  margin: 40px 0 50px;
}
.pl {
  display: flex; align-items: baseline; gap: 8px;
}
.pl b {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  color: #fff;
  font-style: italic;
}
.pl span {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: rgba(255,255,255,.92);
  font-weight: 500;
}
.pull-q {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: rgba(255,255,255,.95);
  max-width: 720px; margin: 0 auto;
  line-height: 1.6;
}
.pull-q em { color: #fff; font-weight: 600; }

/* ──────────── HOW WE WORK ──────────── */
.howwework {
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--surface);
}
.hw-head { text-align: center; margin-bottom: 60px; }
.hw-head .ch-label { justify-content: center; }
.hw-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
}
.hw {
  position: relative; transition: transform .5s ease;
}
.hw:hover { transform: translateY(-4px); }
.hw-img {
  width: 100%; aspect-ratio: 5/4;
  overflow: hidden;
  position: relative;
}
.hw-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(102,45,140,.35));
}
.hw-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.hw:hover .hw-img img { transform: scale(1.06); }
.hw-body { padding: 24px 0 0; }
.hw-step {
  font-family: var(--ui); font-size: .58rem;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 10px;
}
.hw-body h3 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  margin: 0 0 12px;
}
.hw-body p {
  color: var(--text2); margin: 0; font-size: .96rem; line-height: 1.65;
}

/* ──────────── REVIEWS ──────────── */
.reviews {
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--bg2);
  position: relative; overflow: hidden;
  text-align: center;
}
.rv-wm {
  position: absolute; right: 5vw; top: 8%;
  font-family: var(--display); font-style: italic; font-weight: 700;
  font-size: clamp(8rem, 18vw, 22rem);
  color: rgba(237,30,121,.04);
  pointer-events: none; line-height: 1;
  letter-spacing: -0.05em;
}
.reviews .ch-label { justify-content: center; }
.r-carousel {
  position: relative;
  max-width: 1100px; margin: 50px auto 30px;
  min-height: 380px;
}
.rslide {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 320px 1fr; gap: 50px;
  align-items: center;
  text-align: left;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease, visibility .8s;
}
.rslide.on { opacity: 1; visibility: visible; transform: none; }
.r-img {
  aspect-ratio: 4/5;
  overflow: hidden; position: relative;
}
.r-img::before {
  content: ''; position: absolute; inset: -2px;
  background: var(--grad); z-index: 0;
}
.r-img img {
  width: calc(100% - 4px); height: calc(100% - 4px); margin: 2px;
  object-fit: cover; position: relative; z-index: 1;
}
.r-text { padding: 20px 0; }
.r-quote { color: var(--accent); opacity: .4; margin-bottom: 12px; }
.r-text p {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.45;
  margin: 0 0 22px;
  color: var(--text);
}
.r-text span {
  font-family: var(--ui); font-size: .68rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.r-controls {
  display: inline-flex; align-items: center; gap: 26px;
  margin-top: 30px;
}
.r-controls button {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.1rem;
  color: var(--text2);
  transition: all .35s ease;
}
.r-controls button:hover {
  background: var(--accent); color: #fff; border-color: var(--accent);
  transform: scale(1.05);
}
.r-pips { display: flex; gap: 10px; }
.rpip {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line);
  cursor: none;
  transition: all .35s ease;
}
.rpip.on { background: var(--accent); transform: scale(1.4); }

/* ──────────── INSIGHTS / BLOG ──────────── */
.insights {
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--bg);
}
.ins-head {
  max-width: 800px; margin: 0 auto 60px; text-align: center;
}
.ins-head .ch-label { justify-content: center; }
.ins-sub { color: var(--text2); margin: 0 auto; max-width: 600px; }
.ins-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px;
}
.ins-card {
  display: grid; grid-template-columns: .45fr .55fr; gap: 24px;
  align-items: center;
}
.ins-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.ins-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s ease, filter .9s ease;
  filter: saturate(.9) brightness(.95);
}
.ins-card:hover .ins-img img { transform: scale(1.08); filter: saturate(1.1) brightness(1); }
.ins-meta {
  font-family: var(--ui); font-size: .58rem;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 12px;
}
.ins-meta span { color: var(--accent); }
.ins-card h3 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.25;
  margin: 0 0 14px;
}
.ins-card p {
  color: var(--text2); font-size: .92rem;
  line-height: 1.65; margin: 0 0 18px;
}
.ins-link {
  font-family: var(--ui); font-size: .65rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: padding-bottom .3s, letter-spacing .3s;
}
.ins-link:hover { letter-spacing: .32em; }

/* ──────────── RESOURCES ──────────── */
.resources {
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--surface);
}
.rs-head { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.rs-head .ch-label { justify-content: center; }
.rs-sub { color: var(--text2); }
.rs-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.rs-card {
  padding: 36px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: block;
  transition: background .4s ease;
}
.rs-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--grad-soft);
  transition: width .5s ease;
  z-index: 0;
}
.rs-card:hover::before { width: 100%; }
.rs-card > * { position: relative; z-index: 1; }
.rs-tag {
  font-family: var(--ui); font-size: .55rem;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--accent);
  display: inline-block; margin-bottom: 16px;
  padding: 4px 10px;
  border: 1px solid var(--accent);
}
.rs-card h3 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  margin: 0 0 10px;
  line-height: 1.25;
}
.rs-card p {
  color: var(--text2); font-size: .9rem;
  line-height: 1.6; margin: 0 0 24px;
}
.rs-arr {
  font-family: var(--ui); font-size: 1.2rem;
  color: var(--accent);
  transition: transform .35s ease;
  display: inline-block;
}
.rs-card:hover .rs-arr { transform: translateX(10px); }

/* ──────────── GALLERY ──────────── */
.gallery {
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--bg);
}
.gl-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.gl-head .ch-label { justify-content: center; }
.gl-strip {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
}
.gl-cell {
  position: relative; overflow: hidden;
}
.gl-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter 1s ease;
  filter: grayscale(20%) saturate(.95);
}
.gl-cell:hover img { transform: scale(1.06); filter: grayscale(0%) saturate(1.1); }
.gl-cell::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.45));
  opacity: 0; transition: opacity .4s;
}
.gl-cell:hover::after { opacity: 1; }
.gl-tall { grid-row: span 2; }
.gl-cap {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--display); font-style: italic;
  font-size: .9rem;
  color: #fff; z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s;
}
.gl-cell:hover .gl-cap { opacity: 1; transform: none; }
.gl-cap i { font-style: italic; color: var(--accent2); }

/* ──────────── JOIN ──────────── */
.join {
  position: relative;
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: #2a0d20;
  color: #fff;
  overflow: hidden;
}
.join-bg {
  position: absolute; inset: 0; z-index: 0;
}
.join-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .15;
  filter: saturate(.5) brightness(.6);
}
.join-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(237,30,121,.45), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(102,45,140,.45), transparent 50%);
}
.join-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
}
.join .ch-label { color: rgba(255,255,255,.85); }
.join .ch-label::before { background: rgba(255,255,255,.85); }
.join .sec-title { color: #fff; max-width: 800px; }
.join .sec-title em {
  background: linear-gradient(135deg, #f9bfd9, #fff);
  -webkit-background-clip: text; background-clip: text;
}
.join-sub {
  max-width: 700px;
  color: rgba(255,255,255,.72);
  margin: 0 0 50px;
  font-size: 1.05rem;
}

.join-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 50px;
}
.join-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  padding: 30px 26px;
  position: relative;
  transition: background .4s, border-color .4s, transform .4s;
}
.join-card:hover {
  background: rgba(237,30,121,.12);
  border-color: rgba(237,30,121,.5);
  transform: translateY(-4px);
}
.jn-num {
  font-family: var(--display); font-style: italic; font-weight: 700;
  font-size: 2.4rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: block; margin-bottom: 14px;
  line-height: 1;
}
.join-card h3 {
  font-family: var(--display); font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 10px;
}
.join-card p {
  color: rgba(255,255,255,.65);
  font-size: .92rem; line-height: 1.6; margin: 0;
}
.join-cta { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.join-cta .btn-ghost { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.2); }
.join-cta .btn-ghost:hover { color: #fff; border-color: var(--accent); }

/* ──────────── NEWSLETTER ──────────── */
.newsletter {
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--bg);
}
.nl-box {
  max-width: 1100px; margin: 0 auto;
  position: relative; overflow: hidden;
  padding: 2px;
  background: linear-gradient(135deg, rgba(237,30,121,.4), rgba(102,45,140,.4));
}
.nl-box::before {
  content: ''; position: absolute; inset: 0;
  background: conic-gradient(from 0deg at 50% 50%,
    transparent 0deg, rgba(237,30,121,.6) 60deg, transparent 120deg,
    transparent 240deg, rgba(102,45,140,.6) 300deg, transparent 360deg);
  animation: cone 14s linear infinite;
  pointer-events: none;
}
@keyframes cone { from{transform:rotate(0);} to{transform:rotate(360deg);} }
.nl-content {
  position: relative; z-index: 1;
  background: var(--surface);
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
}
.nl-content .ch-label { justify-content: center; }
.nl-content h3 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 12px;
}
.nl-content p {
  color: var(--text2); margin: 0 auto 30px; max-width: 540px;
}
.nl-form {
  display: flex; gap: 12px; max-width: 540px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.nl-form input {
  flex: 1; min-width: 240px;
  padding: 14px 20px;
  font-family: var(--ui);
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: .92rem;
  outline: none;
  transition: border-color .3s;
}
.nl-form input:focus { border-color: var(--accent); }

/* ──────────── TRUST ──────────── */
.trust {
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--surface);
}
.tr-head { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.tr-head .ch-label { justify-content: center; }
.tr-sub { color: var(--text2); }
.tr-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.tr-card {
  padding: 34px 28px;
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  display: block;
  transition: transform .4s, border-color .4s, box-shadow .4s;
}
.tr-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px rgba(237,30,121,.10);
}
.tr-card svg { color: var(--accent); margin-bottom: 18px; }
.tr-card h3 {
  font-family: var(--display); font-weight: 600;
  font-size: 1.25rem; margin: 0 0 10px;
}
.tr-card p { color: var(--text2); font-size: .92rem; line-height: 1.65; margin: 0 0 18px; }
.tr-card span {
  font-family: var(--ui); font-size: .6rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent);
}

/* ──────────── TEAM ──────────── */
.team {
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--bg);
}
.tm-head { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.tm-head .ch-label { justify-content: center; }
.tm-sub { color: var(--text2); }
.tm-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
}
.tm-card {
  text-align: center;
  transition: transform .5s ease;
}
.tm-card:hover { transform: translateY(-4px); }
.tm-img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}
.tm-img::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid transparent;
  transition: border-color .5s ease;
}
.tm-card:hover .tm-img::after { border-color: var(--accent); }
.tm-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease, filter .8s ease;
  filter: grayscale(15%);
}
.tm-card:hover .tm-img img { transform: scale(1.05); filter: grayscale(0%); }
.tm-card h3 {
  font-family: var(--display); font-weight: 600;
  font-size: 1.3rem; margin: 0 0 4px;
}
.tm-card span {
  font-family: var(--ui); font-size: .62rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent);
}

/* ──────────── DONATE ──────────── */
.donate {
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--surface);
}
.dn-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.dn-sub { color: var(--text2); margin: 0 0 36px; max-width: 540px; }
.dn-amounts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin-bottom: 36px;
}
.dn-amt {
  padding: 22px 22px;
  border: 1px solid var(--line);
  text-align: left;
  position: relative;
  transition: all .35s ease;
}
.dn-amt:hover, .dn-amt.active {
  border-color: var(--accent);
  background: var(--grad-soft);
}
.dn-amt span {
  display: block;
  font-family: var(--display); font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.dn-amt i {
  font-family: var(--body); font-style: italic;
  color: var(--text2); font-size: .85rem;
}
.dn-cta { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

.dn-img {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden;
}
.dn-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.dn-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42,13,32,.85));
}
.dn-quote {
  position: absolute; left: 30px; right: 30px; bottom: 30px;
  z-index: 2;
}
.dn-quote p {
  font-family: var(--display); font-style: italic;
  color: #fff; margin: 0;
  font-size: clamp(.95rem, 1.2vw, 1.15rem);
  line-height: 1.5;
}
.dn-quote em { color: #fff; font-weight: 700; }

/* ──────────── CONTACT ──────────── */
.contact {
  position: relative;
  padding: var(--pad-y) clamp(20px, 5vw, 60px);
  background: var(--bg);
  overflow: hidden;
}
.ct-wm {
  position: absolute; left: -3vw; top: 10%;
  font-family: var(--display); font-style: italic; font-weight: 700;
  font-size: clamp(10rem, 22vw, 24rem);
  color: rgba(237,30,121,.04);
  pointer-events: none; line-height: 1;
}
.ct-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.ct-sub { color: var(--text2); margin: 0 0 40px; max-width: 540px; }
.ct-links { display: flex; flex-direction: column; }
.cl-link {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  padding: 22px 14px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left .35s ease;
}
.cl-link::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(237,30,121,.08), transparent);
  transition: width .5s ease;
}
.cl-link:hover { padding-left: 28px; }
.cl-link:hover::before { width: 100%; }
.cl-label {
  font-family: var(--ui); font-size: .58rem;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--text3);
  align-self: center;
}
.cl-val {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--text);
  transition: color .3s;
}
.cl-link:hover .cl-val { color: var(--accent); }

.ct-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 32px;
  position: sticky; top: 100px;
}
.ct-card-l {
  font-family: var(--ui); font-size: .58rem;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--accent);
  display: block; margin-bottom: 10px;
}
.ct-card p {
  margin: 0 0 26px;
  color: var(--text2);
  font-size: .95rem;
  line-height: 1.7;
}
.ct-card p:last-child { margin-bottom: 0; }

/* ──────────── FOOTER ──────────── */
footer {
  background: var(--bg3);
  color: rgba(251,238,245,.7);
  padding: 70px clamp(20px, 5vw, 60px) 30px;
  border-top: 4px solid transparent;
  background-image: linear-gradient(var(--bg3), var(--bg3)), var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.ft-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr .8fr .8fr .8fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ft-brand { max-width: 360px; }
.ft-logo { height: 38px; width: auto; margin-bottom: 20px; }
.ft-brand .logo-light { display: none; }
.ft-brand .logo-dark  { display: block; }
.ft-brand p {
  font-size: .92rem;
  color: rgba(251,238,245,.55);
  margin: 0 0 16px;
  line-height: 1.7;
}
.ft-spread {
  font-family: var(--ui); font-size: .58rem;
  letter-spacing: .32em; text-transform: uppercase;
  color: rgba(251,238,245,.45);
}
.ft-col { display: flex; flex-direction: column; gap: 10px; }
.ft-l {
  font-family: var(--ui); font-size: .58rem;
  letter-spacing: .32em; text-transform: uppercase;
  color: rgba(237,30,121,.85);
  margin-bottom: 8px;
}
.ft-col a {
  font-family: var(--body);
  color: rgba(251,238,245,.65);
  font-size: .92rem;
  transition: color .3s, padding-left .3s;
  border-bottom: 1px solid transparent;
  width: fit-content;
}
.ft-col a:hover { color: #fff; padding-left: 6px; }
.ft-bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-family: var(--ui); font-size: .65rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(251,238,245,.4);
}

/* ──────────── BUTTONS ──────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 32px;
  background: var(--grad);
  color: #fff;
  font-family: var(--ui); font-weight: 500; font-size: .68rem;
  letter-spacing: .26em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(237,30,121,.28);
  transition: transform .35s, box-shadow .35s;
  position: relative; overflow: hidden;
  border: 0;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #f55ca5, #803ba9);
  opacity: 0; transition: opacity .35s;
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(237,30,121,.4);
}
.btn-primary:hover::before { opacity: 1; }
.btn-ghost {
  font-family: var(--ui); font-weight: 400; font-size: .65rem;
  letter-spacing: .26em; text-transform: uppercase;
  text-decoration: none;
  color: var(--text2);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color .3s, border-color .3s, padding-bottom .3s;
}
.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
  padding-bottom: 6px;
}

/* ──────────── MOBILE BOTTOM BAR ──────────── */
.bottom-bar { display: none; }
@media (max-width: 1024px) {
  .bottom-bar {
    position: fixed; bottom: 14px; left: 14px; right: 14px;
    z-index: 500;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 8px;
    display: flex; align-items: center; justify-content: space-around;
    box-shadow: 0 12px 40px rgba(102,45,140,.18);
  }
  [data-theme="dark"] .bottom-bar { background: rgba(22,8,32,.92); }
  .bottom-bar a {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 50%;
    color: var(--text2);
    transition: background .3s, color .3s, transform .3s;
  }
  .bottom-bar a:hover, .bottom-bar a:active {
    background: rgba(237,30,121,.1);
    color: var(--accent);
  }
  .bottom-bar .bb-cta {
    width: 62px; height: 62px;
    background: var(--grad);
    color: #fff;
    font-family: var(--ui);
    font-size: .58rem; letter-spacing: .22em;
    box-shadow: 0 8px 24px rgba(237,30,121,.4);
    margin: -16px 0;
    transform: translateY(0);
  }
  .bottom-bar .bb-cta:hover { background: var(--grad); color: #fff; }
}

/* ──────────── SCROLL REVEAL ──────────── */
.rv     { opacity: 0; transform: translateY(40px);  transition: opacity .9s ease, transform .9s ease; }
.rv-l   { opacity: 0; transform: translateX(-40px); transition: opacity .9s ease, transform .9s ease; }
.rv-r   { opacity: 0; transform: translateX(40px);  transition: opacity .9s ease, transform .9s ease; }
.rv-s   { opacity: 0; transform: scale(.93);        transition: opacity .9s ease, transform .9s ease; }
.rv.in, .rv-l.in, .rv-r.in, .rv-s.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .22s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .5s; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1180px) {
  .prog-grid, .tr-grid, .tm-grid { grid-template-columns: repeat(2, 1fr); }
  .rs-grid { grid-template-columns: repeat(2, 1fr); }
  .join-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(2.8rem, 7.5vw, 6.2rem); }
}

@media (max-width: 1024px) {
  body { padding-bottom: 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-right { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-image-wrap { width: 100%; }
  .hero-badge { right: 2%; top: 4%; }
  .hero-scroll { display: none; }

  .about { grid-template-columns: 1fr; gap: 40px; }
  .ab-photo { min-height: 460px; }

  .hw-grid { grid-template-columns: 1fr; gap: 50px; }
  .ins-grid { grid-template-columns: 1fr; gap: 40px; }
  .ct-inner { grid-template-columns: 1fr; }
  .ct-card { position: static; }
  .cl-link { grid-template-columns: 110px 1fr; gap: 16px; }

  .dn-grid { grid-template-columns: 1fr; gap: 40px; }
  .dn-img { aspect-ratio: 4/3; max-height: 500px; }

  .gl-strip { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .gl-tall { grid-row: span 2; }

  .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ft-brand { grid-column: 1 / -1; max-width: 100%; }

  .rslide { grid-template-columns: 220px 1fr; gap: 30px; }
  .r-carousel { min-height: 320px; }
}

@media (max-width: 768px) {
  :root { --pad-y: 70px; }
  nav#topnav { padding: 14px 20px; }
  .nav-logo img { height: 30px; }
  .nav-burger, .nav-icon { width: 34px; height: 34px; }

  .hero { padding: 100px 18px 60px; min-height: auto; }
  .hero-title { font-size: clamp(2.5rem, 11vw, 4.5rem); }
  .ht-stroke::before { left: 3px; top: 3px; }
  .hero-sub { font-size: .98rem; margin-bottom: 28px; }
  .hero-ctas { gap: 16px; }
  .hero-badge { padding: 10px 14px; }
  .hero-badge b { font-size: 1.1rem; }
  .hero-meta { font-size: .55rem; gap: 4px 12px; }

  .prog-grid, .tr-grid, .tm-grid, .rs-grid, .join-grid {
    grid-template-columns: 1fr; gap: 24px;
  }
  .rs-grid { border-left: none; }
  .rs-card { border-left: 1px solid var(--line); }

  .ab-photo { min-height: 360px; }
  .ab-photo-no { font-size: 3.5rem; }
  .ab-stats { grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
  .ab-stats b { font-size: 1.7rem; }

  .pull-letters { gap: 18px 32px; }

  .rslide {
    grid-template-columns: 1fr; gap: 24px;
    text-align: center;
  }
  .r-img { max-width: 200px; margin: 0 auto; }
  .r-text { padding: 0; text-align: center; }
  .r-text p { font-size: 1.1rem; }
  .r-carousel { min-height: 540px; }

  .ins-card { grid-template-columns: 1fr; gap: 18px; }
  .ins-img { aspect-ratio: 16/10; }

  .gl-strip {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gl-tall { grid-row: span 1; }

  .ft-grid { grid-template-columns: 1fr; text-align: left; gap: 30px; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }

  .sec-title { font-size: clamp(1.9rem, 6.5vw, 2.6rem); }

  .mq-item { font-size: 1.3rem; padding: 0 30px; }

  .pl b { font-size: 3.6rem; }
  .pl span { font-size: 1.2rem; }

  .cl-link { grid-template-columns: 1fr; gap: 6px; padding: 18px 14px; }
  .cl-label { font-size: .52rem; }

  .btn-primary { padding: 13px 26px; font-size: .62rem; }
  .btn-ghost { font-size: .58rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem, 12vw, 3.6rem); }
  .hero-meta { display: none; }
  .ab-stats { grid-template-columns: 1fr; }
  .dn-amounts { grid-template-columns: 1fr; }
  .hero-ctas { width: 100%; flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary { justify-content: center; }
  .hero-ctas .btn-ghost { text-align: center; }
  .join-cta { flex-direction: column; align-items: stretch; }
  .join-cta .btn-primary { justify-content: center; }
  .dn-cta { flex-direction: column; align-items: stretch; }
  .dn-cta .btn-primary { justify-content: center; }
  .bottom-bar { padding: 6px; }
  .bottom-bar a { width: 38px; height: 38px; }
  .bottom-bar a svg { width: 17px; height: 17px; }
  .bottom-bar .bb-cta { width: 54px; height: 54px; margin: -12px 0; font-size: .54rem; }
}

/* Hide watermarks where they leak */
@media (max-width: 600px) {
  .hero-wm, .ct-wm, .rv-wm, .pull-wm { opacity: .5; }
}

/* Print fallback / reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
