/* =========================================================
   VARIABLES  (Blue theme — #2668D2)
   ========================================================= */
:root {
  --pri: #2668d2;
  --pri-dk: #1a4fa8;
  --pri-deep: #142f6e;
  --pri-lt: #4a8fe8;
  --pri-pale: #eff6ff;
  --pri-bdr: #bfdbfe;
  --pri-xlt: #dbeafe;
  --accent: #f0b429;
  --ok: #10b981;
  --err: #e74c3c;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", Arial, sans-serif;
  background: #f0ede7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
input,
button,
textarea,
select {
  font-family: inherit;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-thumb {
  background: #c5d8f8;
  border-radius: 2px;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.ac-nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(38, 104, 210, 0.12);
  box-shadow: 0 1px 12px rgba(38, 104, 210, 0.08);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1c1c1e;
  flex-shrink: 0;
  margin-right: 6px;
}
.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri-deep), var(--pri));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(38, 104, 210, 0.3);
}
.nav-brand span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-links-d {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--pri);
  background: var(--pri-pale);
}
.nav-cta {
  margin-left: auto;
  padding: 9px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--pri-dk), var(--pri));
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(38, 104, 210, 0.3);
  transition: all 0.25s;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--pri-deep), var(--pri-dk));
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(38, 104, 210, 0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #e0eaff;
  cursor: pointer;
  padding: 0 9px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.hamburger:hover {
  background: var(--pri-pale);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pri-dk);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
  pointer-events: none;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}
.nav-drawer {
  background: #fff;
  border-bottom: 1px solid #e0eaff;
  box-shadow: 0 8px 32px rgba(38, 104, 210, 0.1);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-drawer.open {
  max-height: 380px;
}
.drawer-link {
  display: block;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid #f0f4ff;
  transition:
    background 0.15s,
    color 0.15s;
}
.drawer-link:hover,
.drawer-link.active {
  background: var(--pri-pale);
  color: var(--pri);
}
.drawer-divider {
  height: 1px;
  background: #e0eaff;
  margin: 6px 0;
}
.drawer-donate {
  display: block;
  width: calc(100% - 48px);
  margin: 4px 24px 16px;
  padding: 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pri-dk), var(--pri));
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.drawer-donate:hover {
  background: linear-gradient(135deg, var(--pri-deep), var(--pri-dk));
}

/* =========================================================
   SPA PAGE TRANSITIONS
   ========================================================= */
.page-section {
  display: none;
}
.page-section.is-active {
  display: block;
  animation: pgIn 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-section.is-leaving {
  display: block;
  animation: pgOut 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}
@keyframes pgIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pgOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-14px);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.3s;
}
.reveal-d4 {
  transition-delay: 0.4s;
}

/* =========================================================
   HOME PAGE
   ========================================================= */
.page {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 80px;
}
.page-home-wrap {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 80px;
  background: linear-gradient(160deg, #f7f4ef, #eceaf8 60%, #e4ddf5);
}

/* Profile Card */
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(38, 104, 210, 0.12);
  width: 100%;
  max-width: 420px;
  overflow: hidden;
}
.cover {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--pri-deep),
    var(--pri-dk) 50%,
    var(--pri)
  );
}
.cover-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  mix-blend-mode: multiply;
}
.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.04),
    rgba(0, 0, 0, 0.22)
  );
}
.cover-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 50px;
}
.avatar-wrap {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
}
.avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: linear-gradient(135deg, var(--pri-deep), var(--pri));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(38, 104, 210, 0.2);
  overflow: hidden;
}
.verified {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: #1877f2;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
  font-weight: 900;
}
.card-body {
  padding: 52px 28px 28px;
  text-align: center;
}
.org-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1c1c1e;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.trust-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-bottom: 16px;
}
.tline {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--pri-dk);
}
.social-btn:hover {
  background: var(--pri-xlt);
  transform: scale(1.08);
}
.card-divider {
  height: 1px;
  background: #f0ede7;
  margin-bottom: 18px;
}
.btn-campaign {
  width: 100%;
  padding: 15px 18px;
  background: linear-gradient(135deg, var(--pri-dk), var(--pri));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(38, 104, 210, 0.28);
}
.btn-campaign:hover {
  background: linear-gradient(135deg, var(--pri-deep), var(--pri-dk));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(38, 104, 210, 0.38);
}
.camp-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.camp-arrow {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pri);
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.btn-tier {
  width: 100%;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid #e0eaff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  transition: all 0.2s;
  text-align: left;
}
.btn-tier:hover {
  border-color: var(--pri);
  background: var(--pri-pale);
  color: var(--pri-dk);
  transform: translateX(2px);
}
.btn-tier:hover .t-arrow {
  background: var(--pri);
  color: #fff;
}
.tier-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.t-label {
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1e;
}
.t-sub {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 1px;
}
.t-arrow {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--pri-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.impact-strip {
  width: 100%;
  max-width: 420px;
  margin-top: 28px;
}
.impact-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.impact-cell {
  border-radius: 12px;
  height: 90px;
  background: var(--pri-xlt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.impact-label {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

/* =========================================================
   SHARED SECTION STYLES
   ========================================================= */
.sec {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}
.sec-head {
  text-align: center;
  margin-bottom: 48px;
}
.sec-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pri);
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 12px;
}
.sec-h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #1c1c1e;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.sec-body {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.75;
  max-width: 540px;
}
.text-center {
  text-align: center;
}

/* =========================================================
   PAGE HEROES (About, Transparency)
   ========================================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  background: linear-gradient(
    150deg,
    var(--pri-deep),
    var(--pri-dk) 50%,
    var(--pri)
  );
}
.about-hero {
  background: linear-gradient(
    150deg,
    #0a1e4f,
    var(--pri-deep) 40%,
    #1a4fa8 75%,
    #2668d2
  );
}
.trans-hero {
  background: linear-gradient(150deg, #0f1e5c, #1a2f8a 45%, #2040b8);
}
.contact-hero-wrap {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 70px 48px;
  background: linear-gradient(
    150deg,
    var(--pri-deep),
    var(--pri-dk) 55%,
    var(--pri)
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}
.hero-h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero-hl {
  background: linear-gradient(90deg, #60a5fa, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 30px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hp {
  padding: 14px 28px;
  border-radius: 50px;
  background: #fff;
  color: var(--pri-dk);
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}
.btn-hp:hover {
  background: var(--pri-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.25);
}
.btn-hs {
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
}
.btn-hs:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Floating shapes */
.pg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.pg-shape,
.pg-shape-ring {
  position: absolute;
  border-radius: 50%;
}
.pg-shape.s1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent 70%);
  top: -140px;
  right: -80px;
  animation: shapeFloat 8s ease-in-out infinite;
}
.pg-shape.s2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07),
    transparent 70%
  );
  bottom: 30px;
  left: -50px;
  animation: shapeFloat 11s ease-in-out infinite reverse;
}
.pg-shape.s4 {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.06);
  top: 50%;
  left: 60%;
  border-radius: 24px;
  transform: rotate(28deg);
  animation: shapeFloat 13s ease-in-out infinite;
}
.pg-shape-ring.s3 {
  width: 280px;
  height: 280px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  animation: shapeFloat 15s ease-in-out infinite reverse;
}
@keyframes shapeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-22px) rotate(6deg);
  }
}
.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-s1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
  top: -100px;
  left: -60px;
}
.cta-s2 {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  right: -50px;
  bottom: -60px;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

/* Mission Section */
.mission-sec {
  display: flex;
  align-items: center;
  gap: 64px;
}
.mission-text {
  flex: 1;
}
.mission-text .sec-eyebrow {
  display: inline-block;
}
.mission-text .sec-h2 {
  margin-bottom: 16px;
}
.mission-list {
  margin-top: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mission-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #374151;
  font-weight: 500;
}
.ml-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pri-pale);
  border: 1.5px solid var(--pri-bdr);
  color: var(--pri);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Orbital Animation */
.orbit-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--pri-deep), var(--pri));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 2;
  box-shadow:
    0 0 0 14px rgba(38, 104, 210, 0.08),
    0 0 0 28px rgba(38, 104, 210, 0.04);
}
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(38, 104, 210, 0.25);
  transform-origin: 50% 50%;
}
.orbit-planet {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(38, 104, 210, 0.15);
}
.or1 {
  width: 140px;
  height: 140px;
  margin: -70px 0 0 -70px;
}
.or2 {
  width: 196px;
  height: 196px;
  margin: -98px 0 0 -98px;
}
.or3 {
  width: 260px;
  height: 260px;
  margin: -130px 0 0 -130px;
}
.op1 {
  animation: orbit1 7s linear infinite;
}
.op2 {
  animation: orbit2 13s linear infinite;
}
.op3 {
  animation: orbit3 19s linear infinite;
}
@keyframes orbit1 {
  from {
    transform: rotate(0deg) translateX(70px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(70px) rotate(-360deg);
  }
}
@keyframes orbit2 {
  from {
    transform: rotate(120deg) translateX(98px) rotate(-120deg);
  }
  to {
    transform: rotate(480deg) translateX(98px) rotate(-480deg);
  }
}
@keyframes orbit3 {
  from {
    transform: rotate(240deg) translateX(130px) rotate(-240deg);
  }
  to {
    transform: rotate(600deg) translateX(130px) rotate(-600deg);
  }
}

/* Values Grid */
.values-sec {
  background: #f7f8ff;
  padding-top: 72px;
  padding-bottom: 72px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.tilt-card {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.v-card {
  background: #fff;
  border: 1px solid #e0eaff;
  border-radius: 18px;
  padding: 28px;
  cursor: default;
}
.v-card:hover {
  box-shadow: 0 12px 40px rgba(38, 104, 210, 0.15);
}
.vc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.vc-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 10px;
}
.vc-body {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

/* Timeline */
.timeline-sec {
  background: #fff;
}
.timeline {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tl-item {
  display: flex;
  gap: 24px;
}
.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 56px;
  flex-shrink: 0;
}
.tl-yr {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri-dk), var(--pri));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(38, 104, 210, 0.28);
}
.tl-vline {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--pri-bdr), transparent);
  margin: 8px 0;
  min-height: 32px;
}
.tl-vline.last {
  background: transparent;
}
.tl-card {
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 20px;
  flex: 1;
}
.tl-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 6px;
}
.tl-body {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
}

/* CTA Band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--pri-deep),
    var(--pri-dk) 50%,
    var(--pri)
  );
  padding: 72px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta-h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  line-height: 1.7;
}

/* =========================================================
   IMPACT PAGE
   ========================================================= */
.impact-hero-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #050d2e, #0a1a55 50%, #0f2580);
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 80px 32px 72px;
}
.ihd-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(38, 104, 210, 0.25),
    transparent 60%
  );
  pointer-events: none;
}
.ihd-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(4px);
  transition: background 0.25s;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.stat-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Campaign Cards */
.campaigns-sec {
  background: #fff;
}
.camp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.camp-card {
  background: #fff;
  border: 1px solid #e0eaff;
  border-radius: 18px;
  padding: 26px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.camp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(38, 104, 210, 0.14);
}
.camp-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.camp-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 10px;
}
.camp-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 18px;
}
.camp-progress-wrap {
  height: 8px;
  background: #e0eaff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.camp-progress-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--pri-dk), var(--pri));
  transition: width 1.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.camp-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.camp-raised {
  font-size: 13px;
  font-weight: 600;
  color: #1c1c1e;
}
.camp-pct-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--pri);
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 50px;
  padding: 2px 10px;
}
.camp-goal-txt {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 16px;
}
.camp-cta {
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  background: var(--pri-pale);
  border: 1.5px solid var(--pri-bdr);
  color: var(--pri);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.camp-cta:hover {
  background: var(--pri);
  color: #fff;
  border-color: var(--pri);
}

/* Annual Goals */
.goals-sec {
  background: var(--pri-pale);
}
.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.goal-item {
  background: #fff;
  border: 1px solid var(--pri-bdr);
  border-radius: 14px;
  padding: 20px 22px;
}
.goal-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.goal-lbl {
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1e;
}
.goal-pct {
  font-size: 14px;
  font-weight: 700;
  color: var(--pri);
}
.alloc-bar-wrap {
  height: 10px;
  background: #e0eaff;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}
.alloc-bar-wrap.large {
  height: 14px;
  border-radius: 7px;
}
.alloc-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pri-dk), var(--pri));
  transition: width 1.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.goal-sub {
  font-size: 12px;
  color: #9ca3af;
}

/* Global Reach */
.reach-sec {
  background: #fff;
}
.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}
.reach-item {
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 14px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.reach-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(38, 104, 210, 0.12);
}
.reach-flag {
  font-size: 30px;
}

/* =========================================================
   TRANSPARENCY PAGE
   ========================================================= */

/* Fund Allocation */
.alloc-sec {
  background: #fff;
}
.alloc-rows {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.alloc-row {
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 16px;
  padding: 22px 24px;
}
.alloc-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.alloc-label {
  font-size: 15px;
  font-weight: 600;
  color: #1c1c1e;
}
.alloc-pct-txt {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--pri-dk);
}
.alloc-note {
  font-size: 13px;
  color: #6b7280;
  margin-top: 8px;
  line-height: 1.6;
}

/* Tx Feed + Wallets */
.tx-sec {
  background: #f7f8ff;
}
.tx-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.live-feed-panel {
  background: #fff;
  border: 1px solid #e0eaff;
  border-radius: 18px;
  overflow: hidden;
}
.live-feed-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid #e0eaff;
  font-size: 14px;
  font-weight: 700;
  color: #1c1c1e;
}
.live-dot {
  width: 9px;
  height: 9px;
  background: var(--ok);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}
.live-feed-list {
  padding: 8px 0;
}
.tx-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f4ff;
}
.tx-item:last-child {
  border-bottom: none;
}
.tx-coin {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.tx-coin.btc {
  background: #f7931a18;
  color: #f7931a;
}
.tx-coin.eth {
  background: #627eea18;
  color: #627eea;
}
.tx-coin.usdt {
  background: #26a17b18;
  color: #26a17b;
}
.tx-coin.sol {
  background: #9945ff18;
  color: #9945ff;
}
.tx-coin.bnb {
  background: #f3ba2f18;
  color: #b08800;
}
.tx-amt {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1e;
}
.tx-time {
  font-size: 12px;
  color: #9ca3af;
}
.wallet-panel {
  background: #fff;
  border: 1px solid #e0eaff;
  border-radius: 18px;
  padding: 22px;
}
.wallet-panel-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 18px;
}
.wallet-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wallet-row {
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wallet-sym {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.wallet-addr-cell {
  flex: 1;
  font-size: 11px;
  color: #374151;
  font-family: "Courier New", monospace;
  word-break: break-all;
  line-height: 1.5;
}
.wallet-link {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--pri);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.wallet-link:hover {
  color: var(--pri-dk);
}

/* Documents */
.docs-sec {
  background: #fff;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.doc-card {
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(38, 104, 210, 0.15);
}
.doc-icon {
  font-size: 40px;
  margin-bottom: 14px;
}
.doc-title {
  font-size: 14px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 8px;
  line-height: 1.4;
}
.doc-sub {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.doc-dl {
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--pri);
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}
.doc-dl:hover {
  background: var(--pri-dk);
  transform: translateY(-1px);
}

/* Audit Band */
.audit-band {
  background: linear-gradient(135deg, var(--pri-deep), var(--pri-dk));
  padding: 48px 32px;
  display: flex;
  justify-content: center;
}
.audit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 900px;
}
.audit-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 16px 22px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.audit-badge:hover {
  background: rgba(255, 255, 255, 0.18);
}
.ab-icon {
  font-size: 28px;
}
.ab-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.ab-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-sec {
  background: #fff;
}
.contact-grid-2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 20px;
  padding: 32px;
}
.cf-heading {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 24px;
}
.cf-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.cf-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #6b7280;
}
.cf-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--pri-bdr);
  border-radius: 10px;
  font-size: 14px;
  color: #1c1c1e;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.cf-input:focus {
  border-color: var(--pri);
}
.cf-input::placeholder {
  color: #c5c0b8;
}
.cf-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--pri-bdr);
  border-radius: 10px;
  font-size: 14px;
  color: #1c1c1e;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  min-height: 120px;
}
.cf-textarea:focus {
  border-color: var(--pri);
}
.cf-textarea::placeholder {
  color: #c5c0b8;
}
.cf-err {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--err);
  margin-bottom: 14px;
}
.cf-success-state {
  text-align: center;
  padding: 32px 16px;
}
.cf-suc-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 10px;
}
.cf-suc-body {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.65;
}

/* Info Cards */
.info-cards-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-card {
  background: #fff;
  border: 1px solid #e0eaff;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.info-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(38, 104, 210, 0.1);
}
.ic-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ic-title {
  font-size: 13px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 4px;
}
.ic-body {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* FAQ */
.faq-sec {
  background: var(--pri-pale);
}
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--pri-bdr);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.faq-item:hover {
  border-color: var(--pri);
  box-shadow: 0 4px 16px rgba(38, 104, 210, 0.1);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #1c1c1e;
  user-select: none;
}
.faq-arrow {
  color: var(--pri);
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease;
}
.faq-ans p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.75;
}
.faq-ans.open {
  opacity: 1;
}

/* =========================================================
   MODALS (unchanged, recolored to blue)
   ========================================================= */
#modal-root {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 60, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#modal-root.active {
  display: flex;
  animation: mfade 0.25s ease;
}
@keyframes mfade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fal-modal,
.tier-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 780px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  box-shadow: 0 24px 80px rgba(10, 20, 80, 0.25);
  animation: msli 0.38s cubic-bezier(0.34, 1.5, 0.64, 1);
}
@keyframes msli {
  from {
    transform: translateY(22px) scale(0.97);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.story {
  width: 300px;
  flex-shrink: 0;
  background: linear-gradient(
    155deg,
    var(--pri-deep),
    var(--pri-dk) 45%,
    var(--pri)
  );
  padding: 28px 26px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: none;
}
.story::-webkit-scrollbar {
  display: none;
}
.story-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  flex-shrink: 0;
}
.story-eyebrow {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.story-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.story-body-txt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}
.story-pts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.story-pt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.story-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 1px;
}
.story-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.chip {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 5px 9px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.story-ein {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}
.tier-story {
  width: 310px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-right: 1px solid #e0eaff;
  scrollbar-width: none;
}
.tier-story::-webkit-scrollbar {
  display: none;
}
.tier-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.collage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.65)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  text-align: center;
}
.col-sm {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  margin-bottom: 3px;
}
.col-lg {
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.tier-story-body {
  padding: 18px 20px 22px;
  flex: 1;
}
.tier-org-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.tier-org-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pri-deep), var(--pri));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.tier-camp-name {
  font-size: 14px;
  font-weight: 700;
  color: #1c1c1e;
  line-height: 1.3;
}
.tier-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 10px;
}
.tier-ein {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.5;
  margin-bottom: 12px;
}
.tier-pt {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 7px;
}
.tier-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pay-panel {
  flex: 1;
  padding: 26px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
  min-width: 0;
}
.pay-panel::-webkit-scrollbar {
  display: none;
}
.pay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.secure-lbl {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #374151;
  font-weight: 700;
}
.close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5f3ef;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  line-height: 1;
}
.close-btn:hover {
  background: #ede9e2;
  color: #374151;
}
.back-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color 0.2s;
}
.back-btn:hover {
  color: #374151;
}
.stepbar {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.stepbar-dot {
  height: 4px;
  border-radius: 2px;
  transition: all 0.35s ease;
}
.amt-pill {
  background: linear-gradient(135deg, var(--pri-pale), var(--pri-xlt));
  border: 1px solid var(--pri-bdr);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}
.amt-pill-lbl {
  font-size: 10px;
  color: #6b7280;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.amt-pill-val {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--pri-deep);
}
.amt-pill-meals {
  font-size: 13px;
  font-weight: 600;
  color: var(--pri);
}
.freq-row {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.freq-btn {
  flex: 1;
  padding: 9px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid #e0eaff;
  background: #fff;
  color: #9ca3af;
}
.freq-btn.act {
  border-color: var(--pri);
  color: var(--pri-dk);
  background: var(--pri-pale);
}
.freq-btn.freq-m.act-m {
  background: #fef3f2;
  border-color: var(--err);
  color: #c0392b;
}
.amt-list-item {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #e0eaff;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  margin-bottom: 7px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all 0.2s;
}
.amt-list-item.act,
.amt-list-item:hover {
  border-color: var(--pri);
  background: var(--pri-pale);
}
.ali-price {
  font-size: 15px;
  font-weight: 700;
  color: #1c1c1e;
}
.ali-mo {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
}
.ali-label {
  font-size: 12px;
  color: #9ca3af;
}
.amt-list-item.act .ali-price {
  color: var(--pri-dk);
}
.amt-list-item.act .ali-label {
  color: var(--pri);
}
.amt-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.g3-btn {
  padding: 11px 6px;
  border-radius: 10px;
  border: 1.5px solid #e0eaff;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}
.g3-btn.act,
.g3-btn:hover {
  border-color: var(--pri);
  background: var(--pri-pale);
  color: var(--pri-dk);
}
.pinput-wrap {
  position: relative;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.p-pfx {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 700;
  color: #c5d8f8;
  pointer-events: none;
}
.p-input {
  width: 100%;
  padding: 13px 13px 13px 28px;
  border: 1.5px solid #e0eaff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #1c1c1e;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.p-input:focus {
  border-color: var(--pri);
}
.p-input::placeholder {
  color: #c5d8f8;
  font-weight: 400;
}
.impact-hint {
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--pri-dk);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-donate {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pri-dk), var(--pri));
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(38, 104, 210, 0.3);
  transition: all 0.25s;
  flex-shrink: 0;
}
.btn-donate:hover {
  background: linear-gradient(135deg, var(--pri-deep), var(--pri-dk));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(38, 104, 210, 0.4);
}
.btn-donate:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.spin-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.faq-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #f0ede7;
  margin-top: 14px;
  flex-shrink: 0;
}
.faq-a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 11px;
  transition: color 0.2s;
}
.faq-a:hover {
  color: #374151;
}
.upsell-intro {
  margin-bottom: 20px;
}
.u-eyebrow {
  font-size: 10px;
  color: #9ca3af;
  font-weight: 700;
  letter-spacing: 0.09em;
  margin-bottom: 7px;
}
.u-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #1c1c1e;
  line-height: 1.25;
  margin-bottom: 8px;
}
.u-body {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
}
.upsell-card {
  border: 1.5px solid #e0eaff;
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.25s;
  margin-bottom: 10px;
  text-align: left;
  background: #fff;
  width: 100%;
}
.upsell-card:hover {
  border-color: var(--pri);
  background: var(--pri-pale);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(38, 104, 210, 0.12);
}
.upsell-card.best {
  border-color: var(--pri);
  background: var(--pri-pale);
}
.best-badge {
  display: inline-block;
  background: var(--pri);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 50px;
  margin-bottom: 7px;
}
.u-amt {
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--pri-dk);
  margin-bottom: 4px;
}
.u-sub {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}
.upsell-skip {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1.5px solid #e0eaff;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}
.upsell-skip:hover {
  border-color: #9ca3af;
  background: #f9f8f6;
}
.section-title {
  font-size: 15px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.f-label {
  font-size: 11px;
  color: #6b7280;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 5px;
}
.req {
  color: var(--err);
}
.opt {
  color: #c5c0b8;
  font-weight: 400;
}
.f-input {
  width: 100%;
  padding: 12px 13px;
  border: 1.5px solid #e0eaff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1c1c1e;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.f-input:focus {
  border-color: var(--pri);
}
.f-input::placeholder {
  color: #c5d8f8;
  font-weight: 400;
}
.f-input.err {
  border-color: var(--err);
}
.f-input:disabled {
  background: #f9f8f6;
  color: #9ca3af;
  cursor: not-allowed;
}
.f-err {
  font-size: 12px;
  color: var(--err);
  margin-top: 4px;
}
.name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.opacity-half {
  opacity: 0.4;
  pointer-events: none;
}
.anon-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 10px;
  margin-bottom: 16px;
}
.anon-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #f9f8f6;
  border: 1px solid #e0eaff;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 18px;
  transition: border-color 0.2s;
}
.anon-row:hover {
  border-color: var(--pri-bdr);
}
.anon-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #c5d8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s;
}
.anon-box.checked {
  background: var(--pri);
  border-color: var(--pri);
}
.coin-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.coin-btn {
  padding: 11px 5px;
  border-radius: 12px;
  border: 1.5px solid #e0eaff;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.coin-btn:hover:not(.act) {
  border-color: var(--pri-bdr);
}
.coin-btn.act {
  border-width: 2px;
}
.c-icon {
  font-size: 18px;
  line-height: 1;
}
.c-sym {
  font-size: 11px;
  font-weight: 700;
}
.qr-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.qr-box {
  background: #fff;
  border: 1px solid #e0eaff;
  border-radius: 12px;
  padding: 12px;
  display: inline-block;
}
.wallet-box {
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.w-label {
  font-size: 10px;
  color: #9ca3af;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.w-addr {
  font-size: 11px;
  color: #374151;
  font-family: "Courier New", monospace;
  word-break: break-all;
  line-height: 1.6;
  margin-bottom: 10px;
}
.copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid #e0eaff;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: #374151;
}
.copy-btn:hover {
  border-color: var(--pri);
  color: var(--pri);
}
.copy-btn.copied {
  border-color: var(--pri);
  color: var(--pri);
  background: var(--pri-pale);
}
.net-warn {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 12px;
  color: #92400e;
  line-height: 1.55;
  margin-bottom: 14px;
}
.proof-box {
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.proof-title {
  font-size: 13px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 4px;
}
.proof-sub {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 12px;
  line-height: 1.55;
}
.proof-txid {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--pri-bdr);
  border-radius: 8px;
  font-size: 13px;
  color: #1c1c1e;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  margin-bottom: 8px;
  font-family: inherit;
}
.proof-txid:focus {
  border-color: var(--pri);
}
.proof-txid::placeholder {
  color: #c5d8f8;
}
.proof-or {
  text-align: center;
  font-size: 12px;
  color: #c5d8f8;
  margin: 4px 0 8px;
  font-style: italic;
}
.upload-zone {
  border: 1.5px dashed var(--pri-bdr);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--pri);
  background: var(--pri-pale);
}
.upload-zone.has-file {
  border-color: var(--pri);
  border-style: solid;
  background: var(--pri-pale);
}
.upload-text {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.7;
}
.proof-error {
  font-size: 12px;
  color: var(--err);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.select-hint {
  text-align: center;
  font-size: 14px;
  color: #c5d8f8;
  padding: 12px 0;
  font-style: italic;
}
.success-wrap {
  text-align: center;
  padding: 8px 0 12px;
}
.success-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri-dk), var(--pri-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 24px rgba(38, 104, 210, 0.3);
  animation: spop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes spop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  65% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.success-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  color: #1c1c1e;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.success-body {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.75;
  max-width: 320px;
  margin: 0 auto 22px;
}
.summary-box {
  background: var(--pri-pale);
  border: 1px solid var(--pri-bdr);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
  text-align: left;
}
.sum-head {
  font-size: 10px;
  color: #9ca3af;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 7px 0;
  border-bottom: 1px solid var(--pri-bdr);
  font-size: 13px;
  gap: 8px;
}
.sum-row:last-child {
  border-bottom: none;
}
.sum-label {
  color: #9ca3af;
  flex-shrink: 0;
}
.sum-val {
  font-weight: 600;
  color: #1c1c1e;
  text-align: right;
  word-break: break-word;
}
.success-note {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* =========================================================
   WALLET PANEL ADDITIONS
   ========================================================= */
.wallet-panel-sub {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* =========================================================
   QR CODE FALLBACK  (shown when QRCode.js CDN is unavailable)
   ========================================================= */
.qr-fallback {
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pri-pale);
  border-radius: 6px;
  font-family: "Courier New", monospace;
  font-size: 8px;
  color: #374151;
  padding: 10px;
  word-break: break-all;
  text-align: center;
  line-height: 1.4;
  box-sizing: border-box;
}

/* Ensure the qr-box flexes to centre whatever QRCode.js injects */
.qr-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   SITE FOOTER
   ========================================================= */
.site-footer {
  background: linear-gradient(160deg, #0a1e4f, #142f6e 55%, #1a4fa8);
  padding: 60px 32px 0;
  margin-top: 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.footer-org-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  max-width: 300px;
  margin-bottom: 16px;
}
.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 4px 11px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}
.footer-social-row {
  display: flex;
  gap: 8px;
}
.footer-soc-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-soc-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 6px;
}
.footer-col-hd {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
  margin-bottom: 14px;
}
.footer-lnk {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-lnk:hover {
  color: #fff;
}
.footer-lnk-txt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer-bottom-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.footer-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.65;
  max-width: 620px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
  .nav-links-d {
    display: flex;
  }
  .nav-drawer {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .nav-links-d {
    display: none;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  .nav-cta {
    display: none;
  }
  .mission-sec {
    flex-direction: column;
    gap: 36px;
  }
  .orbit-wrap {
    width: 220px;
    height: 220px;
  }
  .or3 {
    width: 208px;
    height: 208px;
    margin: -104px 0 0 -104px;
  }
  .stat-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .camp-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .tx-grid-2 {
    grid-template-columns: 1fr;
  }
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid-2 {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .goals-grid {
    grid-template-columns: 1fr;
  }
  .page-hero,
  .contact-hero-wrap {
    padding: 56px 28px;
    min-height: auto;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .goals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story,
  .tier-story {
    display: none;
  }
  .fal-modal,
  .tier-modal {
    max-width: 480px;
  }
  .pay-panel {
    padding: 24px 26px;
  }
  .name-grid {
    grid-template-columns: 1fr 1fr;
  }
  .coin-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 575px) {
  .nav-inner {
    padding: 0 16px;
    height: 56px;
  }
  .nav-brand span {
    font-size: 15px;
  }
  #modal-root.active {
    align-items: flex-end;
    padding: 0;
  }
  .fal-modal,
  .tier-modal {
    border-radius: 22px 22px 0 0;
    max-width: 100%;
    max-height: 94vh;
  }
  .story,
  .tier-story {
    display: none;
  }
  .pay-panel {
    padding: 20px 18px 28px;
  }
  .name-grid,
  .cf-name-row {
    grid-template-columns: 1fr;
  }
  .coin-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sec {
    padding: 48px 20px;
  }
  .stat-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .docs-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
  .reach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-band {
    padding: 48px 24px;
  }
}
@media (max-width: 380px) {
  .card-body {
    padding: 50px 18px 22px;
  }
  .pay-panel {
    padding: 18px 15px 24px;
  }
  .stat-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

/* Footer responsive */
@media (max-width: 991px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-tagline {
    max-width: 480px;
  }
}
@media (max-width: 575px) {
  .site-footer {
    padding: 44px 20px 0;
  }
  .footer-inner {
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-links-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }
}
