/* ================================================================
   ErSahilKaGyan — home.css
   Theme: Dark editorial · Syne + Instrument Sans
   Accent: Lime #a3e635  |  Background: #0a0c10
   ================================================================ */

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:           #0a0c10;
  --bg2:          #0f1117;
  --bg3:          #141720;
  --surface:      #1a1e2a;
  --surface2:     #21263a;
  --lime:         #a3e635;
  --lime-glow:    rgba(163, 230, 53, 0.18);
  --lime-dim:     rgba(163, 230, 53, 0.07);
  --lime-border:  rgba(163, 230, 53, 0.28);
  --text:         #edf0f8;
  --text-soft:    #b2b9d0;
  --text-muted:   #6b7291;
  --border:       rgba(255,255,255,0.07);
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow:       0 8px 48px rgba(0,0,0,0.55);
  --ease:         cubic-bezier(.4,0,.2,1);
  --t:            0.26s;
  --font-h:       'Syne', sans-serif;
  --font-b:       'Instrument Sans', sans-serif;
}

/* ── Base ────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
sup { font-size: 0.55em; vertical-align: super; }

/* ── Particle canvas ─────────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* ── Orbs ────────────────────────────────────────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: orb-float 22s ease-in-out infinite alternate;
}
.orb-1 { width: 560px; height: 560px; background: rgba(163,230,53,0.055); top: -160px; left: -140px; animation-duration: 22s; }
.orb-2 { width: 420px; height: 420px; background: rgba(99,102,241,0.065); top: 45%; right: -100px; animation-duration: 28s; animation-delay: -7s; }
.orb-3 { width: 380px; height: 380px; background: rgba(163,230,53,0.035); bottom: 5%; left: 25%; animation-duration: 34s; animation-delay: -14s; }

@keyframes orb-float {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(28px, 42px) scale(1.12); }
}

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 66px;
  display: flex; align-items: center;
  padding: 0 5%;
  gap: 10px;
  background: rgba(10,12,16,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.navbar.scrolled {
  background: rgba(10,12,16,0.96);
  box-shadow: 0 2px 32px rgba(0,0,0,0.7);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  margin-right: auto;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
}
.logo-mark {
  width: 34px; 
  height: 34px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  border-radius: 9px;
  flex-shrink: 0;
  object-fit: contain;
  max-width: 100%;
}
.logo-full em { color: var(--lime); font-style: normal; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}
.nav-a {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background var(--t), color var(--t);
}
.nav-a:hover, .nav-a.active {
  background: var(--surface);
  color: var(--text);
}

.nav-yt {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 16px;
  background: var(--lime);
  color: #0a0c10;
  border-radius: 50px;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: opacity var(--t), transform var(--t);
}
.nav-yt:hover { opacity: 0.85; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--t) var(--ease);
}

/* ── Ticker ──────────────────────────────────────────────────── */
.ticker-bar {
  position: relative; z-index: 1;
  margin-top: 66px;
  height: 38px;
  background: var(--lime);
  display: flex; align-items: center;
  overflow: hidden;
}
.ticker-tag {
  flex-shrink: 0;
  background: #0a0c10;
  color: var(--lime);
  font-family: var(--font-h);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 0 16px;
  height: 100%;
  display: flex; align-items: center;
  z-index: 2;
}
.ticker-inner { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  color: #0a0c10;
  flex-shrink: 0;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: calc(100vh - 104px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 6% 100px;
  background:
    radial-gradient(ellipse 75% 55% at 50% -5%,  rgba(163,230,53,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 85% 85%,  rgba(99,102,241,0.08) 0%, transparent 55%),
    var(--bg);
  overflow: hidden;
}

/* subtle grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 5px 16px;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  animation: fade-up 0.5s ease both;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--lime); border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(163,230,53,0.55); }
  50%      { box-shadow: 0 0 0 9px rgba(163,230,53,0); }
}

.hero-h1 {
  font-family: var(--font-h);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 28px;
}
.h1-line1 {
  display: block;
  font-size: clamp(3.5rem, 10vw, 8rem);
  color: var(--text-soft);
  animation: fade-up 0.6s 0.08s ease both;
}
.h1-line2 {
  display: block;
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--lime);
  animation: fade-up 0.6s 0.16s ease both;
}
.h1-dot { color: var(--text-muted); }
.h1-line3 {
  display: block;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--text-muted);
  letter-spacing: -2px;
  animation: fade-up 0.6s 0.24s ease both;
}

.hero-p {
  max-width: 540px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fade-up 0.6s 0.32s ease both;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 56px;
  animation: fade-up 0.6s 0.4s ease both;
}

.hero-stats {
  display: flex; align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 6px;
  animation: fade-up 0.6s 0.48s ease both;
}
.hstat {
  display: flex; flex-direction: column; align-items: center;
  padding: 4px 28px;
}
.hstat-n {
  font-family: var(--font-h);
  font-size: 1.45rem; font-weight: 800;
  color: var(--lime); line-height: 1;
}
.hstat-l {
  font-size: 0.68rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 3px;
}
.hstat-div { width: 1px; height: 34px; background: var(--border); }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
  animation: fade-up 0.7s 1.1s ease both;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%      { opacity: 0.4; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: var(--lime);
  color: #0a0c10;
  font-family: var(--font-h);
  font-size: 0.9rem; font-weight: 700;
  border-radius: 50px;
  transition: transform var(--t), box-shadow var(--t), opacity var(--t);
  box-shadow: 0 4px 28px rgba(163,230,53,0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(163,230,53,0.45); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-family: var(--font-h);
  font-size: 0.9rem; font-weight: 700;
  border-radius: 50px;
  transition: border-color var(--t), color var(--t), transform var(--t);
}
.btn-ghost:hover { border-color: var(--lime-border); color: var(--lime); transform: translateY(-2px); }

/* ── Sec labels ──────────────────────────────────────────────── */
.sec-label {
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--lime); margin-bottom: 10px;
}

/* ── Pillars ─────────────────────────────────────────────────── */
.pillars {
  position: relative; z-index: 1;
  padding: 110px 5%;
  background: var(--bg2);
}
.pillars-label {
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--lime); margin-bottom: 12px;
}
.pillars-h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 56px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pillar-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px 30px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  cursor: pointer;
}

/* shimmer line on top */
.pillar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--lime) 50%, transparent 100%);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.pillar-card:hover::before { transform: scaleX(1); }

/* radial bg */
.pillar-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top left, var(--lime-dim) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--t);
}
.pillar-card:hover { border-color: var(--lime-border); transform: translateY(-5px); box-shadow: 0 16px 56px rgba(163,230,53,0.09); }
.pillar-card:hover::after { opacity: 1; }

.pillar-featured {
  border-color: var(--lime-border);
  background: linear-gradient(145deg, var(--surface) 0%, rgba(163,230,53,0.06) 100%);
}
.pillar-featured::after { opacity: 0.6; }

.pillar-num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--font-h);
  font-size: 4rem; font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1; pointer-events: none; user-select: none;
  transition: color var(--t);
}
.pillar-card:hover .pillar-num { color: rgba(163,230,53,0.06); }

.pillar-icon-wrap {
  width: 52px; height: 52px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  position: relative; z-index: 1;
  flex-shrink: 0;
  transition: background var(--t), border-color var(--t);
}
.pillar-card:hover .pillar-icon-wrap { background: var(--lime-glow); border-color: var(--lime-border); }

.pillar-card h3 {
  font-family: var(--font-h);
  font-size: 1.25rem; font-weight: 700;
  position: relative; z-index: 1;
}
.pillar-card p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.7; flex: 1;
  position: relative; z-index: 1;
}

.pillar-tags {
  display: flex; flex-wrap: wrap; gap: 7px;
  position: relative; z-index: 1;
}
.pillar-tags span {
  padding: 3px 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem; color: var(--text-muted);
}

.pillar-cta {
  font-family: var(--font-h);
  font-size: 0.88rem; font-weight: 700;
  color: var(--lime);
  display: flex; align-items: center; gap: 6px;
  position: relative; z-index: 1;
  transition: gap var(--t);
}
.pillar-card:hover .pillar-cta { gap: 12px; }
.arrow { display: inline-block; transition: transform var(--t); }
.pillar-card:hover .arrow { transform: translateX(3px); }

/* ── Branches ────────────────────────────────────────────────── */
.branches-sec {
  position: relative; z-index: 1;
  padding: 110px 5%;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px; align-items: start;
}
.branches-left h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 14px; margin-top: 8px;
}
.branches-left p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }

.branches-right {
  display: flex; flex-direction: column; gap: 10px;
}
.bpill {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  position: relative; overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.bpill::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.bpill:hover { border-color: var(--lime-border); transform: translateX(5px); }
.bpill:hover::before { transform: scaleY(1); }
.bpill-icon {
  font-size: 1.25rem; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3); border-radius: 10px;
  border: 1px solid var(--border); flex-shrink: 0;
}
.bpill-name {
  flex: 1;
  font-family: var(--font-h);
  font-size: 0.9rem; font-weight: 700;
  display: flex; flex-direction: column; gap: 2px;
}
.bpill-name em { font-style: normal; font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-b); font-weight: 400; }
.bpill-arr {
  color: var(--text-muted); font-size: 1rem;
  transition: transform var(--t), color var(--t);
}
.bpill:hover .bpill-arr { transform: translateX(4px); color: var(--lime); }

/* ── YouTube Band ────────────────────────────────────────────── */
.yt-band {
  position: relative; z-index: 1;
  background: var(--lime);
  padding: 60px 5%;
  overflow: hidden;
}
.yt-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.yt-band-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
  position: relative; z-index: 1;
}
.yt-big {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  color: #0a0c10;
  letter-spacing: -4px; line-height: 1;
}
.yt-sub-text {
  font-family: var(--font-h);
  font-size: 1rem; font-weight: 700;
  color: rgba(10,12,16,0.65);
  margin-top: 4px;
}
.yt-band-right {
  max-width: 420px;
}
.yt-band-right p {
  color: rgba(10,12,16,0.75);
  font-size: 1rem; line-height: 1.65;
  margin-bottom: 20px;
}
.yt-cta {
  display: inline-flex; align-items: center; gap: 9px;
  background: #0a0c10;
  color: var(--lime);
  font-family: var(--font-h);
  font-size: 0.9rem; font-weight: 700;
  padding: 13px 28px; border-radius: 50px;
  transition: transform var(--t), opacity var(--t);
}
.yt-cta:hover { transform: scale(1.04); opacity: 0.9; }

/* ── Charity ─────────────────────────────────────────────────── */
.charity-sec {
  position: relative; z-index: 1;
  padding: 110px 5%;
  background: var(--bg2);
}
.charity-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.charity-text h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; letter-spacing: -2px;
  line-height: 1.05; margin-bottom: 16px; margin-top: 8px;
}
.charity-text p {
  color: var(--text-muted); font-size: 0.95rem;
  line-height: 1.75; margin-bottom: 28px;
}
.donate-stat {
  display: inline-flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius);
  padding: 14px 28px;
  margin-bottom: 28px;
}
.donate-label {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-muted);
}
.donate-amount {
  font-family: var(--font-h);
  font-size: 2.2rem; font-weight: 800;
  color: var(--lime); line-height: 1.2;
}

.charity-thumb {
  display: block;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t);
}
.charity-thumb:hover { transform: scale(1.015); }
.charity-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--surface); display: block; }
.charity-play {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: #fff;
  font-family: var(--font-h); font-size: 0.88rem; font-weight: 700;
  transition: background var(--t);
}
.charity-thumb:hover .charity-play { background: rgba(0,0,0,0.38); }
.play-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.38);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.charity-thumb:hover .play-ring { background: rgba(255,255,255,0.25); }

/* ── About ───────────────────────────────────────────────────── */
.about-sec {
  position: relative; z-index: 1;
  padding: 110px 5%;
  background: var(--bg);
}
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 64px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--radius-xl) + 6px);
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
}
.about-img-wrap img {
  position: relative; z-index: 1;
  width: 100%; border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  object-fit: cover; aspect-ratio: 1;
}
.about-img-badge {
  position: absolute; z-index: 2;
  bottom: -10px; right: -10px;
  background: var(--lime);
  color: #0a0c10;
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 800;
  line-height: 1.3;
  padding: 10px 16px;
  border-radius: var(--radius);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-copy h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 16px; margin-top: 8px;
}
.about-copy p {
  color: var(--text-muted); font-size: 0.95rem;
  line-height: 1.75; margin-bottom: 16px;
}
.about-note {
  font-size: 0.78rem; font-style: italic;
  color: var(--text-muted); margin-top: 20px !important;
}
.about-socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.soc-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-soft);
  transition: border-color var(--t), color var(--t);
}
.soc-btn:hover { border-color: var(--lime-border); color: var(--lime); }
.soc-btn.yt { background: rgba(255,0,0,0.08); border-color: rgba(255,0,0,0.2); color: #f87171; }
.soc-btn.yt:hover { background: rgba(255,0,0,0.15); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  position: relative; z-index: 1;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px; padding: 64px 5% 52px;
}
.footer-logo {
  font-family: var(--font-h);
  font-size: 1.2rem; font-weight: 800;
  margin-bottom: 12px;
}
.footer-logo em { color: var(--lime); font-style: normal; }
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 18px; }
.footer-yt-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.2);
  border-radius: 50px;
  color: #f87171;
  font-size: 0.82rem; font-weight: 600;
  transition: background var(--t);
}
.footer-yt-link:hover { background: rgba(255,0,0,0.2); }
.footer-col h5 {
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 0.875rem;
  color: var(--text-soft); margin-bottom: 10px;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 5%;
  text-align: center;
  font-size: 0.78rem; color: var(--text-muted);
}

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js-on .reveal {
  opacity: 0;
  transform: translateY(32px);
}
.js-on .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Media Queries ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .branches-sec { grid-template-columns: 1fr; gap: 40px; }
  .branches-left { max-width: 520px; }
}

@media (max-width: 860px) {
  .charity-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-inner   { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 280px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .yt-band-inner { flex-direction: column; text-align: center; }
  .yt-band-right { max-width: 100%; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: rgba(10,12,16,0.98); border-bottom: 1px solid var(--border); padding: 14px 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .nav-yt { display: none; }

  .pillars-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; border-radius: 16px; }
  .hstat-div { width: 70%; height: 1px; }
  .hstat { padding: 10px 20px; }
  .hero-h1 { letter-spacing: -2px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .pillars, .branches-sec, .charity-sec, .about-sec { padding: 72px 4%; }
}