*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --white: #fafaf7;
  --yellow: #f0c132;
  --green-dark: #0f2310;
  --green: #1a4020;
  --green-mid: #2d6b35;
  --green-light: #4a9e55;
  --stone: #e8e4dc;
  --warm-white: #f5f2ec;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: "Instrument Sans", sans-serif;
  background: var(--white);
  color: var(--black);
  cursor: none;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240, 193, 50, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* NAV */
.main-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 84px;
}

.main-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5), transparent);
  pointer-events: none;
}

.nav-logo {
  text-decoration: none;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-link:hover {
  color: var(--yellow);
}

.dropdown-icon {
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

/* DROPDOWN SYSTEM */
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  min-width: 260px;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 200;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-item:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-link {
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}

.dropdown-link:hover {
  background: var(--warm-white);
}

.dl-title {
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.dl-desc {
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.72rem;
  font-weight: 400;
}

.nav-donate {
  background: var(--yellow);
  color: var(--black);
  padding: 10px 28px;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.nav-donate:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.nav-mob-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.mob-line {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.mob-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 2, 0.98);
  z-index: 1000;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
}

.mob-menu.active {
  transform: translateX(0);
}

.mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.mm-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.mm-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mm-link {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.mm-link:hover {
  color: var(--yellow);
}

.mm-donate {
  margin-top: 20px;
  background: var(--yellow);
  color: var(--black);
  padding: 18px;
  text-align: center;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/herobg.svg') center/cover no-repeat;
}



.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(110vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-10vh) scale(1.3);
    opacity: 0;
  }
}



.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 72px 88px;
  max-width: 1100px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 28px;
  opacity: 0;
  animation: riseUp 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--yellow);
}

.hero-h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.93;
  color: #fff;
  letter-spacing: -0.035em;
  margin-bottom: 40px;
  opacity: 0;
  animation: riseUp 1s 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-h1 i {
  font-style: italic;
  font-weight: 800 !important;
  color: var(--yellow);
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  opacity: 0;
  animation: riseUp 0.9s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-sub {
  font-size: 1.08rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.62);
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.btn-y {
  background: var(--yellow);
  color: var(--black);
  padding: 15px 36px;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  cursor: none;
}

.btn-y:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(240, 193, 50, 0.3);
}

.btn-w {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  padding: 15px 36px;
  border-radius: 0;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: none;
  display: inline-block;
}

.btn-w:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.1s forwards;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.38),
      transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.38;
  }

  50% {
    opacity: 1;
  }
}

/* PARTNERS */
.partners {
  background: var(--black);
  padding: 18px 72px;
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-lbl {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 32px;
  margin-right: 40px;
  font-weight: 700;
}

.partners-row {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
  mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-left: 40px;
  animation: marquee 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  height: 32px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(1);
  transition: all 0.4s ease;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* STAT BAND */
.stat-band {
  background: var(--yellow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 52px 44px;
  border-right: 1px solid rgba(0, 0, 0, 0.09);
  transition: background 0.3s;
  cursor: none;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell:hover {
  background: rgba(0, 0, 0, 0.05);
}

.stat-num {
  font-family: "Fraunces", serif;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 8px;
}

.stat-num small {
  font-size: 15px;
  letter-spacing: 0;
  margin-left: 4px;
  vertical-align: middle;
  font-weight: 700;
}

.stat-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}

.stat-footnote {
  background: var(--yellow);
  padding: 0 72px 25px;
  text-align: center;
}

.stat-footnote p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  font-weight: 500;
  font-style: italic;
}

/* STORY */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.story-vis {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('/img/who_we_are.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-ghost {
  position: absolute;
  font-family: "Fraunces", serif;
  font-size: clamp(8rem, 18vw, 15rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.055);
  line-height: 1;
  letter-spacing: -0.07em;
  pointer-events: none;
  user-select: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.story-vis-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 60px;
}

.story-icon {
  font-size: 5rem;
  display: block;
  margin-bottom: 28px;
}

.story-pull {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.18;
}

.story-pull span {
  color: var(--yellow);
}

.story-body-col {
  padding: 100px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--warm-white);
}

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--green-mid);
}

.story-h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-bottom: 28px;
}

.story-h2 i {
  font-style: italic;
  color: var(--green-mid);
}

.story-p {
  font-size: 1.02rem;
  line-height: 1.87;
  color: rgba(10, 10, 10, 0.57);
  margin-bottom: 16px;
  max-width: 450px;
}

.story-p:last-of-type {
  margin-bottom: 36px;
}

.link-arr {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 3px;
  transition: gap 0.2s;
  width: fit-content;
}

.link-arr:hover {
  gap: 18px;
}

.link-arr::after {
  content: "→";
}

/* HARIT BIHAR MISSION */
.hbm-sec {
  background: var(--green-dark);
  padding: 100px 72px;
  overflow: hidden;
}

.hbm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.hbm-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 32px;
}

.hbm-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 10px rgba(74, 158, 85, 0.5);
}

.hbm-badge-txt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hbm-h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
}

.hbm-h2 i {
  font-style: italic;
  font-weight: 800;
  color: var(--yellow);
}

.hbm-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  margin-top: 20px;
  line-height: 1.6;
}

.hbm-right {
  padding-top: 12px;
}

.hbm-line {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin-bottom: 32px;
}

.hbm-p {
  font-size: 1.02rem;
  line-height: 1.88;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 16px;
}

.hbm-highlight {
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  padding: 20px 24px;
  background: rgba(74, 158, 85, 0.08);
  border-left: 3px solid var(--green-light);
  margin-bottom: 32px;
  margin-top: 8px;
}

.hbm-sec .link-arr {
  color: var(--yellow);
  border-bottom-color: rgba(240, 193, 50, 0.3);
}

.hbm-sec .link-arr:hover {
  border-bottom-color: var(--yellow);
}

/* PROGRAM */
.program {
  background: #0f2310;
  padding: 50px 50px;
}

.program-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}

.program-h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #fff;
  max-width: 600px;
}

.program-h2 i {
  font-style: italic;
  color: var(--yellow);
}

.program-note {
  max-width: 340px;
  font-size: 0.9rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.4);
}

.prog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.prog-item {
  background: var(--black);
  padding: 44px 28px;
  transition: background 0.35s;
  cursor: none;
  position: relative;
  overflow: hidden;
}

.prog-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.prog-item:hover {
  background: #0f0f0f;
}

.prog-item:hover::after {
  transform: scaleX(1);
}

.prog-n {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.045);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}

.prog-ico {
  font-size: 1.9rem;
  margin-bottom: 18px;
  display: block;
}

.prog-title {
  font-size: 0.87rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.prog-desc {
  font-size: 0.78rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.35);
}

.prog-foot {
  text-align: center;
  margin-top: 52px;
}

/* TRANSFORMATION SLIDER */
.transform-sec {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ts-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ts-bg {
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.ts-bg.ts-active {
  opacity: 1;
}

.ts-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      transparent 20%,
      transparent 80%,
      rgba(0, 0, 0, 0.6) 100%);
}

.ts-top-area {
  position: relative;
  z-index: 2;
  padding: 100px 72px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex: 1;
}

.ts-left-col {
  max-width: 520px;
}

.ts-h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.ts-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
  margin-bottom: 22px;
}

.ts-env-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 8px 18px;
}

.ts-env-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transition: background 0.5s;
}

.ts-env-lbl {
  font-size: 0.79rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}

.ts-weather-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 22px 26px;
  min-width: 180px;
  text-align: left;
  flex-shrink: 0;
}

.ts-wc-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  margin-bottom: 10px;
}

.ts-wc-ico {
  font-size: 1.4rem;
}

.ts-wc-cond {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

.ts-wc-temp {
  font-family: "Fraunces", serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.ts-wc-air {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.ts-bottom-panel {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgb(15 35 16) 0%, transparent 100%);
  padding: 40px 72px 60px;
}

.ts-slider-area {
  margin-bottom: 24px;
}

.ts-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 26px;
}

.ts-labels span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

.ts-stage-pill {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 13px;
  border-radius: 100px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ts-track-wrap {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  cursor: pointer;
  margin: 0 26px;
}

.ts-track-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, #c05520, #d4a020, var(--green-mid));
  border-radius: 100px;
  pointer-events: none;
}

.ts-thumb {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.15);
  cursor: grab;
  transform: translate(-50%, -50%);
  user-select: none;
  touch-action: none;
}

.ts-thumb:active {
  cursor: grabbing;
}

.ts-impacts-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.ts-impacts-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  white-space: nowrap;
  padding-top: 5px;
  flex-shrink: 0;
}

.ts-impacts-grid {
  display: flex;
  gap: 18px;
  flex: 1;
}

.ts-imp {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ts-imp-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.ts-imp-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.2;
}

.ts-imp-desc {
  font-size: 0.67rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 900px) {
  .ts-top-area {
    flex-direction: column;
    padding: 36px 24px 0;
    gap: 14px;
  }

  .ts-weather-card {
    text-align: left;
    min-width: unset;
    width: 100%;
  }

  .ts-wc-top,
  .ts-wc-air {
    justify-content: flex-start;
  }

  .ts-wc-temp {
    font-size: 2.4rem;
  }

  .ts-bottom-panel {
    padding: 18px 24px 28px;
  }

  .ts-impacts-row {
    flex-direction: column;
    gap: 14px;
  }

  .ts-impacts-grid {
    flex-wrap: wrap;
  }

  .ts-imp {
    flex: 0 0 calc(50% - 9px);
  }
}

/* PARTNERS SECTION */
.part-sec {
  padding: 90px 50px;
  background: var(--white);
}

.part-head {
  margin-bottom: 72px;
}

.part-h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -0.045em;
  color: var(--black);
}

.part-h2 i {
  font-style: italic;
  color: var(--green-mid);
}

.part-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: 4px;
  overflow: hidden;
}

.part-card {
  position: relative;
  aspect-ratio: 1 / 1.2;
  overflow: hidden;
  cursor: none;
}

.pc-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  background-size: cover;
  background-position: center;
}

.part-card:hover .pc-bg {
  transform: scale(1.05);
}

.bg0 {
  background-image: url('../img/Corporate.svg');
}

.bg1 {
  background-image: url('../img/Donor-Agency.svg');
}

.bg2 {
  background-image: url('../img/insitute.jpeg');
}

.bg3 {
  background-image: url('../img/indi.png');
}

.pc-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.08) 50%,
      transparent 100%);
}

.pc-body {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pc-ico {
  margin-bottom: auto;
  padding-top: 4px;
  transition: transform 0.4s;
  display: flex;
  align-items: center;
}

.pc-img {
  height: 56px;
  width: auto;
  display: block;
}

.part-card:hover .pc-ico {
  transform: translateY(-5px);
}

.pc-title {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pc-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.62;
  margin-bottom: 18px;
}

.pc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  transition: gap 0.2s;
}

.part-card:hover .pc-link {
  gap: 14px;
}

.pc-link::after {
  content: "→";
}

/* HOW */
.how-sec {
  background: var(--stone);
  padding: 90px 50px;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.how-h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.how-h2 i {
  font-style: italic;
  color: var(--green-mid);
}

.how-note {
  max-width: 300px;
  font-size: 0.88rem;
  line-height: 1.82;
  color: rgba(10, 10, 10, 0.47);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}

.how-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.08) 50%, transparent 50%);
  background-size: 12px 100%;
  z-index: 0;
}

.how-steps::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  width: 84%;
  height: 2px;
  background-image: linear-gradient(to right, rgba(240, 193, 50, 0.4) 50%, transparent 50%);
  background-size: 12px 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.how-steps.in::after {
  opacity: 1;
  animation: moveDots 30s linear infinite;
}

@keyframes moveDots {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 500px 0;
  }
}

.how-step {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  text-align: center;
}

.how-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(10, 10, 10, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.3rem;
  transition: all 0.3s;
}

.how-step:hover .how-dot {
  background: var(--black);
  border-color: var(--black);
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.how-step:hover .how-dot span {
  filter: grayscale(1) brightness(10);
}

.how-sn {
  font-family: "Fraunces", serif;
  font-size: 0.62rem;
  font-weight: 900;
  color: rgba(10, 10, 10, 0.22);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.how-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
}

.how-desc {
  font-size: 0.7rem;
  line-height: 1.68;
  color: rgba(10, 10, 10, 0.43);
}

/* Context-aware styling for swapped sections */
.program .how-sn {
  color: rgba(255, 255, 255, 0.22);
}

.program .how-title {
  color: #fff;
}

.program .how-desc {
  color: rgba(255, 255, 255, 0.43);
}

.program .how-steps::before {
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
}

.how-sec .prog-item {
  background: var(--stone);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.how-sec .prog-n {
  color: rgba(0, 0, 0, 0.1);
}

.how-sec .prog-title {
  color: var(--black);
}

.how-sec .prog-desc {
  color: rgba(0, 0, 0, 0.5);
}

.how-sec .prog-foot {
  margin-top: 52px;
  text-align: center;
}

/* UPDATES */
.updates-sec {
  padding: 140px 72px;
  background: var(--warm-white);
}

.upd-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.upd-h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.upd-h2 i {
  font-style: italic;
  color: var(--green-mid);
}

.upd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.upd-card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
  cursor: none;
}

.upd-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.1);
}

.upd-vis {
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}

.v0 {
  background: linear-gradient(135deg, #1a4020, #3d8040);
}

.v1 {
  background: linear-gradient(135deg, #0f2310, #2d5a35);
}

.v2 {
  background: linear-gradient(135deg, #2d3a10, #5a6b20);
}

.upd-body {
  padding: 28px 28px 32px;
}

.upd-tag {
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 700;
  margin-bottom: 12px;
}

.upd-title {
  font-family: "Fraunces", serif;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.22;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.upd-ex {
  font-size: 0.8rem;
  line-height: 1.72;
  color: rgba(10, 10, 10, 0.48);
}

/* DONATE */
.donate-sec {
  background: var(--yellow);
  padding: 80px 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.donate-h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.93;
  color: var(--black);
}

.donate-h2 i {
  font-style: italic;
  font-weight: 300;
}

.donate-sub {
  font-size: 0.98rem;
  line-height: 1.78;
  color: rgba(0, 0, 0, 0.48);
  margin-top: 20px;
  max-width: 480px;
}

.donate-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  align-items: flex-start;
}

.btn-b {
  background: var(--black);
  color: var(--yellow);
  padding: 18px 46px;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: none;
  display: inline-block;
}

.btn-b:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.donate-tiers {
  font-size: 0.73rem;
  color: rgba(0, 0, 0, 0.42);
  letter-spacing: 0.05em;
  text-align: center;
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 50px 30px 18px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}

.foot-logo {
  margin-bottom: 20px;
  display: block;
}

.foot-logo .logo-img {
  height: 40px;
}

.foot-desc {
  font-size: 0.83rem;
  line-height: 1.88;
  color: rgba(255, 255, 255, 0.28);
  max-width: 270px;
  margin-bottom: 26px;
}

.foot-soc {
  display: flex;
  gap: 10px;
}

.fsoc {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.2s;
}

.fsoc:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.foot-col h5 {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 700;
  margin-bottom: 20px;
}

.foot-col ul {
  list-style: none;
}

.foot-col li {
  margin-bottom: 12px;
}

.foot-col a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.foot-col a:hover {
  color: rgba(255, 255, 255, 0.82);
}

.foot-btm {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot-copy {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.18);
}

.foot-legal {
  display: flex;
  gap: 24px;
}

.foot-legal a {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: color 0.2s;
}

.foot-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ANIMATIONS */
@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(44px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

@media (max-width: 900px) {
  .main-nav {
    padding: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .nav-logo {
    margin-right: auto;
  }

  .nav-donate {
    padding: 10px 18px;
    font-size: 0.75rem;
    display: block;
    white-space: nowrap;
    margin-right: 0;
  }

  .nav-mob-btn {
    display: flex;
    margin-left: 0;
    padding: 5px;
  }

  .nav-link {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .hero-bg {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 70%),
      url('../img/herobg.svg') 55% center/cover no-repeat;
  }

  .hero-content {
    padding: 0 28px 72px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-band {
    grid-template-columns: 1fr 1fr;
  }

  .stat-footnote {
    padding: 0 28px 52px;
  }

  .stat-footnote p {
    font-size: 0.7rem;
  }

  .partners {
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
  }

  .partners-lbl {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    opacity: 0.6;
    padding-right: 0px !important;
    margin-right: 0px !important;
  }

  .partners-row {
    border: none;
    padding: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
  }

  .partners-row::before,
  .partners-row::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
  }

  .partners-row::before {
    left: 0;
    background: linear-gradient(to right, var(--black), transparent);
  }

  .partners-row::after {
    right: 0;
    background: linear-gradient(to left, var(--black), transparent);
  }

  .marquee-content {
    display: flex;
    gap: 40px;
    padding-left: 20px;
    animation: marquee 20s linear infinite;
  }

  .partner-logo {
    height: 30px;
    width: auto;
    filter: grayscale(1) brightness(2);
    opacity: 0.6;
  }

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-vis {
    min-height: 50vh;
  }

  .story-body-col {
    padding: 60px 28px;
  }

  .hbm-sec {
    padding: 64px 28px;
  }

  .hbm-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hbm-h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .hbm-highlight {
    padding: 16px 20px;
    font-size: 0.92rem;
  }

  .transform-sec {
    aspect-ratio: auto;
    height: auto;
    background: #0f1c10;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
  }

  .ts-bg-wrap {
    position: relative;
    height: 320px;
    width: 100%;
    z-index: 1;
  }

  .ts-overlay {
    display: none;
  }

  .ts-top-area {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .ts-h2,
  .ts-desc,
  .ts-env-badge {
    display: none;
  }

  .ts-weather-card {
    min-width: 130px;
    padding: 10px 14px;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ts-wc-temp {
    font-size: 1.8rem;
  }

  .ts-wc-cond,
  .ts-wc-air {
    font-size: 0.65rem;
  }

  .ts-bottom-panel {
    position: relative;
    padding: 20px;
    background: none;
  }

  .ts-slider-area {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 12px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .ts-slider-area::before {
    content: "Fewer Trees";
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 0.65rem;
    color: #fff;
    opacity: 0.5;
  }

  .ts-slider-area::after {
    content: "More Trees";
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 0.65rem;
    color: #fff;
    opacity: 0.5;
  }

  .ts-track-wrap {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 14px;
    border-radius: 3px;
  }

  .ts-track-fill {
    background: linear-gradient(to right, #e05a1a, #f0c132, #4a9e55);
  }

  .ts-thumb {
    width: 34px;
    height: 34px;
    background: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231a4a1e"><path d="M11 21h2v-2h-2v2zm1-16c-3.31 0-6 2.69-6 6 0 1.66.67 3.16 1.76 4.24l1.42-1.42C8.42 13.06 8 12.08 8 11c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.08-.42 2.06-1.18 2.82l1.42 1.42C17.33 14.16 18 12.66 18 11c0-3.31-2.69-6-6-6z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
  }

  .ts-impacts-row {
    background: rgba(0, 0, 0, 0.4);
    padding: 24px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
  }

  .ts-impacts-lbl {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    background: rgba(74, 158, 85, 0.2);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    width: auto;
  }

  .ts-impacts-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .ts-imp {
    flex-direction: row;
    padding: 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    gap: 16px;
  }

  .ts-imp:last-child {
    border-bottom: none;
  }

  .ts-imp-ico {
    width: 44px;
    height: 44px;
    background: rgba(74, 158, 85, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .ts-imp-title {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 2px;
  }

  .ts-imp-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
  }

  .program-head,
  .how-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .program-note,
  .how-note {
    max-width: 100%;
    text-align: left;
  }

  .prog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .part-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .part-card {
    aspect-ratio: 1.2 / 1;
  }


  .pc-body {
    padding: 24px;
  }

  .pc-title {
    font-size: 1.8rem;
  }

  .bg3 {
    background-position: center !important;
  }

  .pc-sub {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .how-steps::before,
  .how-steps::after {
    display: none;
  }

  .how-step {
    padding: 0;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .imp-card.tall {
    grid-row: auto;
  }

  .upd-grid {
    grid-template-columns: 1fr;
  }

  .donate-sec {
    grid-template-columns: 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .program,
  .part-sec,
  .how-sec,
  .impact-sec,
  .updates-sec,
  .donate-sec,
  .footer,
  .partners,
  .stat-cell {
    padding-left: 28px;
    padding-right: 28px;
  }

  .cursor,
  .cursor-ring {
    display: none !important;
  }

  body {
    cursor: auto !important;
  }
}

@media (max-width: 900px) {
  .foot-btm {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .foot-legal {
    flex-direction: column;
    gap: 12px;
  }
}