:root {
  --navy: #06456e;
  --ocean: #0bacf0;
  --yellow: #f2d86f;
  --sun: #ffe06d;
  --green: #54b301;
  --heart: #dd4b5e;
  --dark: #03131d;
  --mid: #0a2233;
  --panel: #0f2b3f;
  --panel-2: #12344d;
  --mist: #edf5fb;
  --text: #f3f8fc;
  --soft: rgba(232, 242, 250, 0.72);
  --muted: rgba(201, 218, 231, 0.54);
  --line: rgba(11, 172, 240, 0.18);
  --line-strong: rgba(11, 172, 240, 0.36);
  --card: rgba(255, 255, 255, 0.045);
  --card-strong: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 52px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.2);
  --radius: 24px;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

#volunteer-registration {
  scroll-margin-top: 13rem;
}

body {
  position: relative;
  isolation: isolate;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(11, 172, 240, 0.16), transparent 24%),
    radial-gradient(circle at left 18%, rgba(242, 216, 111, 0.08), transparent 22%),
    linear-gradient(180deg, #03131d 0%, #071b29 40%, #03131d 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(11, 172, 240, 0.32);
  color: #ffffff;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.85rem;
  font-family: "Syne", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
}

h2 { font-size: clamp(2rem, 3vw, 3.5rem); }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.45rem); }

p {
  margin: 0 0 1rem;
  color: var(--soft);
  line-height: 1.85;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -54px;
  left: 1rem;
  z-index: 1100;
  background: var(--yellow);
  color: var(--dark);
  padding: 0.6rem 1rem;
  border-radius: 0 0 10px 10px;
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid rgba(11, 172, 240, 0.9);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(1320px, 92vw);
  margin: 0 auto;
}

.announcement {
  background: linear-gradient(90deg, rgba(3, 19, 29, 0.96), rgba(7, 37, 55, 0.96));
  border-bottom: 1px solid rgba(11, 172, 240, 0.18);
}

.admin-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #dff3fb !important;
  background: linear-gradient(135deg, rgba(8, 30, 44, 0.92), rgba(11, 44, 66, 0.9));
  border: 1px solid rgba(125, 215, 248, 0.18);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.admin-nav:hover,
.admin-nav.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(10, 39, 58, 0.96), rgba(15, 59, 86, 0.94)) !important;
  border-color: rgba(125, 215, 248, 0.32);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.announcement .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0;
}

.announcement-inner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.announcement-copy {
  color: rgba(244, 249, 252, 0.8);
  font-size: 0.86rem;
}

.announcement strong {
  color: var(--yellow);
}

.announcement-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--yellow), #fff1aa);
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.announcement-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 216, 111, 0.26);
  filter: brightness(1.05);
}

.anniversary-banner {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(242, 216, 111, 0.14);
  border-bottom: 1px solid rgba(242, 216, 111, 0.12);
  background: linear-gradient(90deg, rgba(25, 20, 32, 0.94), rgba(54, 32, 58, 0.94) 44%, rgba(97, 65, 54, 0.94));
}

.anniversary-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 230, 170, 0.09), transparent 18%),
    radial-gradient(circle at 88% 50%, rgba(255, 230, 170, 0.09), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 44%);
  pointer-events: none;
}

.anniversary-banner .container {
  position: relative;
  z-index: 1;
  padding: 0.3rem 0;
}

.anniversary-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.42rem 0.78rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 20px rgba(18, 8, 17, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.anniversary-copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.anniversary-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 217, 114, 0.12);
  border: 1px solid rgba(255, 217, 114, 0.22);
  color: #ffe9ae;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.anniversary-kicker i {
  color: #ffd972;
  animation: anniversaryTwinkle 2.4s ease-in-out infinite;
}

.anniversary-title {
  margin: 0;
  color: #fff6db;
  font-family: "Syne", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.2;
}

.anniversary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.anniversary-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 243, 222, 0.86);
  font-size: 0.72rem;
}

.anniversary-text {
  margin: 0;
  color: rgba(255, 245, 226, 0.74);
  font-size: 0.76rem;
  line-height: 1.45;
}

.anniversary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.anniversary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.56rem 0.9rem;
  font-family: "Syne", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.anniversary-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.anniversary-link--primary {
  background: linear-gradient(135deg, #ffe08b, #fff1bc);
  color: #3b2431;
  box-shadow: 0 10px 20px rgba(255, 224, 139, 0.18);
}

.anniversary-link--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff7e3;
}

@keyframes anniversaryGlow {
  0%, 100% { transform: translateY(0); text-shadow: 0 0 0 rgba(255, 217, 114, 0); }
  50% { transform: translateY(-1px); text-shadow: 0 0 18px rgba(255, 217, 114, 0.22); }
}

@keyframes anniversaryTwinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.14) rotate(8deg); opacity: 1; }
}

@keyframes donatePulse {
  0%, 100% { box-shadow: 0 12px 24px rgba(185, 51, 73, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08) inset; }
  50% { box-shadow: 0 16px 30px rgba(185, 51, 73, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.1) inset; }
}

.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(11, 172, 240, 0.08);
  border-bottom: 1px solid rgba(11, 172, 240, 0.12);
  background: linear-gradient(90deg, rgba(6, 69, 110, 0.52), rgba(3, 19, 29, 0.72));
}

.marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 38%),
    radial-gradient(circle at 12% 50%, rgba(242, 216, 111, 0.05), transparent 16%),
    radial-gradient(circle at 88% 50%, rgba(11, 172, 240, 0.05), transparent 16%);
  opacity: 0.42;
}

.marquee .container {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 1.6rem;
  padding: 0.78rem 0;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(240, 248, 252, 0.62);
}

.marquee-track span::after {
  content: "✦";
  margin-left: 1.6rem;
  color: var(--yellow);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(3, 19, 29, 0.82);
  border-bottom: 1px solid rgba(11, 172, 240, 0.14);
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  background: rgba(3, 19, 29, 0.94);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-bottom-color: rgba(11, 172, 240, 0.22);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-cluster {
  display: inline-flex;
  align-items: center;
  gap: 0.02rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  max-width: 228px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.flag-mark {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  vertical-align: middle;
  margin-left: 0.02rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.site-nav a.nav-with-gif {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.nav-gif {
  display: inline-block;
  font-size: 0.9rem;
  line-height: 1;
  vertical-align: middle;
}

.site-nav a.active,
.site-nav a:hover {
  color: #ffffff;
  background: rgba(11, 172, 240, 0.12);
  transform: translateY(-1px);
}

.donate-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #b93349, #dd4b5e 48%, #ef7a68 100%);
  color: #ffffff !important;
  font-family: "Syne", sans-serif;
  font-weight: 700 !important;
  box-shadow: 0 12px 24px rgba(185, 51, 73, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: donatePulse 3.2s ease-in-out infinite;
}

.donate-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 52%);
  pointer-events: none;
}

.donate-nav:hover,
.donate-nav.active {
  background: linear-gradient(135deg, #c13a4f, #e15467 48%, #f08672 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 30px rgba(185, 51, 73, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(125, 215, 248, 0.2);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(14, 44, 63, 0.92), rgba(8, 26, 38, 0.94));
  border-radius: 14px;
  padding: 0.6rem 0.78rem;
  width: 46px;
  height: 46px;
  font-size: 0;
  position: relative;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateX(-50%);
  transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
}

.menu-toggle::before { top: 15px; }
.menu-toggle span { top: 22px; }
.menu-toggle::after { top: 29px; }

.menu-toggle[aria-expanded="true"]::before {
  top: 22px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  top: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

.menu-toggle:hover {
  border-color: rgba(125, 215, 248, 0.34);
  background: linear-gradient(180deg, rgba(16, 52, 73, 0.96), rgba(9, 30, 43, 0.98));
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at top right, rgba(11, 172, 240, 0.18), transparent 26%),
    radial-gradient(circle at 18% 18%, rgba(242, 216, 111, 0.12), transparent 24%),
    linear-gradient(145deg, #03131d 0%, #07283c 48%, #0e2d42 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(circle at 22% 30%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 78% 26%, rgba(242, 216, 111, 0.08), transparent 20%),
    radial-gradient(circle at 66% 74%, rgba(11, 172, 240, 0.08), transparent 22%);
}

.hero--home {
  min-height: calc(100vh - 44px);
}

.hero--subpage {
  min-height: 62vh;
}

.hero--subpage h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
}

.hero--about { background: linear-gradient(145deg, #081d29 0%, #15354c 48%, #11344b 100%); }
.hero--programs { background: linear-gradient(145deg, #041522 0%, #092639 48%, #0b3854 100%); }
.hero--involved { background: linear-gradient(145deg, #1c1020 0%, #17374d 48%, #0b2638 100%); }
.hero--contact { background: linear-gradient(145deg, #0a1724 0%, #1a3144 48%, #0e3d5a 100%); }
.hero--gallery { background: linear-gradient(145deg, #03141f 0%, #0a2a40 48%, #0d3d5c 100%); }

.ambient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(3, 19, 29, 0.94) 4%, rgba(3, 19, 29, 0.76) 40%, rgba(3, 19, 29, 0.42) 100%);
}

.hero--home .hero-overlay {
  background: linear-gradient(120deg, rgba(3, 19, 29, 0.82) 6%, rgba(3, 19, 29, 0.58) 40%, rgba(3, 19, 29, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3.2rem;
  align-items: center;
  padding: 5.4rem 0 4.6rem;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 10ch;
}

.hero .accent {
  display: block;
  color: var(--sun);
}

.hero .accent-2 {
  display: block;
  color: #83d5f5;
  font-style: italic;
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 216, 111, 0.22);
  background: rgba(242, 216, 111, 0.08);
  color: var(--yellow);
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 16px rgba(242, 216, 111, 0.55);
}

.hero-lead,
.hero-copy > p:last-of-type {
  max-width: 620px;
  font-size: 1.02rem;
  color: rgba(236, 243, 249, 0.76);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.92rem 1.45rem;
  border: 1px solid transparent;
  font-family: "Syne", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.75;
  cursor: wait;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), #fff0a1);
  color: var(--dark);
  box-shadow: 0 16px 34px rgba(242, 216, 111, 0.22);
}

.btn-danger {
  background: linear-gradient(135deg, #b93349, #dd4b5e 48%, #ef7a68 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(185, 51, 73, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn-danger:hover {
  background: linear-gradient(135deg, #c13a4f, #e15467 48%, #f08672 100%);
  color: #ffffff;
  box-shadow: 0 20px 38px rgba(185, 51, 73, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
}

.btn-soft {
  background: linear-gradient(135deg, rgba(11, 172, 240, 0.92), rgba(147, 219, 247, 0.92));
  color: #032031;
  box-shadow: 0 16px 34px rgba(11, 172, 240, 0.2);
}

.btn:hover { filter: brightness(1.04); }

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.25rem;
  margin-top: 1.9rem;
}

.hero-mini {
  min-width: 92px;
}

.hero-mini strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  color: var(--sun);
}

.hero-mini span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(235, 243, 249, 0.42);
}

.hero-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 3;
}

.hero-shell > .card,
.hero-shell > .hero-copy-grid,
.hero-shell > .hero-quote {
  width: 100%;
  max-width: 420px;
}

.orb-stage {
  position: relative;
  width: min(420px, 80vw);
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  will-change: transform;
}

.logo-orb {
  position: relative;
  width: min(300px, 62vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04) 44%, rgba(255, 255, 255, 0.02) 66%, transparent 100%);
  animation: logoFloat 6s ease-in-out infinite;
}

.logo-orb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(11, 172, 240, 0.28)) drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
}

.logo-orb::before,
.logo-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(11, 172, 240, 0.26);
  animation: orbitRing 3.8s ease-in-out infinite;
}

.logo-orb::before { inset: -20px; }
.logo-orb::after {
  inset: -44px;
  border-color: rgba(242, 216, 111, 0.18);
  animation-delay: 1s;
}

.orbit-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  background: rgba(8, 33, 49, 0.78);
  border: 1px solid rgba(11, 172, 240, 0.2);
  backdrop-filter: blur(16px);
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  color: rgba(239, 246, 252, 0.8);
  box-shadow: var(--shadow-soft);
}

.orbit-chip::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--ocean);
  box-shadow: 0 0 14px rgba(11, 172, 240, 0.45);
}

.orbit-chip--a { top: 6%; right: 4%; }
.orbit-chip--b { bottom: 10%; left: 0; }
.orbit-chip--c { top: 50%; left: 2%; }

.hero-quote {
  max-width: 360px;
  padding: 1.35rem 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(11, 172, 240, 0.14);
  background: linear-gradient(180deg, rgba(10, 34, 51, 0.88), rgba(9, 26, 38, 0.82));
  text-align: center;
}

.hero-quote p {
  margin-bottom: 0.5rem;
  color: rgba(248, 251, 253, 0.86);
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

.hero-quote span {
  font-family: "Space Mono", monospace;
  font-size: 0.66rem;
  color: var(--yellow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-attribution {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.7rem;
}

.quote-attribution img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.quote-attribution--stack {
  display: grid;
  gap: 0.08rem;
  text-align: left;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.42);
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  text-align: center;
}

.scroll-cue span {
  line-height: 1;
}

.scroll-cue i {
  font-size: 0.88rem;
  color: rgba(125, 215, 248, 0.92);
  text-shadow: 0 0 14px rgba(11, 172, 240, 0.28);
  animation: scrollArrow 1.8s ease-in-out infinite;
}

.scroll-cue--after-stats {
  position: static;
  transform: none;
  justify-content: center;
  width: fit-content;
  margin: 2rem auto 0.6rem;
  color: rgba(229, 240, 248, 0.46);
}

@keyframes logoFloat {
  0%, 100% { transform: perspective(900px) rotateY(-9deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(900px) rotateY(8deg) rotateX(-4deg) translateY(-16px); }
}

@keyframes orbitRing {
  0%, 100% { transform: scale(1); opacity: 0.56; }
  50% { transform: scale(1.045); opacity: 1; }
}

@keyframes scrollArrow {
  0%, 100% { transform: translateY(0); opacity: 0.58; }
  50% { transform: translateY(6px); opacity: 1; }
}

.stats-ribbon {
  position: relative;
  z-index: 2;
  margin-top: -2.4rem;
  padding-bottom: 0.65rem;
}

.stats-ribbon .marquee {
  margin-bottom: 0.85rem;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.55rem;
}

.stat-panel {
  padding: 1.25rem 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8, 28, 42, 0.95), rgba(10, 34, 51, 0.86));
  border: 1px solid rgba(11, 172, 240, 0.12);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-value {
  display: block;
  margin-bottom: 0.22rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--sun);
}

.stat-label {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(233, 242, 248, 0.46);
}

.section {
  position: relative;
  padding: 5.2rem 0;
}

.section--after-stats {
  padding-top: 4rem;
}

.section > .container,
.site-footer > .container {
  position: relative;
  z-index: 1;
}

.section-soft {
  position: relative;
  background:
    radial-gradient(circle at right top, rgba(11, 172, 240, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(8, 28, 42, 0.94), rgba(4, 21, 34, 0.98));
}

.section-dark {
  position: relative;
  background:
    radial-gradient(circle at left top, rgba(242, 216, 111, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(3, 19, 29, 0.98), rgba(2, 12, 18, 1));
}


.section-head {
  max-width: 760px;
  margin-bottom: 1.65rem;
}

.section-head h2 {
  max-width: 16ch;
}

.section-head p:last-child {
  color: rgba(233, 242, 248, 0.62);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 2rem;
  align-items: center;
}

.section-copy h2 {
  margin-bottom: 1rem;
}

.section-copy .btn {
  margin-top: 0.7rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 172, 240, 0.16);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
  color: rgba(239, 246, 252, 0.74);
}

.badge-chip i { color: var(--ocean); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }

.card {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 43, 63, 0.84), rgba(9, 26, 38, 0.96));
  border: 1px solid rgba(11, 172, 240, 0.14);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(11, 172, 240, 0.1), transparent 42%, rgba(242, 216, 111, 0.06));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 172, 240, 0.26);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.card:hover::before { opacity: 1; }

.card > * {
  position: relative;
  z-index: 1;
}

.card-dark {
  background: linear-gradient(180deg, rgba(6, 19, 29, 0.88), rgba(3, 13, 20, 0.98));
  border-color: rgba(11, 172, 240, 0.16);
}

.metric {
  text-align: center;
}

.metric h3 {
  margin-bottom: 0.25rem;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--sun);
}

.metric p {
  margin-bottom: 0;
  color: rgba(233, 242, 248, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(160deg, rgba(5, 24, 36, 0.96), rgba(15, 43, 63, 0.92));
}

.media-card--cover img,
.story-card img,
.about-showcase img {
  object-fit: cover;
}

.media-body {
  padding: 1.05rem 1.1rem;
}

.icon-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 172, 240, 0.16);
  background: rgba(11, 172, 240, 0.08);
  color: #93dbf7;
  font-family: "Space Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.focus-card {
  height: 100%;
}

.focus-card h3 {
  margin-bottom: 0.65rem;
}

.focus-quote {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(11, 172, 240, 0.12);
  color: #8bd8f8;
  font-size: 0.82rem;
  font-style: italic;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.campaign-card {
  text-align: left;
}

.campaign-icon {
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(11, 172, 240, 0.08);
  border: 1px solid rgba(11, 172, 240, 0.14);
  font-size: 1.3rem;
  color: var(--sun);
}

.campaign-title {
  margin-bottom: 0.55rem;
  font-family: "Syne", sans-serif;
  font-size: 1.08rem;
  color: #ffffff;
}

.campaign-desc {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: rgba(233, 242, 248, 0.62);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.45rem;
}

.impact-card {
  text-align: center;
}

.impact-value {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  color: var(--sun);
}

.impact-label {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(233, 242, 248, 0.48);
}

.impact-note {
  color: rgba(233, 242, 248, 0.62);
  font-size: 0.9rem;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.progress-card h3 {
  font-size: 1rem;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
}

.progress-name {
  color: rgba(245, 250, 252, 0.82);
}

.progress-value {
  font-family: "Space Mono", monospace;
  color: var(--ocean);
}

.progress-track {
  height: 0.42rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width 900ms ease;
}

.progress-note {
  margin-top: 0.8rem;
  margin-bottom: 0;
  font-size: 0.84rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.story-card {
  overflow: hidden;
}

.story-card .media-body {
  display: grid;
  gap: 0.45rem;
}

.story-meta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  color: rgba(233, 242, 248, 0.44);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-cta,
.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #8bd8f8;
  font-family: "Syne", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.action-card h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.action-card {
  height: auto;
}

.action-highlight,
.bank-details {
  margin: 1.2rem 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(11, 172, 240, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.action-highlight strong,
.bank-details strong {
  color: var(--sun);
}

.list-clean {
  margin: 0;
  padding-left: 1.15rem;
}

.list-clean li {
  margin-bottom: 0.55rem;
  color: rgba(233, 242, 248, 0.68);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.timeline .item {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(242, 216, 111, 0.4), rgba(11, 172, 240, 0.2));
}

.timeline-intro {
  margin-bottom: 0;
  color: rgba(239, 246, 252, 0.7);
  font-size: 0.92rem;
}

.timeline-year {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.24rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 24, 16, 0.96), rgba(18, 40, 56, 0.96));
  border: 1px solid rgba(242, 216, 111, 0.24);
  color: var(--sun);
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 6px rgba(9, 29, 42, 0.96);
}

.timeline-body {
  padding: 0.72rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(11, 172, 240, 0.12);
}

.timeline-body strong {
  display: block;
  margin-bottom: 0;
  color: var(--sun);
  font-size: 0.95rem;
}

.timeline-body p {
  margin-bottom: 0;
  color: rgba(233, 242, 248, 0.74);
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.leader {
  text-align: center;
}

.leader h3 {
  margin-bottom: 0.45rem;
}

.leader-nameplate {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.52rem 1rem 0.58rem;
  border-radius: 999px 999px 999px 10px;
  background: linear-gradient(135deg, rgba(11, 172, 240, 0.2), rgba(242, 216, 111, 0.18));
  border: 1px solid rgba(11, 172, 240, 0.18);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.leader-nameplate h3 {
  margin: 0;
  font-size: 1rem;
}

.leader-role {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 216, 111, 0.12);
  color: rgba(239, 246, 252, 0.76);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.leader img {
  display: block;
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  margin-inline: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(11, 172, 240, 0.28);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.leader p {
  font-size: 0.9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.faq-card {
  border: 1px solid rgba(11, 172, 240, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(15, 43, 63, 0.84), rgba(8, 25, 37, 0.96));
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.faq-card h3 {
  font-size: 1.05rem;
}

.faq-card p {
  margin: 0;
}

.form {
  display: grid;
  gap: 0.68rem;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(248, 252, 255, 0.82);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.85rem 1rem;
  font: inherit;
  color: #ffffff;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(233, 242, 248, 0.34);
}

select option {
  color: #ffffff;
  background: #0f2b3f;
}

select optgroup {
  color: #ffe08b;
  background: #0a2233;
  font-style: normal;
  font-weight: 700;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(11, 172, 240, 0.42);
  background: rgba(11, 172, 240, 0.08);
  box-shadow: 0 0 0 4px rgba(11, 172, 240, 0.08);
}

textarea {
  resize: vertical;
}

.form-feedback {
  margin-top: 0.15rem;
  margin-bottom: 0;
  color: #9ae1ff;
  font-size: 0.85rem;
}

.map-wrap iframe,
.fb-wrap iframe {
  width: 100%;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  height: 250px;
}

.map-wrap--inline {
  margin-top: 1.1rem;
}

.map-wrap--inline p {
  margin-bottom: 0.75rem;
}

.map-wrap--inline iframe {
  height: 220px;
}

.fb-wrap--footer {
  margin-top: 0.35rem;
}

.fb-wrap--footer iframe {
  display: block;
  width: min(100%, 270px);
  height: 72px;
  border-radius: 16px;
  background: transparent;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.gallery-controls button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 250, 252, 0.76);
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  font-family: "Syne", sans-serif;
  font-size: 0.76rem;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.gallery-controls button.active,
.gallery-controls button:hover {
  background: rgba(11, 172, 240, 0.16);
  border-color: rgba(11, 172, 240, 0.34);
  color: #ffffff;
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.donor-hero-card {
  display: grid;
  gap: 0.9rem;
}

.donor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.donor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(11, 172, 240, 0.14);
  color: rgba(239, 246, 252, 0.78);
  font-size: 0.78rem;
}

.donor-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.donor-filters {
  display: grid;
  gap: 0.8rem;
}

.donor-count {
  margin-top: 0.35rem;
  color: rgba(233, 242, 248, 0.68);
  font-size: 0.86rem;
}

.donor-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.donor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.donor-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.donor-card[data-blood-group="o"],
.donor-card[data-blood-group="bombay"],
.donor-card[data-blood-group="inra"] {
  border-color: rgba(221, 75, 94, 0.22);
}

.donor-card[data-blood-group="a"],
.donor-card[data-blood-group="a1"],
.donor-card[data-blood-group="a2"] {
  border-color: rgba(239, 122, 104, 0.22);
}

.donor-card[data-blood-group="b"] {
  border-color: rgba(11, 172, 240, 0.22);
}

.donor-card[data-blood-group="ab"],
.donor-card[data-blood-group="a1b"],
.donor-card[data-blood-group="a2b"] {
  border-color: rgba(172, 114, 255, 0.24);
}

.donor-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.donor-top h3 {
  margin-bottom: 0.1rem;
  font-size: 1rem;
}

.donor-place {
  margin: 0;
  color: rgba(233, 242, 248, 0.58);
  font-size: 0.8rem;
}

.blood-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(185, 51, 73, 0.18), rgba(239, 122, 104, 0.16));
  border: 1px solid rgba(221, 75, 94, 0.24);
  color: #ffd7dd;
  font-family: "Space Mono", monospace;
  font-size: 0.84rem;
  font-weight: 700;
}

.donor-card[data-blood-group="o"] .blood-pill {
  background: linear-gradient(135deg, rgba(185, 51, 73, 0.22), rgba(221, 75, 94, 0.18));
  border-color: rgba(221, 75, 94, 0.28);
  color: #ffd7dd;
}

.donor-card[data-blood-group="a"] .blood-pill,
.donor-card[data-blood-group="a1"] .blood-pill,
.donor-card[data-blood-group="a2"] .blood-pill {
  background: linear-gradient(135deg, rgba(239, 122, 104, 0.2), rgba(255, 177, 120, 0.18));
  border-color: rgba(239, 122, 104, 0.28);
  color: #ffe2d1;
}

.donor-card[data-blood-group="b"] .blood-pill {
  background: linear-gradient(135deg, rgba(11, 172, 240, 0.22), rgba(125, 215, 248, 0.16));
  border-color: rgba(11, 172, 240, 0.28);
  color: #d9f6ff;
}

.donor-card[data-blood-group="ab"] .blood-pill,
.donor-card[data-blood-group="a1b"] .blood-pill,
.donor-card[data-blood-group="a2b"] .blood-pill {
  background: linear-gradient(135deg, rgba(129, 92, 255, 0.24), rgba(200, 122, 255, 0.16));
  border-color: rgba(172, 114, 255, 0.28);
  color: #f0ddff;
}

.donor-card[data-blood-group="bombay"] .blood-pill {
  background: linear-gradient(135deg, rgba(255, 196, 64, 0.24), rgba(255, 132, 88, 0.16));
  border-color: rgba(255, 196, 64, 0.3);
  color: #fff0c7;
}

.donor-card[data-blood-group="inra"] .blood-pill {
  background: linear-gradient(135deg, rgba(82, 211, 157, 0.22), rgba(11, 172, 240, 0.14));
  border-color: rgba(82, 211, 157, 0.3);
  color: #ddfff1;
}

.donor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.donor-meta p {
  margin: 0;
  color: rgba(233, 242, 248, 0.74);
  font-size: 0.8rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(11, 172, 240, 0.1);
}

.donor-meta strong {
  color: #fff5da;
}

.donor-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: #8eddf8;
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.gallery-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.2rem;
  align-items: stretch;
}

.gallery-guide {
  display: grid;
  gap: 1rem;
}

.gallery-tile {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(11, 172, 240, 0.14);
  background: linear-gradient(180deg, rgba(15, 43, 63, 0.86), rgba(8, 25, 37, 0.96));
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.gallery-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 172, 240, 0.26);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
}

.gallery-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(160deg, rgba(4, 21, 34, 0.96), rgba(15, 43, 63, 0.92));
  transition: transform 320ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile p {
  margin: 0;
  padding: 0.8rem 0.9rem 0.95rem;
  font-size: 0.84rem;
  color: rgba(239, 246, 252, 0.78);
}

.eyebrow--cyan {
  border-color: rgba(11, 172, 240, 0.26);
  background: rgba(11, 172, 240, 0.1);
  color: #91ddfb;
}

.eyebrow--cyan::before {
  box-shadow: 0 0 16px rgba(11, 172, 240, 0.45);
}

.hero-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  padding: 1.15rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(10, 36, 53, 0.97), rgba(5, 21, 31, 0.985)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 40%);
  border: 1px solid rgba(125, 215, 248, 0.26);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-copy-grid .mini-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18, 52, 72, 0.09), rgba(7, 24, 35, 0.035)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 46%);
  border: 1px solid rgba(205, 242, 252, 0.16);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  backdrop-filter: blur(12px) saturate(1.04);
  -webkit-backdrop-filter: blur(12px) saturate(1.04);
}

.hero-copy-grid .mini-card::before,
.hero-copy-grid .mini-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-copy-grid .mini-card::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 56%);
}

.hero-copy-grid .mini-card::after {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.24;
}

.hero-copy-grid .mini-card:first-child::after {
  left: -58px;
  top: -34px;
  background: radial-gradient(circle, rgba(57, 215, 242, 0.46), rgba(57, 215, 242, 0));
}

.hero-copy-grid .mini-card:last-child::after {
  right: -68px;
  bottom: -42px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.mini-card h3 {
  font-size: 1rem;
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}

.mini-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: rgba(246, 250, 253, 0.9);
  line-height: 1.72;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.stats-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-stack {
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(11, 172, 240, 0.12);
}

.stat-stack strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Syne", sans-serif;
  font-size: 1.55rem;
  color: var(--sun);
}

.stat-stack span {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(233, 242, 248, 0.44);
}

.dense-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dense-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dense-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card h3,
.detail-card h3,
.data-card h3,
.step-card h3,
.contact-panel h3,
.governance-card h3,
.timeline-card h3,
.branch-card h3 {
  font-size: 1.02rem;
}

.feature-list,
.check-list,
.contact-list {
  margin: 0;
  padding-left: 1.1rem;
}

.feature-list li,
.check-list li,
.contact-list li {
  margin-bottom: 0.55rem;
  color: rgba(233, 242, 248, 0.7);
  line-height: 1.75;
}

.quote-panel {
  padding: 1.4rem 1.5rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 33, 49, 0.94), rgba(6, 20, 30, 0.96));
  border: 1px solid rgba(242, 216, 111, 0.16);
  text-align: center;
}

.quote-panel p {
  margin-bottom: 0.6rem;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  color: rgba(249, 252, 254, 0.9);
}

.quote-panel span {
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.quote-panel .quote-attribution {
  justify-content: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  counter-reset: step;
}

.step-index {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(242, 216, 111, 0.12);
  color: var(--sun);
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric-tile {
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(11, 172, 240, 0.12);
}

.metric-tile strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Syne", sans-serif;
  font-size: 1.7rem;
  color: var(--sun);
}

.metric-tile span {
  color: rgba(233, 242, 248, 0.52);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-layout-rich {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.embed-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.2rem;
  align-items: start;
}

.dense-grid--2 {
  align-items: start;
}

.contact-panel,
.detail-card {
  height: auto;
}

.governance-card,
.timeline-card,
.branch-card,
.data-card,
.feature-card {
  height: 100%;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 172, 240, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
  color: rgba(239, 246, 252, 0.74);
}

.contact-pill i { color: var(--ocean); }

.spacious-form {
  gap: 0.85rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.donate-visual {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  border: 1px solid rgba(11, 172, 240, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.qr-panel {
  margin-top: 0.7rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(11, 172, 240, 0.16);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.qr-panel img {
  width: min(100%, 280px);
  border-radius: 18px;
}

.qr-note {
  margin-top: 0.8rem;
  margin-bottom: 0;
  color: rgba(233, 242, 248, 0.7);
  font-size: 0.88rem;
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(11, 172, 240, 0.14);
  background: linear-gradient(180deg, #020d14 0%, #01070c 100%);
  padding: 3.4rem 0 1.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr 1fr;
  gap: 1rem;
}

.footer-grid > section {
  align-self: start;
}

.footer-grid--contact {
  grid-template-columns: 1.15fr 0.8fr 0.8fr 1fr 1fr;
}

.footer-facebook {
  opacity: 0.88;
}

.footer-facebook h4 {
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}

.site-footer h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-brand p,
.footer-links a,
.footer-contact p,
.footer-contact a {
  color: rgba(233, 242, 248, 0.58);
  font-size: 0.88rem;
}

.footer-links a,
.footer-contact a {
  display: block;
  margin-bottom: 0.5rem;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-row a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  overflow: hidden;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 250, 252, 0.76);
  font-size: 0.8rem;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.social-row a::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.16) 50%, transparent 80%);
  transition: transform 420ms ease;
}

.social-row a:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 172, 240, 0.32);
  background: rgba(11, 172, 240, 0.12);
  color: #ffffff;
}

.social-row a:hover::before {
  transform: translateX(120%);
}

.footer-note {
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(233, 242, 248, 0.34);
  font-size: 0.8rem;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(233, 242, 248, 0.56);
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}

.footer-credit i {
  color: #ff8ea7;
}


.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .hero-content,
  .split-layout,
  .grid-4,
  .focus-grid,
  .campaign-grid,
  .impact-grid,
  .progress-grid,
  .story-grid,
  .action-grid,
  .leader-grid,
  .footer-grid,
  .dense-grid,
  .dense-grid--4,
  .process-grid,
  .embed-grid,
  .metric-row,
  .contact-layout-rich,
  .gallery-panel-grid,
  .gallery-spotlight,
  .donor-layout {
    grid-template-columns: 1fr 1fr;
  }

  .donor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    gap: 2.6rem;
  }

  .hero-shell {
    align-items: flex-start;
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-head h2 {
    max-width: 16ch;
  }
}

@media (max-width: 920px) {
  .hero-content,
  .split-layout,
  .grid-2,
  .grid-3,
  .grid-4,
  .focus-grid,
  .campaign-grid,
  .impact-grid,
  .progress-grid,
  .story-grid,
  .action-grid,
  .faq-grid,
  .leader-grid,
  .gallery-grid,
  .footer-grid,
  .dense-grid,
  .dense-grid--2,
  .dense-grid--4,
  .process-grid,
  .metric-row,
  .embed-grid,
  .contact-layout-rich,
  .hero-copy-grid,
  .stats-pair,
  .form-grid-2,
  .gallery-panel-grid,
  .gallery-spotlight,
  .gallery-guide,
  .donor-layout,
  .donor-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 4vw;
    right: 4vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(3, 19, 29, 0.96);
    border: 1px solid rgba(11, 172, 240, 0.18);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
  }

  .site-nav.open {
    display: flex;
  }

  .hero--home {
    min-height: auto;
  }

  .hero-content {
    padding: 4.5rem 0 3.5rem;
    gap: 1.6rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-shell {
    align-items: center;
  }

  .hero-shell > .card,
  .hero-shell > .hero-copy-grid,
  .hero-shell > .hero-quote {
    max-width: none;
  }

  .timeline::before {
    left: 33px;
  }

  .timeline .item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .orbit-chip--a { right: 0; }
  .orbit-chip--b { left: 0; }
  .orbit-chip--c { left: 8%; }

  .stats-ribbon {
    margin-top: 0;
    padding-top: 1.2rem;
    padding-bottom: 0.45rem;
  }

  .stats-ribbon .marquee {
    margin-bottom: 0.7rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(94vw, 1320px);
  }

  .logo {
    max-width: 170px;
  }

  .flag-mark {
    font-size: 0.95rem;
  }

  .section {
    padding: 3.7rem 0;
  }

  .section--after-stats {
    padding-top: 2.9rem;
  }

  .announcement .container {
    justify-content: flex-start;
  }

  .announcement-inner {
    justify-content: center;
  }

  .anniversary-banner .container {
    justify-content: flex-start;
  }

  .anniversary-panel {
    flex-direction: column;
    align-items: center;
    padding: 0.7rem 0.8rem;
  }

  .anniversary-copy {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .anniversary-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    padding-top: 4rem;
    padding-bottom: 3.2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 1.03;
  }

  .hero-lead,
  .hero-copy > p:last-of-type {
    font-size: 0.96rem;
  }

  .hero-actions,
  .hero-metrics,
  .badge-row,
  .social-row {
    gap: 0.7rem;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.6rem;
  }

  .hero-mini {
    min-width: 0;
    padding: 0.8rem 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(11, 172, 240, 0.12);
  }

  .hero-mini strong {
    font-size: 1.2rem;
  }

  .hero-mini span {
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .mini-card,
  .stat-stack,
  .card,
  .faq-card {
    border-radius: 18px;
  }

  .mini-card,
  .stat-stack,
  .faq-card,
  .progress-card,
  .campaign-card,
  .feature-card,
  .data-card,
  .branch-card,
  .governance-card,
  .detail-card {
    padding: 0.95rem;
  }

  .section-head {
    margin-bottom: 1.2rem;
  }

  .section-head h2 {
    max-width: none;
  }

  .story-meta {
    gap: 0.45rem;
  }

  .footer-grid {
    gap: 0.95rem;
  }

  .btn {
    width: 100%;
  }

  .hero-quote {
    max-width: none;
  }

  .timeline {
    gap: 0.7rem;
  }

  .timeline .item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.65rem;
  }

  .timeline::before {
    display: block;
    left: 31px;
    top: 0.45rem;
    bottom: 0.45rem;
  }

  .timeline-year {
    width: 100%;
    min-height: 32px;
    padding-inline: 0.45rem;
    box-shadow: 0 0 0 4px rgba(9, 29, 42, 0.96);
    font-size: 0.64rem;
  }

  .timeline-body {
    padding: 0.82rem 0.85rem;
    border-radius: 14px;
  }

  .timeline-body strong {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .campaign-card {
    text-align: center;
  }

  .donor-card {
    gap: 0.6rem;
    justify-items: center;
    text-align: center;
  }

  .donor-top {
    flex-direction: column;
    align-items: center;
  }

  .blood-pill {
    min-width: 0;
    font-size: 0.9rem;
  }

  .donor-place,
  .donor-contact {
    text-align: center;
  }

  .donor-meta {
    justify-content: center;
  }

  .campaign-icon {
    margin-inline: auto;
  }

  .leader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    text-align: center;
  }

  .leader img {
    width: 118px;
    height: 118px;
    margin-bottom: 0;
    justify-self: center;
  }

  .leader-nameplate,
  .leader-role {
    justify-self: center;
    margin-bottom: 0;
  }

  .leader-nameplate {
    padding: 0.44rem 0.82rem 0.48rem;
  }

  .leader-nameplate h3 {
    font-size: 0.92rem;
  }

  .leader-role {
    margin-top: -0.15rem;
    font-size: 0.64rem;
    letter-spacing: 0.05em;
  }

  .leader p:last-of-type {
    margin-top: 0.05rem;
    font-size: 0.84rem;
    line-height: 1.6;
    text-align: center;
  }

  .scroll-cue {
    left: 50%;
    right: auto;
    bottom: 0.9rem;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0;
    width: auto;
    background: none;
    border: 0;
    box-shadow: none;
    font-size: 0.54rem;
    letter-spacing: 0.1em;
  }

  .scroll-cue--after-stats {
    position: static;
    transform: none;
    margin: 1.6rem auto 0.35rem;
    bottom: auto;
  }

  .scroll-cue i {
    font-size: 0.8rem;
  }

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

  .map-wrap iframe,
  .fb-wrap iframe {
    height: 280px;
  }

  .map-wrap--inline iframe {
    height: 240px;
  }

  .fb-wrap--footer iframe {
    height: 72px;
  }

  .footer-note {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-credit {
    margin-left: 0;
    white-space: normal;
    text-align: center;
  }

  .orbit-chip {
    position: static;
  }

  .orb-stage {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--ocean);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}
