:root {
  --pine: #003b31;
  --green: #005d4c;
  --moss: #006653;
  --mint: #abe6bf;
  --teal: #2fa38b;
  --cream: #fffbee;
  --charcoal: #445853;
  --stone: #bab3a3;
  --black: #000000;
  --white: #ffffff;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: Moontime;
  src:
    url("assets/fonts/moontime.woff2") format("woff2"),
    url("assets/fonts/moontime.ttf") format("truetype"),
    url("assets/fonts/moontime.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: Gistesy;
  src: url("assets/fonts/gistesy.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  color: var(--pine);
  background: var(--cream);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

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

.site-header {
  border-bottom: 1px solid rgba(0, 59, 49, 0.12);
  background: var(--cream);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 74px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.brand {
  display: grid;
  gap: 1px;
  font-family: Anton, Impact, sans-serif;
  font-size: 25px;
  line-height: 0.95;
}

.brand span,
.script {
  color: var(--teal);
  font-family: Gistesy, Satisfy, "Segoe Script", "Brush Script MT", cursive;
  font-weight: 400;
}

.brand span {
  font-size: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.button,
.nav-button {
  --button-bg: linear-gradient(135deg, rgba(0, 59, 49, 0.6), rgba(0, 102, 83, 0.42));
  --button-fg: var(--cream);
  --button-ring: rgba(171, 230, 191, 0.98);
  --button-ring-soft: rgba(47, 163, 139, 0.5);
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  min-height: 66px;
  padding: 0 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--button-fg);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.28),
    0 0 28px rgba(171, 230, 191, 0.28),
    0 18px 40px rgba(0, 59, 49, 0.2);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
  animation: buttonGlow 3.6s ease-in-out infinite;
}

.button::before,
.button::after,
.nav-button::before,
.nav-button::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.button::before,
.nav-button::before {
  z-index: -2;
  inset: -55%;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 112deg,
    rgba(255, 251, 238, 0.5) 138deg,
    var(--button-ring) 158deg,
    var(--button-ring-soft) 178deg,
    transparent 214deg 360deg
  );
  filter: blur(0.2px);
  animation: buttonOrbit 3.8s linear infinite;
}

.button::after,
.nav-button::after {
  z-index: -1;
  inset: 3px;
  border-radius: inherit;
  background: var(--button-bg);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 0 22px rgba(255, 255, 255, 0.08);
}

.nav-button {
  min-height: 70px;
  padding-inline: 44px;
}

.button:hover,
.nav-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 2px rgba(171, 230, 191, 0.38),
    0 0 46px rgba(171, 230, 191, 0.54),
    0 22px 48px rgba(47, 163, 139, 0.32);
}

.button:hover::before,
.nav-button:hover::before {
  animation-duration: 2.2s;
}

.button:focus-visible,
.nav-button:focus-visible {
  outline: 3px solid rgba(171, 230, 191, 0.9);
  outline-offset: 5px;
}

.button.mint {
  --button-bg: linear-gradient(135deg, rgba(171, 230, 191, 0.86), rgba(47, 163, 139, 0.48));
  --button-fg: var(--pine);
  --button-ring: rgba(255, 251, 238, 0.98);
  color: var(--button-fg);
}

.button.light {
  --button-bg: linear-gradient(135deg, rgba(255, 251, 238, 0.88), rgba(171, 230, 191, 0.26));
  --button-fg: var(--pine);
  --button-ring: rgba(171, 230, 191, 0.98);
  color: var(--button-fg);
}

.button.teal {
  --button-bg: linear-gradient(135deg, rgba(47, 163, 139, 0.82), rgba(0, 102, 83, 0.52));
  --button-fg: var(--cream);
  --button-ring: rgba(171, 230, 191, 0.98);
  color: var(--button-fg);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.86;
}

.button[aria-disabled="true"]:hover {
  transform: none;
}

@keyframes buttonGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(171, 230, 191, 0.18),
      0 0 18px rgba(171, 230, 191, 0.18),
      0 16px 34px rgba(0, 59, 49, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow:
      0 0 0 2px rgba(171, 230, 191, 0.32),
      0 0 34px rgba(171, 230, 191, 0.34),
      0 18px 38px rgba(47, 163, 139, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }
}

@keyframes buttonOrbit {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .button::before,
  .nav-button,
  .nav-button::before,
  .card,
  .detail-card,
  .download-card,
  .platform-link,
  .support-list span {
    animation: none;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 24px 74px;
  background:
    radial-gradient(circle at 88% 28%, rgba(171, 230, 191, 0.12), transparent 30%),
    linear-gradient(135deg, var(--pine), #005143 72%, #004339);
  color: var(--cream);
}

.page-hero-inner,
.section-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero::before {
  position: absolute;
  right: -190px;
  bottom: -300px;
  width: 580px;
  height: 580px;
  content: "";
  border: 1px solid rgba(171, 230, 191, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  display: none;
}

.story-hero {
  background:
    radial-gradient(circle at 88% 78%, rgba(171, 230, 191, 0.12), transparent 30%),
    linear-gradient(135deg, var(--pine), #005344);
}

.story-hero::before {
  right: -210px;
  bottom: -280px;
  width: 560px;
  height: 560px;
  border-color: rgba(171, 230, 191, 0.12);
}

.story-hero::after {
  display: none;
}

.resources-hero {
  background:
    radial-gradient(circle at 88% 72%, rgba(171, 230, 191, 0.14), transparent 30%),
    linear-gradient(135deg, var(--pine), #005344);
}

.resources-hero::before {
  right: -210px;
  bottom: -300px;
  border-color: rgba(171, 230, 191, 0.14);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: Anton, Impact, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-label::before {
  display: block;
  width: 42px;
  height: 2px;
  content: "";
  background: currentColor;
}

.dark .section-label {
  color: var(--mint);
}

.section.dark {
  background: var(--pine);
  color: var(--cream);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  font-size: clamp(64px, 12vw, 150px);
}

h2 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 90px);
}

h3 {
  font-size: clamp(30px, 4vw, 52px);
}

.script {
  display: block;
  margin-top: -6px;
  color: var(--mint);
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 0.9;
  white-space: nowrap;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 251, 238, 0.88);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 750;
  line-height: 1.35;
}

.gift-disclosure {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 251, 238, 0.74);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 84px 24px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
}

.panel {
  padding: 32px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 22px 55px rgba(0, 59, 49, 0.08);
}

.panel.dark {
  background: var(--moss);
  color: var(--cream);
}

.youtube-feature {
  display: grid;
  gap: 20px;
}

.youtube-feature .eyebrow {
  margin-bottom: 0;
  color: var(--mint);
}

.youtube-feature h2 {
  font-size: clamp(42px, 6vw, 82px);
}

.youtube-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(171, 230, 191, 0.36);
  border-radius: 8px;
  background: rgba(0, 59, 49, 0.45);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.12),
    0 18px 46px rgba(0, 0, 0, 0.18);
}

.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-channel-button {
  justify-self: start;
}

.panel.mint {
  background: var(--mint);
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 800;
}

.team-details-section {
  background:
    repeating-linear-gradient(135deg, rgba(0, 59, 49, 0.026) 0 1px, transparent 1px 34px),
    linear-gradient(rgba(255, 251, 238, 0.82), rgba(255, 251, 238, 0.82)),
    radial-gradient(circle at 8% 12%, rgba(171, 230, 191, 0.72), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(47, 163, 139, 0.28), transparent 28%),
    var(--cream);
}

.team-overview {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
  padding: 36px;
  border: 1px solid rgba(171, 230, 191, 0.28);
  background: linear-gradient(135deg, rgba(0, 59, 49, 0.98), rgba(0, 102, 83, 0.96));
  box-shadow: 0 28px 70px rgba(0, 59, 49, 0.18);
}

.team-overview h2 {
  max-width: 900px;
}

.team-overview p {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 251, 238, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
}

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

.detail-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 270px;
  padding: 24px;
  overflow: hidden;
  border: 2px solid rgba(171, 230, 191, 0.56);
  border-radius: 16px;
  background: rgba(255, 251, 238, 0.72);
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.14),
    0 18px 46px rgba(0, 59, 49, 0.12);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  animation: cardGlow 4s ease-in-out infinite;
}

.detail-card:nth-child(2),
.detail-card:nth-child(5) {
  animation-delay: 200ms;
}

.detail-card:nth-child(3),
.detail-card:nth-child(6) {
  animation-delay: 400ms;
}

.detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(171, 230, 191, 0.98);
  background: rgba(171, 230, 191, 0.28);
  box-shadow:
    0 0 0 2px rgba(171, 230, 191, 0.22),
    0 0 36px rgba(171, 230, 191, 0.36),
    0 24px 54px rgba(0, 59, 49, 0.14);
}

.detail-number {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.detail-card h3 {
  font-size: clamp(30px, 3.3vw, 46px);
}

.detail-card p {
  margin: 0;
  color: var(--charcoal);
  font-weight: 700;
}

.body-copy {
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 550;
}

.links-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(171, 230, 191, 0.2), transparent 28%),
    linear-gradient(145deg, var(--pine), #005143 60%, #00352d);
}

.linktree {
  min-height: 100vh;
  padding: 32px 18px;
  color: var(--cream);
}

.linktree-inner {
  display: grid;
  justify-items: center;
  max-width: 520px;
  margin: 0 auto;
}

.linktree-brand {
  margin-bottom: 22px;
  color: var(--cream);
  text-align: center;
}

.linktree-brand span {
  color: var(--mint);
}

.linktree-photo {
  width: min(190px, 46vw);
  aspect-ratio: 1;
  margin-bottom: 24px;
  overflow: hidden;
  border: 2px solid rgba(171, 230, 191, 0.52);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(171, 230, 191, 0.08),
    0 22px 60px rgba(0, 0, 0, 0.28);
}

.linktree-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: grayscale(1);
}

.linktree-copy {
  margin-bottom: 22px;
  text-align: center;
}

.linktree-copy .eyebrow {
  margin-bottom: 12px;
}

.linktree-copy h1 {
  max-width: 520px;
  font-size: clamp(42px, 13vw, 74px);
}

.linktree-copy .script {
  margin: 2px 0 12px;
  font-size: clamp(34px, 11vw, 54px);
}

.linktree-copy p {
  max-width: 460px;
  margin: 0 auto;
  color: rgba(255, 251, 238, 0.84);
  font-weight: 750;
  line-height: 1.38;
}

.linktree-list {
  display: grid;
  width: 100%;
  gap: 12px;
}

.linktree-link {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 17px 20px;
  border: 1px solid rgba(171, 230, 191, 0.34);
  border-radius: 8px;
  background: rgba(255, 251, 238, 0.92);
  color: var(--pine);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.linktree-link.primary {
  background: linear-gradient(135deg, rgba(171, 230, 191, 0.96), rgba(47, 163, 139, 0.58));
}

.linktree-link:hover {
  transform: translateY(-3px);
  border-color: rgba(171, 230, 191, 0.92);
  background: var(--mint);
}

.linktree-link span {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-transform: uppercase;
}

.linktree-link small {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.story-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(171, 230, 191, 0.28), transparent 30%),
    radial-gradient(circle at 86% 88%, rgba(47, 163, 139, 0.16), transparent 28%),
    repeating-linear-gradient(0deg, rgba(0, 59, 49, 0.024) 0 1px, transparent 1px 38px),
    var(--cream);
}

.story-section::before {
  position: absolute;
  left: -190px;
  top: 80px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(47, 163, 139, 0.2);
  border-radius: 50%;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.story-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 2px solid rgba(171, 230, 191, 0.5);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(171, 230, 191, 0.28), rgba(47, 163, 139, 0.12)),
    rgba(255, 251, 238, 0.86);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.12),
    0 22px 54px rgba(0, 59, 49, 0.12);
}

.story-card:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(205, 231, 247, 0.56), rgba(171, 230, 191, 0.16)),
    rgba(255, 251, 238, 0.82);
}

.story-card::before {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 230px;
  height: 230px;
  content: "";
  border: 1px solid rgba(0, 59, 49, 0.1);
  border-radius: 50%;
}

.story-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-card h3 {
  margin-bottom: 18px;
  color: var(--pine);
  font-size: clamp(36px, 4vw, 58px);
}

.story-card blockquote {
  position: relative;
  margin: 0;
  color: var(--charcoal);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.58;
}

.story-submit-copy {
  max-width: 760px;
}

.download-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(171, 230, 191, 0.3), transparent 30%),
    radial-gradient(circle at 94% 84%, rgba(47, 163, 139, 0.16), transparent 30%),
    var(--cream);
}

.download-section::before {
  position: absolute;
  right: -95px;
  top: 120px;
  width: 360px;
  height: 520px;
  content: "";
  border-right: 2px solid rgba(47, 163, 139, 0.18);
  border-radius: 52% 48% 0 0;
  transform: rotate(13deg);
}

.download-section::after {
  position: absolute;
  right: 26px;
  top: 214px;
  width: 180px;
  height: 320px;
  content: "";
  background:
    radial-gradient(ellipse at 28% 18%, transparent 0 38px, rgba(47, 163, 139, 0.18) 39px 40px, transparent 41px),
    radial-gradient(ellipse at 78% 48%, transparent 0 48px, rgba(47, 163, 139, 0.16) 49px 50px, transparent 51px),
    radial-gradient(ellipse at 24% 82%, transparent 0 42px, rgba(47, 163, 139, 0.16) 43px 44px, transparent 45px);
  pointer-events: none;
}

.download-intro {
  max-width: 900px;
}

.download-intro .eyebrow {
  color: var(--teal);
}

.download-intro .body-copy {
  max-width: 780px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 750;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.download-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 30px;
  overflow: hidden;
  border: 2px solid rgba(171, 230, 191, 0.58);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(0, 102, 83, 0.98), rgba(0, 83, 68, 0.94)),
    var(--green);
  color: var(--cream);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.12),
    0 22px 54px rgba(0, 59, 49, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  animation: cardGlow 4.4s ease-in-out infinite;
}

.download-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(47, 163, 139, 0.96), rgba(0, 102, 83, 0.9)),
    var(--teal);
  animation-delay: 180ms;
}

.download-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(171, 230, 191, 0.94), rgba(255, 251, 238, 0.72)),
    var(--mint);
  color: var(--pine);
  animation-delay: 360ms;
}

.download-card:hover {
  transform: translateY(-6px);
  border-color: rgba(171, 230, 191, 0.98);
  box-shadow:
    0 0 0 2px rgba(171, 230, 191, 0.22),
    0 0 40px rgba(171, 230, 191, 0.34),
    0 28px 60px rgba(0, 59, 49, 0.2);
}

.download-card::after {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  content: "";
  border: 2px solid rgba(255, 251, 238, 0.28);
  border-radius: 50%;
}

.download-card span {
  display: inline-grid;
  place-items: center;
  width: max-content;
  min-width: 72px;
  height: 42px;
  padding: 0 16px;
  margin-bottom: auto;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.download-card > span:first-child {
  position: relative;
  z-index: 1;
}

.download-card h3 {
  margin-top: 54px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
}

.download-card p {
  margin: 0 0 30px;
  color: inherit;
  font-size: 16px;
  font-weight: 800;
}

.download-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.download-card > .button {
  min-width: max-content;
  height: auto;
  min-height: 58px;
  padding-inline: 28px;
  white-space: nowrap;
}

.resource-give-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-top: 44px;
  padding: 34px;
  overflow: hidden;
  border: 2px solid rgba(47, 163, 139, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 251, 238, 0.9), rgba(171, 230, 191, 0.26)),
    var(--cream);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.16),
    0 22px 54px rgba(0, 59, 49, 0.1);
}

.resource-give-panel::after {
  position: absolute;
  right: -64px;
  top: -82px;
  width: 210px;
  height: 210px;
  content: "";
  border: 2px solid rgba(47, 163, 139, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.resource-give-panel .eyebrow {
  color: var(--teal);
}

.resource-give-panel h2 {
  max-width: 760px;
  font-size: clamp(38px, 5.8vw, 76px);
}

.resource-give-panel .body-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 750;
}

.resource-give-panel .button {
  white-space: nowrap;
}

.resource-give-panel .gift-disclosure {
  grid-column: 1 / -1;
  max-width: 820px;
  margin-top: 0;
  color: rgba(0, 59, 49, 0.68);
}

.form-section {
  background:
    repeating-linear-gradient(120deg, rgba(0, 59, 49, 0.026) 0 1px, transparent 1px 34px),
    linear-gradient(rgba(255, 251, 238, 0.86), rgba(255, 251, 238, 0.86)),
    radial-gradient(circle at 10% 10%, rgba(171, 230, 191, 0.72), transparent 32%),
    radial-gradient(circle at 90% 76%, rgba(47, 163, 139, 0.3), transparent 30%),
    var(--cream);
}

.form-panel {
  display: grid;
  gap: 32px;
  padding: 34px;
  border: 2px solid rgba(171, 230, 191, 0.46);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 251, 238, 0.72), rgba(171, 230, 191, 0.18)),
    var(--white);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.14),
    0 28px 70px rgba(0, 59, 49, 0.14);
}

.invite-form {
  display: grid;
  gap: 24px;
}

.form-hidden {
  display: none;
}

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

.invite-form label,
.invite-form legend {
  color: var(--pine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invite-form label {
  display: grid;
  gap: 8px;
}

.invite-form input,
.invite-form select,
.invite-form textarea {
  width: 100%;
  border: 2px solid rgba(0, 59, 49, 0.14);
  border-radius: 16px;
  background: rgba(255, 251, 238, 0.86);
  color: var(--pine);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.invite-form input,
.invite-form select {
  min-height: 54px;
  padding: 0 15px;
}

.invite-form textarea {
  min-height: 130px;
  padding: 15px;
  resize: vertical;
}

.invite-form input:focus,
.invite-form select:focus,
.invite-form textarea:focus {
  outline: 0;
  border-color: rgba(47, 163, 139, 0.88);
  background: var(--cream);
  box-shadow:
    0 0 0 3px rgba(171, 230, 191, 0.34),
    0 0 28px rgba(171, 230, 191, 0.24);
}

.invite-form fieldset {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 20px;
  border: 2px solid rgba(171, 230, 191, 0.44);
  border-radius: 16px;
  background: rgba(0, 102, 83, 0.06);
}

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

.option-grid label,
.confirm-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border: 2px solid rgba(171, 230, 191, 0.44);
  border-radius: 999px;
  background: rgba(255, 251, 238, 0.72);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 12px 28px rgba(0, 59, 49, 0.06);
}

.option-grid input,
.confirm-line input {
  width: 16px;
  min-height: auto;
  accent-color: var(--teal);
}

.confirm-line {
  justify-content: flex-start;
  max-width: 720px;
  border-color: rgba(47, 163, 139, 0.34);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  border: 2px solid rgba(171, 230, 191, 0.52);
  border-radius: 16px;
  background: var(--green);
  color: var(--cream);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.12),
    0 20px 48px rgba(0, 59, 49, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  animation: cardGlow 4.2s ease-in-out infinite;
}

.card:nth-child(2) {
  animation-delay: 180ms;
}

.card:nth-child(3) {
  animation-delay: 360ms;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(171, 230, 191, 0.98);
  box-shadow:
    0 0 0 2px rgba(171, 230, 191, 0.2),
    0 0 40px rgba(171, 230, 191, 0.34),
    0 28px 60px rgba(0, 59, 49, 0.2);
}

.card:nth-child(2) {
  background: var(--teal);
}

.card:nth-child(3) {
  background: var(--mint);
  color: var(--pine);
}

@keyframes cardGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(171, 230, 191, 0.12),
      0 0 16px rgba(171, 230, 191, 0.14),
      0 20px 48px rgba(0, 59, 49, 0.14);
  }

  50% {
    box-shadow:
      0 0 0 2px rgba(171, 230, 191, 0.22),
      0 0 34px rgba(171, 230, 191, 0.3),
      0 24px 54px rgba(47, 163, 139, 0.18);
  }
}

.listen-panel {
  border: 2px solid rgba(171, 230, 191, 0.42);
  background:
    linear-gradient(135deg, rgba(171, 230, 191, 0.28), rgba(47, 163, 139, 0.1)),
    var(--white);
}

.listen-panel .eyebrow {
  color: var(--teal);
}

.platform-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 14px 16px;
  border: 2px solid rgba(171, 230, 191, 0.5);
  border-radius: 999px;
  background: rgba(255, 251, 238, 0.7);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.12),
    0 16px 38px rgba(0, 59, 49, 0.1);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  animation: cardGlow 4.6s ease-in-out infinite;
}

.platform-link:hover {
  transform: translateY(-4px);
  border-color: rgba(171, 230, 191, 0.98);
  background: rgba(171, 230, 191, 0.34);
  box-shadow:
    0 0 0 2px rgba(171, 230, 191, 0.22),
    0 0 34px rgba(171, 230, 191, 0.32),
    0 22px 48px rgba(0, 59, 49, 0.16);
}

.platform-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--mint);
}

.platform-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.platform-link strong,
.platform-link small {
  display: block;
}

.platform-link strong {
  color: var(--pine);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-link small {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 750;
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .detail-card,
  .download-card,
  .platform-link,
  .support-list span {
    animation: none;
  }
}

.site-footer {
  padding: 34px 24px;
  background: var(--pine);
  color: rgba(255, 251, 238, 0.76);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  gap: 20px;
}

.footer-inner strong {
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 850px) {
  .nav {
    gap: 16px;
    padding-block: 12px;
  }

  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 8px 10px;
    font-size: 9px;
    letter-spacing: 0.055em;
  }

  .split,
  .cards,
  .detail-grid,
  .download-grid,
  .option-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .resource-give-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .resource-give-panel .button {
    justify-self: start;
  }

  .youtube-channel-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .page-hero::before,
  .page-hero::after {
    opacity: 0.45;
  }

  .page-hero,
  .section {
    padding-inline: 18px;
  }

  .page-hero {
    padding-block: 72px 58px;
  }

  h1 {
    font-size: clamp(62px, 18vw, 108px);
  }

  h2 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding-inline: 18px;
    padding-block: 16px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 8px 12px;
    line-height: 1.2;
  }

  .script {
    font-size: clamp(30px, 9vw, 44px);
  }

  .actions,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .form-panel {
    padding: 22px;
  }

  .resource-give-panel {
    padding: 24px;
  }

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


/* 90-day establishment campaign additions */
.establishment-hero {
  background:
    radial-gradient(circle at 88% 28%, rgba(171, 230, 191, 0.14), transparent 30%),
    linear-gradient(135deg, var(--pine), #005d4c 68%, #003b31);
}

.campaign-overview-section {
  padding-block: 56px;
  background:
    repeating-linear-gradient(120deg, rgba(0, 59, 49, 0.026) 0 1px, transparent 1px 34px),
    var(--cream);
}

.campaign-story {
  max-width: 940px;
}

.campaign-story h2 {
  max-width: 900px;
}

.campaign-disclosure {
  max-width: 760px;
  margin: 30px 0 0;
  padding: 16px 18px;
  border-left: 4px solid rgba(47, 163, 139, 0.75);
  background: rgba(255, 255, 255, 0.54);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.campaign-detail-grid {
  margin-top: 30px;
}

.campaign-detail-grid .detail-card {
  border-color: rgba(171, 230, 191, 0.78);
  background:
    linear-gradient(145deg, rgba(255, 251, 238, 0.92), rgba(171, 230, 191, 0.22)),
    var(--cream);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.22),
    0 0 32px rgba(171, 230, 191, 0.34),
    0 22px 48px rgba(0, 59, 49, 0.16);
}

.campaign-detail-grid .detail-card h3 {
  color: var(--pine);
}

.campaign-detail-grid .detail-card p {
  color: var(--charcoal);
}

.campaign-give-panel {
  margin-top: 0;
}

.campaign-gift-section {
  padding-block: 38px 64px;
}

.support-ways {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
  margin-top: 34px;
}

.support-ways h2 {
  max-width: 390px;
  font-size: clamp(38px, 5vw, 66px);
}

.support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  justify-self: end;
}

.support-list span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 13px 16px 13px 48px;
  overflow: hidden;
  border: 2px solid rgba(171, 230, 191, 0.58);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(171, 230, 191, 0.2)),
    var(--cream);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.16),
    0 0 24px rgba(171, 230, 191, 0.2),
    0 16px 34px rgba(0, 59, 49, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: supportTileGlow 4.2s ease-in-out infinite;
}

.support-list span:nth-child(2n) {
  animation-delay: 180ms;
}

.support-list span:nth-child(3n) {
  animation-delay: 360ms;
}

.support-list span::before {
  position: absolute;
  left: 18px;
  width: 16px;
  height: 16px;
  content: "";
  border: 2px solid rgba(255, 251, 238, 0.92);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--teal));
  box-shadow: 0 8px 20px rgba(47, 163, 139, 0.28);
}

.support-list span:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(47, 163, 139, 0.14)),
    var(--cream);
}

@keyframes supportTileGlow {
  0%,
  100% {
    border-color: rgba(171, 230, 191, 0.5);
    box-shadow:
      0 0 0 1px rgba(171, 230, 191, 0.14),
      0 0 20px rgba(171, 230, 191, 0.16),
      0 16px 34px rgba(0, 59, 49, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  50% {
    border-color: rgba(171, 230, 191, 0.86);
    box-shadow:
      0 0 0 2px rgba(171, 230, 191, 0.2),
      0 0 34px rgba(171, 230, 191, 0.36),
      0 18px 38px rgba(47, 163, 139, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-list span {
    animation: none;
  }
}

.campaign-faq-section {
  padding-block: 60px 74px;
  background:
    repeating-linear-gradient(120deg, rgba(0, 59, 49, 0.024) 0 1px, transparent 1px 34px),
    linear-gradient(rgba(255, 251, 238, 0.94), rgba(255, 251, 238, 0.94)),
    radial-gradient(circle at 92% 8%, rgba(171, 230, 191, 0.36), transparent 30%),
    var(--cream);
}

.faq-header {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 28px;
}

.faq-header h2 {
  max-width: 760px;
  font-size: clamp(38px, 5.5vw, 76px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 2px solid rgba(171, 230, 191, 0.74);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(171, 230, 191, 0.2)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.16),
    0 0 28px rgba(171, 230, 191, 0.24),
    0 18px 42px rgba(0, 59, 49, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  animation: faqGlow 4.4s ease-in-out infinite;
}

.faq-list details:nth-child(2n) {
  animation-delay: 220ms;
}

.faq-list details:nth-child(3n) {
  animation-delay: 440ms;
}

.faq-list details[open] {
  border-color: rgba(171, 230, 191, 0.96);
  box-shadow:
    0 0 0 2px rgba(171, 230, 191, 0.24),
    0 0 42px rgba(171, 230, 191, 0.38),
    0 22px 48px rgba(47, 163, 139, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 20px 64px 20px 24px;
  color: var(--pine);
  cursor: pointer;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 950;
  line-height: 1.15;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 24px;
  width: 32px;
  height: 32px;
  content: "+";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--teal));
  color: var(--pine);
  font-size: 24px;
  font-weight: 900;
  line-height: 31px;
  text-align: center;
  box-shadow:
    0 0 0 4px rgba(171, 230, 191, 0.18),
    0 0 22px rgba(171, 230, 191, 0.42),
    0 10px 22px rgba(47, 163, 139, 0.22);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 900px;
  margin: -4px 24px 24px;
  color: var(--charcoal);
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 720;
  line-height: 1.55;
}

@keyframes faqGlow {
  0%,
  100% {
    border-color: rgba(171, 230, 191, 0.62);
    box-shadow:
      0 0 0 1px rgba(171, 230, 191, 0.14),
      0 0 24px rgba(171, 230, 191, 0.2),
      0 18px 42px rgba(0, 59, 49, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  50% {
    border-color: rgba(171, 230, 191, 0.94);
    box-shadow:
      0 0 0 2px rgba(171, 230, 191, 0.22),
      0 0 42px rgba(171, 230, 191, 0.38),
      0 22px 50px rgba(47, 163, 139, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-list details {
    animation: none;
  }
}

.timeline-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(255, 251, 238, 0.16);
  border-radius: 14px;
  background: rgba(255, 251, 238, 0.08);
}

.timeline-list span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-list h3 {
  color: var(--cream);
  font-size: clamp(28px, 3.8vw, 48px);
}

.timeline-list p {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(255, 251, 238, 0.8);
  font-size: 17px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .timeline-list article {
    grid-template-columns: 1fr;
  }

  .support-ways {
    grid-template-columns: 1fr;
  }

  .faq-header {
    grid-template-columns: 1fr;
  }
}

/* Advanced giving page upgrades */
.giving-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 40px;
  align-items: center;
}

.donation-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
  border: 2px solid rgba(171, 230, 191, 0.66);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 251, 238, 0.96), rgba(171, 230, 191, 0.2)),
    var(--cream);
  color: var(--pine);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.2),
    0 0 34px rgba(171, 230, 191, 0.28),
    0 30px 70px rgba(0, 0, 0, 0.24);
}

.donation-panel::before {
  position: absolute;
  inset: -50% -20% auto auto;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(0, 102, 83, 0.14);
  border-radius: 50%;
}

.donation-panel-kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.donation-panel h2 {
  max-width: none;
  font-size: clamp(50px, 6vw, 78px);
}

.partner-donation-panel h2 {
  font-size: clamp(38px, 4vw, 56px);
}

.donation-panel p {
  margin: 0;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.amount-grid a,
.clarity-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 2px solid rgba(0, 102, 83, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--pine);
  font-family: Anton, Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 24px rgba(0, 59, 49, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.amount-grid a:hover,
.clarity-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 163, 139, 0.72);
  background: rgba(171, 230, 191, 0.28);
}

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

.partner-amount-grid a {
  min-height: 54px;
  font-size: 24px;
}

.donation-panel .button {
  width: 100%;
  min-height: 60px;
}

.donation-note {
  padding-top: 4px;
  color: rgba(68, 88, 83, 0.8) !important;
  font-size: 12px !important;
}

.giving-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.giving-tabs span {
  min-height: 38px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(0, 102, 83, 0.1);
  color: var(--pine);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.campaign-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 38px;
  align-items: end;
  max-width: none;
}

.progress-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(0, 102, 83, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 46px rgba(0, 59, 49, 0.08);
}

.progress-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.progress-card strong {
  color: var(--pine);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.progress-card p {
  margin: 0;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.progress-track {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(0, 59, 49, 0.14);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--teal));
}

.milestone-strip,
.pathway-grid {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.milestone-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.milestone-strip span,
.pathway-grid article {
  min-height: 76px;
  padding: 16px;
  border: 1px solid rgba(171, 230, 191, 0.32);
  border-radius: 16px;
  background: rgba(255, 251, 238, 0.08);
  color: rgba(255, 251, 238, 0.86);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

.pathway-grid article {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(171, 230, 191, 0.2)),
    var(--cream);
  color: var(--charcoal);
}

.pathway-grid strong {
  display: block;
  color: var(--pine);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.9;
}

.pathway-grid span {
  display: block;
  margin-top: 10px;
}

.campaign-next-section h2,
.partner-flow-section h2 {
  color: var(--cream);
}

.partner-flow-section {
  padding-block: 64px;
}

.partner-flow-section .split {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.55fr);
  align-items: start;
  gap: 36px;
}

.partner-flow-section h2 {
  max-width: 380px;
  font-size: clamp(46px, 6.4vw, 78px);
}

.compact-timeline {
  margin-top: 0;
}

.compact-timeline article {
  border-color: rgba(171, 230, 191, 0.26);
  background: rgba(255, 251, 238, 0.07);
}

.partner-hero {
  background:
    radial-gradient(circle at 88% 28%, rgba(171, 230, 191, 0.15), transparent 30%),
    linear-gradient(135deg, #003b31, #005143 64%, #00352d);
}

.partner-impact-section {
  background:
    repeating-linear-gradient(120deg, rgba(0, 59, 49, 0.026) 0 1px, transparent 1px 34px),
    var(--cream);
}

.partner-detail-grid {
  margin-top: 30px;
}

.partner-detail-grid .detail-card {
  min-height: 300px;
}

.giving-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.giving-flow article {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  min-height: 215px;
  padding: 22px;
  border: 1px solid rgba(171, 230, 191, 0.7);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(171, 230, 191, 0.48) 0 28px, transparent 29px),
    linear-gradient(145deg, rgba(255, 251, 238, 0.98), rgba(171, 230, 191, 0.18)),
    var(--cream);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.16),
    0 0 30px rgba(171, 230, 191, 0.22),
    0 22px 42px rgba(0, 24, 20, 0.2);
  color: var(--charcoal);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.giving-flow article::after {
  position: absolute;
  inset: auto 18px 16px auto;
  width: 34px;
  height: 2px;
  content: "";
  background: var(--teal);
  opacity: 0.65;
}

.giving-flow article:hover {
  transform: translateY(-4px);
  border-color: var(--mint);
  box-shadow:
    0 0 0 1px rgba(171, 230, 191, 0.24),
    0 0 44px rgba(171, 230, 191, 0.36),
    0 26px 52px rgba(0, 24, 20, 0.24);
}

.giving-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--teal));
  color: var(--pine);
  font-family: Anton, Impact, sans-serif;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(47, 163, 139, 0.28);
}

.giving-flow h3 {
  color: var(--pine);
  font-size: clamp(24px, 2.6vw, 36px);
  align-self: end;
}

.giving-flow p {
  max-width: 100%;
  margin: 0;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.partner-clarity-section {
  background:
    linear-gradient(rgba(255, 251, 238, 0.92), rgba(255, 251, 238, 0.92)),
    radial-gradient(circle at 88% 8%, rgba(47, 163, 139, 0.16), transparent 30%),
    var(--cream);
}

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

.clarity-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 214px;
  padding: 18px;
  overflow: hidden;
  border: 2px solid rgba(171, 230, 191, 0.58);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(171, 230, 191, 0.13)),
    rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 34px rgba(0, 59, 49, 0.07);
}

.clarity-grid article::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(171, 230, 191, 0.72), rgba(47, 163, 139, 0.42));
  opacity: 0.8;
}

.clarity-kicker {
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.clarity-grid h3 {
  max-width: 84%;
  font-size: clamp(24px, 2.6vw, 34px);
}

.clarity-grid p {
  margin: 0;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.42;
}

.clarity-grid a {
  align-self: end;
  justify-self: start;
  min-height: 40px;
  padding-inline: 16px;
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

@media (max-width: 980px) {
  .giving-hero-grid,
  .campaign-story-grid {
    grid-template-columns: 1fr;
  }

  .donation-panel {
    max-width: 560px;
  }

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

@media (max-width: 860px) {
  .partner-flow-section .split,
  .giving-flow {
    grid-template-columns: 1fr;
  }

  .partner-flow-section h2 {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .partner-amount-grid,
  .pathway-grid,
  .partner-detail-grid,
  .clarity-grid {
    grid-template-columns: 1fr;
  }

  .giving-flow article {
    grid-template-columns: 1fr;
  }

  .giving-flow p {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .giving-hero-grid {
    gap: 28px;
  }

  .donation-panel {
    padding: 20px;
  }

  .donation-panel h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .amount-grid,
  .milestone-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .campaign-overview-section {
    padding-block: 42px;
  }

  .establishment-hero {
    padding-block: 38px 42px;
  }

  .establishment-hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 10.2vw, 46px);
    line-height: 0.95;
  }

  .establishment-hero .page-hero-inner {
    width: 100%;
    max-width: 430px;
    margin-left: 0;
    margin-right: auto;
    gap: 24px;
  }

  .establishment-hero .lead {
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.32;
  }

  .establishment-hero .script {
    margin-top: 2px;
    font-size: clamp(30px, 9vw, 40px);
    white-space: normal;
  }

  .establishment-hero .donation-panel {
    width: 100%;
    max-width: 100%;
    gap: 14px;
    padding: 20px;
    border-radius: 16px;
  }

  .establishment-hero .donation-panel h2 {
    font-size: clamp(52px, 17vw, 70px);
  }

  .establishment-hero .donation-panel p {
    font-size: 14px;
    line-height: 1.38;
  }

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

  .establishment-hero .amount-grid a {
    min-height: 52px;
    font-size: 26px;
  }

  .establishment-hero .donation-panel .button {
    min-height: 54px;
  }

  .establishment-hero .donation-note {
    font-size: 11px !important;
    line-height: 1.35;
  }

  .establishment-hero .actions {
    width: 100%;
  }

  .establishment-hero .button {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    padding-inline: 14px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    column-gap: 18px;
    row-gap: 10px;
  }

  .support-list {
    grid-template-columns: 1fr;
  }

  .campaign-faq-section {
    padding-block: 44px 56px;
  }

  .faq-list summary {
    padding: 18px 58px 18px 18px;
  }

  .faq-list summary::after {
    right: 18px;
  }
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--pine);
  font-size: 0;
  filter:
    drop-shadow(0 0 7px rgba(171, 230, 191, 0.95))
    drop-shadow(0 8px 18px rgba(0, 59, 49, 0.22));
}

.back-to-top span,
.back-to-top span::before,
.back-to-top span::after {
  display: block;
  content: "";
}

.back-to-top span {
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: 3px;
}

.back-to-top span::before,
.back-to-top span::after {
  position: absolute;
  left: 4px;
  width: 15px;
  height: 15px;
  border-top: 5px solid currentColor;
  border-left: 5px solid currentColor;
  transform: rotate(45deg);
}

.back-to-top span::before {
  top: 10px;
}

.back-to-top span::after {
  top: 0;
}

@media (max-width: 620px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 16px 12px;
  }

  .brand {
    font-size: 22px;
  }

  .brand span {
    font-size: 19px;
  }

  .nav-links {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 10px;
    letter-spacing: 0.055em;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid rgba(0, 59, 49, 0.12);
    border-radius: 999px;
    background: rgba(171, 230, 191, 0.14);
  }

  .campaign-gift-section {
    padding-block: 28px 48px;
  }

  .campaign-give-panel {
    margin-top: 0;
    padding: 22px 18px;
    text-align: center;
  }

  .campaign-give-panel h2 {
    max-width: 100%;
    font-size: clamp(36px, 11vw, 46px);
  }

  .campaign-give-panel .body-copy {
    font-size: 16px;
    line-height: 1.38;
  }

  .campaign-give-panel .button,
  .establishment-hero .donation-panel .button {
    width: min(100%, 320px);
    justify-self: center;
  }

  .pathway-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px;
    margin-top: 12px;
  }

  .pathway-grid article {
    min-height: 84px;
    padding: 12px 10px;
    border-radius: 12px;
  }

  .pathway-grid strong {
    font-size: clamp(38px, 12vw, 50px);
  }

  .pathway-grid span {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: 0.05em;
    line-height: 1.1;
  }

  .support-ways {
    gap: 16px;
    margin-top: 34px;
    text-align: center;
  }

  .support-ways .section-label {
    justify-content: center;
  }

  .support-ways h2 {
    max-width: 340px;
    margin: 0 auto;
    font-size: clamp(36px, 11vw, 48px);
  }

  .support-list {
    width: 100%;
    max-width: 430px;
    justify-self: center;
    gap: 8px;
  }

  .support-list span {
    min-height: 52px;
    padding: 12px 14px 12px 44px;
    text-align: left;
  }

  .campaign-detail-grid {
    gap: 10px;
    margin-top: 20px;
  }

  .campaign-detail-grid .detail-card {
    min-height: 0;
    gap: 9px;
    padding: 16px;
    border-radius: 14px;
  }

  .campaign-detail-grid .detail-card h3 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .campaign-detail-grid .detail-card p {
    font-size: 14px;
    line-height: 1.36;
  }

  .back-to-top {
    bottom: 86px;
  }
}
