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

@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: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.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 {
    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);
}

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);
}

.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(2, 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 {
    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;
    justify-content: flex-end;
    gap: 8px 12px;
    font-size: 10px;
  }

  .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;
  }
}

@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-split {
  align-items: center;
  gap: 34px;
}

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

.campaign-note {
  color: var(--pine);
}

.campaign-note .eyebrow {
  color: var(--teal);
}

.campaign-note p {
  margin: 0;
  color: var(--pine);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 800;
  line-height: 1.35;
}

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

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

.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;
  }
}

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

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

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

  .establishment-hero .lead {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
  }

  .establishment-hero .script {
    white-space: normal;
  }

  .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;
  }
}
