:root {
  --forest: #5d7c2f;
  --olive: #7b8f34;
  --navy: #09131d;
  --orange: #e66a22;
  --cream: #f7f5f1;
  --charcoal: #222222;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Inter", "Open Sans", "Poppins", sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only:focus {
  position: fixed;
  left: 0.75rem;
  top: 0.75rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.6rem 0.8rem;
  clip: auto;
  border-radius: 0.5rem;
  background: #fff;
  color: #111;
  z-index: 999;
}

/* Fallback structure when Tailwind CDN is blocked */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 90px;
  background: var(--navy);
  color: #fff;
}

.site-nav > div,
#mission,
#impact,
#live-impact > div,
#vision > div,
#contact,
footer > div {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-nav > div {
  height: 100%;
  display: flex;
  align-items: center;
}

.site-nav nav ul,
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .xl\:block {
  display: none;
}

#menuButton {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: #fff;
}

#mobileMenu {
  background: rgba(9, 19, 29, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#mobileMenu ul {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 0;
}

#mobileMenu a {
  color: #fff;
}

#home {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
}

#home > div {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#home .col-span-12:last-child img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

#mission,
#impact,
#contact {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#mission > div,
#vision > div,
#contact > div {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

#mission .grid.grid-cols-1 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#today {
  background: var(--navy);
  color: #fff;
}

#today > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#today > div > div {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#today .md\:grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

#today .sm\:grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

#impact .grid.grid-cols-1 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

#live-impact {
  background: var(--navy);
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#live-impact .grid.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

#vision {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#vision > div {
  position: relative;
  z-index: 2;
}

footer {
  background: #0b1118;
  color: #fff;
  padding: 2.5rem 0;
}

footer > div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 1280px) {
  .site-nav .xl\:block {
    display: block;
  }

  #menuButton,
  #mobileMenu {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  #home > div,
  #mission > div,
  #today > div,
  #impact .grid.grid-cols-1,
  #vision > div,
  #contact > div {
    grid-template-columns: 1fr;
  }

  #mission .grid.grid-cols-1,
  #live-impact .grid.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  #today .md\:grid-cols-3,
  #today .sm\:grid-cols-2,
  #mission .grid.grid-cols-1,
  #live-impact .grid.grid-cols-2 {
    grid-template-columns: 1fr;
  }

  #home .col-span-12:last-child img {
    height: 360px;
  }

  footer > div {
    flex-direction: column;
  }
}

/* Utility compatibility layer (Tailwind-free) */
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.grid { display: grid; }
.inline-flex { display: inline-flex; }
.hidden { display: none !important; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }

.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.left-4 { left: 1rem; }
.right-4 { right: 1rem; }
.bottom-4 { bottom: 1rem; }
.inset-0 { inset: 0; }
.-z-10 { z-index: -10; }
.-z-20 { z-index: -20; }
.z-50 { z-index: 50; }
.isolate { isolation: isolate; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-44 { width: 11rem; }
.h-44 { height: 11rem; }
.h-\[90px\] { height: 90px; }
.h-\[480px\] { height: 480px; }
.min-h-\[calc\(100vh-90px\)\] { min-height: calc(100vh - 90px); }

.max-w-content { max-width: 1440px; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-12 { grid-column: span 12 / span 12; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.ml-3 { margin-left: 0.75rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.rounded-full { border-radius: 999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/25 { border-color: rgba(255, 255, 255, 0.25); }
.border-white\/40 { border-color: rgba(255, 255, 255, 0.4); }
.border-emerald-300\/20 { border-color: rgba(110, 231, 183, 0.2); }

.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.bg-forest { background: var(--forest); }
.bg-olive { background: var(--olive); }
.bg-orange { background: var(--orange); }
.bg-black\/25 { background: rgba(0, 0, 0, 0.25); }
.bg-white\/10 { background: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background: rgba(255, 255, 255, 0.2); }
.bg-navy\/95 { background: rgba(9, 19, 29, 0.95); }
.bg-\[\#0b1118\] { background: #0b1118; }
.bg-\[\#8db65b\] { background: #8db65b; }
.bg-\[\#5ca37d\] { background: #5ca37d; }

.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-olive { --tw-gradient-from: var(--olive); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 143, 52, 0)); }
.from-forest { --tw-gradient-from: var(--forest); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(93, 124, 47, 0)); }
.from-navy\/90 { --tw-gradient-from: rgba(9, 19, 29, 0.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(9, 19, 29, 0)); }
.from-navy\/95 { --tw-gradient-from: rgba(9, 19, 29, 0.95); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(9, 19, 29, 0)); }
.via-forest { --tw-gradient-stops: var(--tw-gradient-from), var(--forest), var(--tw-gradient-to, rgba(93, 124, 47, 0)); }
.via-navy\/75 { --tw-gradient-stops: var(--tw-gradient-from), rgba(9, 19, 29, 0.75), var(--tw-gradient-to, rgba(9, 19, 29, 0)); }
.to-forest { --tw-gradient-to: var(--forest); }
.to-olive { --tw-gradient-to: var(--olive); }
.to-navy\/35 { --tw-gradient-to: rgba(9, 19, 29, 0.35); }
.to-navy\/85 { --tw-gradient-to: rgba(9, 19, 29, 0.85); }
.to-\[\#466123\] { --tw-gradient-to: #466123; }

.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-body { font-family: "Inter", "Open Sans", "Poppins", sans-serif; }
.font-heading { font-family: "Bebas Neue", "Oswald", "Anton", sans-serif; }
.font-script { font-family: "Caveat", cursive; }
.font-semibold { font-weight: 600; }

.leading-none { line-height: 1; }
.leading-\[0\.92\] { line-height: 0.92; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.28em\] { letter-spacing: 0.28em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }

.uppercase { text-transform: uppercase; }
.text-right { text-align: right; }

.text-charcoal { color: var(--charcoal); }
.text-charcoal\/70 { color: rgba(34, 34, 34, 0.7); }
.text-charcoal\/75 { color: rgba(34, 34, 34, 0.75); }
.text-charcoal\/80 { color: rgba(34, 34, 34, 0.8); }
.text-white { color: #fff; }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/75 { color: rgba(255, 255, 255, 0.75); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-emerald-200 { color: #a7f3d0; }
.text-forest { color: var(--forest); }
.text-olive { color: var(--olive); }
.text-orange { color: var(--orange); }

.object-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }
.opacity-35 { opacity: 0.35; }

.shadow-soft { box-shadow: 0 18px 44px rgba(9, 19, 29, 0.12); }
.shadow-glow { box-shadow: 0 20px 60px rgba(91, 126, 45, 0.28); }

.transition-shadow { transition-property: box-shadow; }
.duration-300 { transition-duration: 300ms; }

.backdrop-blur-lg { backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

@media (min-width: 640px) {
  .sm\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:inline-flex { display: inline-flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-8 { grid-column: span 8 / span 8; }
}

@media (min-width: 1024px) {
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:text-8xl { font-size: 6rem; line-height: 1; }
}

@media (min-width: 1280px) {
  .xl\:block { display: block; }
  .xl\:hidden { display: none; }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.site-nav.scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.07);
  transition: transform 0.2s linear;
}

.kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-weight: 700;
  color: var(--forest);
}

.section-title {
  font-family: "Bebas Neue", "Oswald", "Anton", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.btn {
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.12rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, box-shadow 0.3s ease, filter 0.25s ease, background-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 35px rgba(9, 19, 29, 0.2);
  filter: saturate(1.08);
}

.btn-primary {
  background: var(--orange);
  color: #ffffff;
}

.btn-secondary {
  background: var(--olive);
  color: #ffffff;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  background: transparent;
}

.btn-glass {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.preview-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1rem;
  width: min(60vw, 100%);
  padding: 0.95rem 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.preview-card:hover,
.preview-card:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 35px rgba(9, 19, 29, 0.16);
}

.preview-card__thumb-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.preview-card__thumb {
  width: 100%;
  height: 260px;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
}

.preview-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 2rem;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(9, 19, 29, 0.88);
  z-index: 2000;
}

.video-modal.open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 19, 29, 0.76);
}

.video-modal__content {
  position: relative;
  width: min(90vw, 1100px);
  max-height: 90vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.video-modal__player {
  width: 100%;
  max-height: 90vh;
  border-radius: 1rem;
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

@media (max-width: 900px) {
  .preview-card {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .preview-card__thumb {
    height: 220px;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #e66a22;
}

.feature-card {
  border: 1px solid rgba(9, 19, 29, 0.08);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 16px 32px rgba(9, 19, 29, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(9, 19, 29, 0.13);
}

.feature-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(93, 124, 47, 0.17), rgba(123, 143, 52, 0.34));
  margin-bottom: 0.7rem;
}

.feature-card h3 {
  margin: 0;
  font-family: "Oswald", "Anton", sans-serif;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0.4rem 0 0;
  color: rgba(34, 34, 34, 0.82);
  font-size: 0.95rem;
}

.program-card,
.future-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 335px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

.program-card img,
.future-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.program-card:hover img,
.future-card:hover img {
  transform: scale(1.08);
}

.program-card .overlay,
.future-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 19, 29, 0.2), rgba(9, 19, 29, 0.92));
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
}

.program-card h3,
.future-card h3 {
  margin: 0;
  font-family: "Oswald", "Anton", sans-serif;
  font-size: 1.2rem;
  color: #fff;
}

.program-card p,
.future-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
}

.future-card {
  min-height: 290px;
}

.future-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 19, 29, 0.1), rgba(9, 19, 29, 0.88));
}

.future-card h3,
.future-card p,
.future-card .badge {
  position: relative;
  z-index: 2;
}

.future-card h3,
.future-card p {
  margin-left: 1rem;
  margin-right: 1rem;
}

.future-card h3 {
  margin-top: 7.5rem;
}

.future-card .badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(230, 106, 34, 0.95);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
}

.impact-chip {
  border-radius: 14px;
  border: 1px solid rgba(132, 238, 153, 0.35);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.8rem;
}

.impact-chip span {
  color: #a2ec69;
  font-size: 1.6rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
}

.impact-chip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
}

.glass-panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.83), rgba(255, 255, 255, 0.68));
  box-shadow: 0 22px 45px rgba(9, 19, 29, 0.12);
  backdrop-filter: blur(10px);
  padding: 1.2rem;
}

.card-title {
  margin: 0;
  font-family: "Oswald", "Anton", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.tier {
  border-radius: 12px;
  background: linear-gradient(130deg, rgba(93, 124, 47, 0.95), rgba(123, 143, 52, 0.92));
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tier span {
  font-size: 0.76rem;
  opacity: 0.95;
  letter-spacing: 0.02em;
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 0.45rem;
  border-radius: 999px;
}

#donationRange {
  appearance: none;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 18%, rgba(9, 19, 29, 0.14) 18%);
}

#donationRange::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: var(--forest);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

#donutChart {
  --p1: 0;
  --p2: 0;
  --p3: 0;
  --p4: 0;
  --p5: 0;
  background: conic-gradient(
    #5d7c2f 0 var(--p1),
    #8db65b var(--p1) var(--p2),
    #5ca37d var(--p2) var(--p3),
    #7b8f34 var(--p3) var(--p4),
    #e66a22 var(--p4) var(--p5),
    #d9d9d9 var(--p5) 100%
  );
  position: relative;
}

#donutChart::after {
  content: "";
  position: absolute;
  inset: 22%;
  background: #fff;
  border-radius: 999px;
}

.live-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 1rem;
  text-align: center;
}

.live-card .icon {
  margin: 0;
  font-size: 1.35rem;
}

.counter {
  margin: 0.2rem 0;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 2.15rem;
  color: #e66a22;
}

.form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.form-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(9, 19, 29, 0.2);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.72rem 0.8rem;
  outline: none;
}

.form-input:focus-visible {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(93, 124, 47, 0.2);
}

.footer-logo {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #e66a22;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(230, 106, 34, 0.9);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .program-card,
  .future-card {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
