/* ===========================
   PURE SUPPORT — STYLESHEET
   Light & Dark Mode
   =========================== */

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #f8f6ff;
  --bg-alt: #eeeaf8;
  --card: #ffffff;
  --text: #1a1040;
  --text-muted: #5a5278;
  --accent: #6d28d9;
  --accent-light: #8b5cf6;
  --accent2: #0d9488;
  --accent2-light: #14b8a6;
  --border: #ddd9f0;
  --shadow: 0 4px 30px rgba(109, 40, 217, 0.08);
  --shadow-hover: 0 12px 40px rgba(109, 40, 217, 0.18);
}

[data-theme="dark"] {
  --bg: #0c0a1a;
  --bg-alt: #150f28;
  --card: #1a1535;
  --text: #e8e4f8;
  --text-muted: #9d97c0;
  --accent: #a78bfa;
  --accent-light: #c4b5fd;
  --accent2: #2dd4bf;
  --accent2-light: #5eead4;
  --border: #2a2448;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 12px 40px rgba(167, 139, 250, 0.2);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background 0.35s ease, color 0.35s ease;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
header.scrolled {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.3);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  padding: 0 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}
.logo-img {
  height: 48px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative;
  z-index: 1;
}
.logo-img:hover { transform: scale(1.08); }
.logo-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.7);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: #fff; opacity: 0.85; }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.theme-toggle {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-family: inherit;
  font-weight: 500;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}
.theme-toggle:hover { background: rgba(255,255,255,0.25); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10, 6, 30, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    align-items: flex-start;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 2rem 80px;
}
.hero-gradient {
  background: linear-gradient(135deg, #130428 0%, #2a0f5c 40%, #0a3d39 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #fff;
}
.hero-content h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #c4b5fd, #5eead4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.12rem;
  opacity: 0.88;
  max-width: 600px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}
.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
}
.blob-1 { width: 700px; height: 700px; background: #7c3aed; top: -250px; left: -150px; }
.blob-2 { width: 500px; height: 500px; background: #0d9488; bottom: -150px; right: -100px; }
.blob-3 { width: 300px; height: 300px; background: #ec4899; top: 50%; left: 60%; }

/* Page hero (shorter) */
.page-hero {
  min-height: 50vh;
  padding: 130px 2rem 70px;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.97rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(109,40,217,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(109,40,217,0.5);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--accent);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
  color: var(--accent);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-2px);
}
.btn-accent2 {
  background: linear-gradient(135deg, var(--accent2), var(--accent2-light));
  color: #fff;
}
.btn-accent2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,148,136,0.4);
  color: #fff;
}
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== SECTIONS ===== */
section { padding: 90px 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1.1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 660px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.bg-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--card);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ===== FOCUS LIST ===== */
.focus-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.focus-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 1.4rem;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.5;
  transition: border-color 0.2s, transform 0.2s;
}
.focus-list li:hover {
  border-color: var(--accent);
  transform: translateX(3px);
}
.focus-list li::before {
  content: '✦';
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 0.18rem;
  flex-shrink: 0;
}

/* ===== VALUES LIST ===== */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--card);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
  color: var(--text-muted);
  font-size: 0.93rem;
  transition: border-color 0.2s;
}
.values-list li:hover { border-left-color: var(--accent2); }

/* ===== GRADIENT BANNER ===== */
.gradient-banner {
  background: linear-gradient(135deg, #130428, #2a0f5c, #0a3d39);
  color: #fff;
  text-align: center;
  padding: 90px 2rem;
}
.gradient-banner .section-inner {
  max-width: 700px;
}
.gradient-banner h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.gradient-banner p {
  opacity: 0.85;
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

/* ===== MEMBERSHIP ===== */
.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) { .membership-grid { grid-template-columns: 1fr; } }

.eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.eligibility-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--card);
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.eligibility-list li::before {
  content: '✓';
  color: var(--accent2);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.cta-box {
  background: linear-gradient(135deg, rgba(109,40,217,0.08), rgba(13,148,136,0.08));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: sticky;
  top: 90px;
}
.cta-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}
.cta-box p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ===== RESOURCES ===== */
.resource-category { margin-bottom: 3.5rem; }
.resource-category h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.resource-category h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.hotline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
}
.hotline-card {
  background: var(--card);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}
.hotline-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.hotline-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.hotline-card .number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}
.hotline-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.4;
}
.resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.65rem;
}
.resource-link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.2rem;
  background: var(--card);
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all 0.2s;
}
.resource-link-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(3px);
}
.resource-link-item .link-icon { font-size: 1rem; flex-shrink: 0; }
.urgent-banner {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(234, 88, 12, 0.1));
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.urgent-banner .urgent-icon { font-size: 2rem; flex-shrink: 0; }
.urgent-banner h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.urgent-banner p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ===== ABOUT ===== */
.mission-block {
  background: var(--card);
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.mission-block h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.mission-block p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.board-card {
  background: var(--card);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.board-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.25rem;
}
.board-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.board-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}
.board-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.board-card blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ===== DONATE ===== */
.donate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.donate-reason {
  background: var(--card);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.donate-reason:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.donate-reason .reason-icon { font-size: 2rem; margin-bottom: 0.9rem; }
.donate-reason h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.donate-reason p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.donate-breakdown {
  background: var(--card);
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.donate-breakdown h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.breakdown-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.breakdown-item:last-child { border-bottom: none; }
.breakdown-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.breakdown-item strong { display: block; color: var(--text); margin-bottom: 0.2rem; font-size: 0.95rem; }
.breakdown-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
.donate-cta-box {
  text-align: center;
  background: linear-gradient(135deg, #130428, #2a0f5c, #0a3d39);
  border-radius: 24px;
  padding: 3.5rem 2rem;
  color: #fff;
}
.donate-cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.donate-cta-box p {
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem 0;
}
.stat {
  text-align: center;
}
.stat .num {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===== FOOTER ===== */
footer {
  background: #0a0618;
  color: rgba(255,255,255,0.65);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 60px 1.25rem; }
}
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.95); }
.footer-col p { font-size: 0.88rem; margin-bottom: 0.4rem; }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ===== HEART PARTICLES ===== */
.heart-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  user-select: none;
  line-height: 1;
  will-change: transform, opacity;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ===== TWO COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
.two-col-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.two-col-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
