:root {
  color-scheme: light;
  --ink: #1a1c1e;
  --muted: #41474e;
  --line: rgba(33, 85, 123, 0.16);
  --primary: #21557b;
  --green: #173c32;
  --moss: #43664d;
  --teal: #21557b;
  --sage: #6f8a6a;
  --leaf: #1a6b4d;
  --river: #3d6d95;
  --sun: #d7a84d;
  --clay: #b96f4a;
  --cream: #fbfaf6;
  --warm: #eef1e9;
  --card: #ffffff;
  --sky: #e2eff2;
  --shadow: 0 18px 42px rgba(35, 69, 58, 0.1);
  --app-font: "Red Hat Display", Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--app-font);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--app-font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

#app {
  min-width: 0;
  overflow-x: clip;
}

button,
input,
textarea {
  font: inherit;
}

select {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

main {
  padding-bottom: 0;
}

.app-shell {
  min-height: 100svh;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1;
}

.icon {
  width: 1.12em;
  height: 1.12em;
}

.hero-copy {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 14px;
}

.home-hero .hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -52px -76px -48px -44px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 28% 16%, rgba(255, 244, 209, 0.24), rgba(255, 244, 209, 0) 46%),
    radial-gradient(ellipse at 24% 62%, rgba(10, 27, 24, 0.62), rgba(10, 27, 24, 0.28) 52%, rgba(10, 27, 24, 0) 76%),
    linear-gradient(90deg, rgba(10, 27, 24, 0.58), rgba(10, 27, 24, 0.2) 62%, rgba(10, 27, 24, 0));
  filter: blur(10px);
}

.hero-brand {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 2px;
}

.hero-brand::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -24px -34px -26px -24px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 42% 48%, rgba(255, 250, 229, 0.56), rgba(255, 250, 229, 0.26) 44%, rgba(255, 250, 229, 0) 74%),
    radial-gradient(ellipse at 18% 46%, rgba(11, 30, 27, 0.48), rgba(11, 30, 27, 0) 68%);
  filter: blur(16px);
}

.hero-brand img {
  width: clamp(286px, 40vw, 460px);
  max-height: 190px;
  height: auto;
  object-fit: contain;
  filter:
    brightness(1.28)
    saturate(1.22)
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.72))
    drop-shadow(0 0 22px rgba(255, 244, 209, 0.66))
    drop-shadow(0 16px 34px rgba(0, 0, 0, 0.48));
}

.hero,
.detail-hero {
  min-height: min(620px, calc(100svh - 48px));
  display: grid;
  align-items: end;
  padding: 24px 18px 64px;
  background-position: center;
  background-size: cover;
  color: white;
}

.home-hero {
  min-height: min(760px, calc(100svh - 36px));
  align-items: center;
  padding-top: 34px;
  padding-bottom: 72px;
  background-image:
    linear-gradient(180deg, rgba(13, 28, 24, 0.2), rgba(13, 28, 24, 0.76)),
    var(--home-hero-image);
  background-position: center, var(--home-hero-position, center);
  background-size: cover, cover;
}

.home-hero h1 {
  text-shadow:
    0 0 18px rgba(255, 232, 180, 0.34),
    0 5px 24px rgba(0, 0, 0, 0.45),
    0 1px 2px rgba(0, 0, 0, 0.72);
}

.home-hero p {
  text-shadow:
    0 0 12px rgba(255, 232, 180, 0.26),
    0 3px 12px rgba(0, 0, 0, 0.55);
}

.detail-hero {
  position: relative;
  min-height: min(560px, calc(100svh - 48px));
  padding-bottom: 58px;
}

.hero-copy,
.detail-hero > * {
  max-width: 720px;
}

.eyebrow {
  display: none;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1,
.detail-hero h1,
.page-head h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 8.1vw, 2.45rem);
  line-height: 1.02;
}

.hero p,
.detail-hero p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

.actions,
.project-actions,
.filter-row,
.stat-strip {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.project-actions {
  margin-bottom: 14px;
}

.share-status {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 820;
}

.share-status.inline {
  width: fit-content;
  background: rgba(23, 60, 50, 0.08);
  color: var(--green);
}

.share-url-field {
  width: min(100%, 620px);
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 760;
}

.share-url-field.dark {
  border-color: var(--line);
  background: #ffffff;
}

.project-hero-sponsor {
  position: absolute;
  top: 28px;
  right: 16px;
  z-index: 1;
  display: grid;
  width: min(38vw, 168px);
  min-height: 88px;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.project-hero-sponsor__label {
  color: rgba(23, 60, 50, 0.64);
  font-size: 0.66rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-hero-sponsor__mark {
  display: grid;
  min-height: 44px;
  place-items: center;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.project-hero-sponsor__mark img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.button,
.text-button,
.filter-row button,
.back-button,
.quantity button {
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 46px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1rem;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  box-shadow: none;
}

.button.primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(33, 85, 123, 0.24);
}

.button.light {
  background: white;
  color: var(--green);
}

.button.dark {
  background: var(--green);
  color: white;
}

.button.full {
  width: 100%;
}

.section {
  padding: 42px 16px;
}

.section.compact {
  padding-top: 22px;
}

.section.warm {
  background: var(--warm);
}

.active-habitats {
  padding-top: 23px;
  padding-bottom: 23px;
  padding-inline: 20px;
}

.active-habitats__inner {
  width: min(100%, 1120px);
  margin-inline: auto;
}

.active-habitats .section-heading {
  margin-bottom: 22px;
}

.active-habitats .section-heading h2 {
  padding-bottom: 10px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 20px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.64rem, 7vw, 2.45rem);
}

.section-heading.wide {
  max-width: 1120px;
}

.section-heading.wide h2 {
  font-size: clamp(1.85rem, 3.15vw, 2.35rem);
}

.instagram-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(23, 60, 50, 0.18);
  border-radius: 999px;
  padding: 0.76rem 1rem;
  background: var(--green);
  color: #ffffff;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(23, 60, 50, 0.16);
}

.instagram-link .icon {
  width: 19px;
  height: 19px;
}

.feature-grid,
.project-grid,
.impact-grid,
.feed,
.public-feed-grid,
.portfolio-project-list,
.support-panel,
.timeline {
  display: grid;
  gap: 14px;
}

.project-grid {
  align-items: stretch;
  gap: 20px;
}

.powered-by-merge {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 10px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
  font-weight: 820;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(27, 68, 90, 0.08);
}

.powered-by-merge img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
}

.powered-by-merge:hover {
  transform: translateY(-1px);
}

.feature-grid article,
.project-card,
.tier,
.cart,
.impact-grid article,
.impact-support-card,
.update-card,
.public-update-card,
.public-feed-empty,
.portfolio-panel,
.portfolio-project-card,
.feed-card,
.review-card,
.confirm-card,
.story,
.intake-section,
.operator-warning,
.operator-toolbar,
.operator-list-panel,
.operator-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.feature-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.feature-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-impact-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(23, 60, 50, 0.12));
}

.update-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(23, 60, 50, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(229, 241, 234, 0.92)),
    #ffffff;
}

.update-signup__copy {
  display: grid;
  gap: 6px;
}

.update-signup__copy h2 {
  max-width: 520px;
  margin: 0;
  color: var(--green);
  font-size: clamp(1.35rem, 4.8vw, 2rem);
  line-height: 1.05;
}

.update-signup__form {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
}

.update-signup__form label {
  display: grid;
  min-width: 0;
  gap: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
}

.update-signup__form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 60, 50, 0.16);
  border-radius: 8px;
  padding: 0 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.update-signup__form .button {
  min-height: 48px;
}

.update-signup__status {
  grid-column: 1 / -1;
  margin: 0;
  border-radius: 8px;
  padding: 9px 11px;
  font-size: 0.86rem;
  font-weight: 760;
}

.update-signup__status.success {
  background: rgba(205, 229, 207, 0.76);
  color: var(--green);
}

.update-signup__status.error {
  background: rgba(242, 210, 201, 0.72);
  color: #7d261c;
}

.feature-image-card,
.feature-stat,
.feature-checklist {
  display: grid;
  gap: 8px;
}

.feature-image-card span,
.feature-stat span,
.feature-stat small,
.feature-checklist span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.feature-image-card {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-image-card img {
  width: 100%;
  aspect-ratio: 7 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.feature-stat {
  width: fit-content;
  min-width: 190px;
  border: 1px solid rgba(26, 107, 77, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: rgba(26, 107, 77, 0.07);
}

.feature-stat strong {
  color: var(--green);
  font-size: 2.2rem;
  line-height: 1;
}

.feature-checklist span {
  display: flex;
  align-items: center;
  color: var(--green);
}

.feature-checklist span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--green);
}

.feature-grid h3,
.project-card h3,
.tier h3,
.cart h3,
.impact-support-card h2,
.feed-card h2,
.update-card h2,
.review-card h2,
.confirm-card h2,
.story h2 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.feature-card-head h3 {
  margin: 0;
  line-height: 1.08;
}

.feature-grid p,
.project-card p,
.tier p,
.page-head p,
.impact-support-card p,
.feed-card p,
.update-card p,
.review-card p,
.confirm-card p,
.story p,
.intake-entry p {
  color: var(--muted);
}

.project-card,
.feed-card,
.update-card {
  overflow: hidden;
}

.project-card {
  display: grid;
  width: 100%;
  min-width: 0;
  position: relative;
}

.project-card.coming-soon {
  opacity: 0.82;
}

.coming-soon-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: var(--green);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 880;
}

.project-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  justify-content: flex-end;
}

.project-media {
  width: 100%;
  aspect-ratio: 1.18;
  min-height: 0;
  border: 0;
  background-position: center;
  background-size: cover;
}

.project-media:disabled {
  cursor: not-allowed;
}

.project-body,
.feed-card > div,
.update-card > div,
.impact-support-card,
.review-card,
.confirm-card,
.story,
.tier,
.cart,
.intake-section,
.operator-warning,
.operator-toolbar,
.operator-list-panel,
.operator-detail {
  padding: 20px;
}

.project-body {
  display: grid;
  min-width: 0;
}

.intake-entry {
  background: linear-gradient(180deg, rgba(220, 235, 240, 0.46), rgba(255, 255, 255, 0.88));
}

.intake-entry .section-heading {
  margin-bottom: 0;
}

.intake-entry p {
  max-width: 680px;
  margin: 10px 0 0;
}

.intake-head p {
  max-width: 760px;
}

.intake-form {
  display: grid;
  gap: 14px;
}

.intake-progress {
  position: sticky;
  top: 68px;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 14px 34px rgba(21, 63, 97, 0.08);
  backdrop-filter: blur(10px);
}

.intake-progress .eyebrow {
  display: block;
}

.intake-progress strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 0.95rem;
}

.intake-progress ol {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intake-progress li {
  display: grid;
  gap: 3px;
  min-width: 0;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 8px 7px;
  background: rgba(33, 85, 123, 0.07);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 820;
  text-align: center;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.intake-progress li span {
  color: var(--primary);
  font-size: 0.68rem;
}

.intake-progress li strong {
  margin: 0;
  font-size: 0.72rem;
}

.intake-progress li small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 760;
}

.intake-progress li[data-current="true"] {
  border-color: rgba(214, 119, 34, 0.55);
  background: rgba(214, 119, 34, 0.12);
}

.intake-progress li[data-status="started"] {
  background: rgba(214, 119, 34, 0.12);
}

.intake-progress li[data-status="started"] small {
  color: #8a4b13;
}

.intake-progress li[data-status="complete"] {
  background: rgba(26, 107, 77, 0.14);
  color: var(--green);
}

.intake-progress li[data-status="complete"] span,
.intake-progress li[data-status="complete"] small {
  color: var(--green);
}

.intake-section {
  display: grid;
  gap: 16px;
}

.intake-section-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.intake-section-head span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: rgba(33, 85, 123, 0.12);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 880;
}

.intake-section h2 {
  margin: 0;
  font-size: 1.24rem;
}

.intake-section fieldset {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.intake-section legend,
.intake-field > span,
.field-label {
  margin-bottom: 2px;
  color: var(--green);
  font-weight: 860;
}

.required-cue {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  margin-left: 6px;
  border-radius: 999px;
  padding: 0 7px;
  background: rgba(33, 85, 123, 0.1);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 840;
  vertical-align: 1px;
}

.field-grid {
  display: grid;
  gap: 12px;
}

.intake-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.intake-field input,
.intake-field select,
.intake-field textarea,
.pathway-detail {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #eae6e6;
  color: var(--ink);
  line-height: 1.35;
}

.intake-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%), linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size:
    6px 6px,
    6px 6px;
  padding-right: 34px;
}

.intake-field textarea {
  min-height: 118px;
  resize: vertical;
}

.voice-field textarea {
  padding-right: 56px;
  padding-bottom: 48px;
}

.voice-field {
  position: relative;
  display: grid;
}

.voice-button {
  display: inline-flex;
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-height: 36px;
  width: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  box-shadow: 0 8px 18px rgba(21, 63, 97, 0.12);
}

.voice-button .icon {
  width: 17px;
  height: 17px;
}

.voice-button[data-voice-state="listening"] {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.voice-button[data-voice-state="unsupported"] {
  cursor: not-allowed;
  opacity: 0.58;
}

.file-upload-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.file-upload-control input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.file-upload-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--green);
  color: white;
  font-weight: 820;
  cursor: pointer;
}

.file-upload-button .icon {
  width: 17px;
  height: 17px;
}

.file-upload-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.file-upload-helper {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.file-upload-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.9rem;
}

.choice-grid,
.pathway-list {
  display: grid;
  gap: 8px;
}

.choice-card,
.pathway-card,
.consent-card {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: white;
  color: var(--ink);
  font-weight: 780;
}

.choice-card input,
.pathway-card input[type="radio"],
.consent-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.pathway-card {
  grid-template-columns: 22px minmax(0, 1fr);
}

.pathway-detail {
  grid-column: 2;
  margin-top: 2px;
  font-weight: 500;
}

.consent-card {
  align-items: start;
  padding-top: 12px;
  padding-bottom: 12px;
}

.consent-card input {
  margin-top: 3px;
}

.intake-success-hero h1 {
  max-width: 860px;
}

.stat-strip {
  margin: 14px 0 12px;
}

.stat-strip span,
.cart label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(23, 60, 50, 0.08);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 790;
}

.light-strip span {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 60, 50, 0.12);
}

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

.project-card-footer {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 820;
}

.project-card-footer .text-button {
  min-height: 44px;
  margin-top: 0;
  padding-left: 8px;
  justify-content: flex-end;
  min-width: 0;
  white-space: nowrap;
}

.text-button,
.back-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--green);
  font-weight: 860;
}

.inline-route-link {
  display: inline;
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-weight: 860;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.back-button {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

.back-button .icon {
  rotate: 180deg;
}

.page-head {
  padding: 42px 16px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background-image:
    radial-gradient(ellipse at 18% 18%, rgba(255, 244, 209, 0.18), rgba(255, 244, 209, 0) 48%),
    linear-gradient(115deg, rgba(8, 28, 24, 0.82), rgba(8, 28, 24, 0.54) 58%, rgba(8, 28, 24, 0.3)),
    var(--app-hero-image);
  background-position: center, center, var(--app-hero-position, center);
  background-size: cover, cover, cover;
  color: #ffffff;
}

.page-head p {
  max-width: 680px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.44),
    0 1px 2px rgba(0, 0, 0, 0.58);
}

.page-head h1 {
  text-shadow:
    0 0 18px rgba(255, 232, 180, 0.24),
    0 5px 24px rgba(0, 0, 0, 0.42),
    0 1px 2px rgba(0, 0, 0, 0.72);
}

.page-head .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 16px 16px 92px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 72%, white);
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  width: 100%;
}

.site-footer button {
  min-height: 28px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-disclosure {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--sky) 42%, white);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}

.account-disclosure {
  margin-top: 16px;
}

.legal-page {
  display: grid;
  gap: 14px;
}

.legal-review-banner {
  font-weight: 820;
}

.legal-section h2 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
}

.filter-row button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: white;
  color: var(--green);
  font-weight: 820;
}

.filter-row button.active {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.detail-layout {
  display: grid;
  align-items: start;
  gap: 16px;
}

.story {
  display: grid;
  gap: 14px;
}

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

.project-goal-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.project-goal-card > div {
  min-width: 0;
  border: 1px solid rgba(23, 60, 50, 0.1);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
}

.project-goal-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
}

.project-goal-card strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.04rem, 4vw, 1.35rem);
  line-height: 1.05;
}

.project-impact-data {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(23, 60, 50, 0.1);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(237, 246, 240, 0.86)),
    #ffffff;
}

.project-impact-data__head {
  display: grid;
  gap: 2px;
}

.project-impact-data__head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.15;
}

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

.project-impact-data__tile {
  display: grid;
  place-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 118px;
  border: 1px solid rgba(23, 60, 50, 0.1);
  border-radius: 8px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--green);
  cursor: pointer;
  text-align: center;
}

.project-impact-data__tile:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--sky) 70%, white);
  outline-offset: 2px;
}

.project-impact-data__tile img {
  width: 100%;
  max-width: 64px;
  aspect-ratio: 1;
  object-fit: contain;
}

.project-impact-data__tile span {
  color: var(--green);
  font-size: clamp(0.72rem, 3vw, 0.82rem);
  font-weight: 860;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.impact-signal-icon {
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(205, 229, 207, 0.76);
  color: var(--green);
}

.impact-signal-icon .icon {
  width: 34px;
  height: 34px;
}

.project-facts p,
.context-summary,
.support-meaning,
.pending-support-summary,
.share-panel,
.status-panel,
.handoff-checklist {
  display: grid;
  gap: 4px;
  margin: 0;
  border: 1px solid rgba(23, 60, 50, 0.1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(23, 60, 50, 0.05);
}

.project-facts span,
.context-summary span,
.pending-support-summary span,
.status-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
}

.project-facts strong,
.context-summary strong,
.pending-support-summary strong,
.status-panel strong {
  min-width: 0;
  color: var(--green);
  font-size: 0.92rem;
  line-height: 1.2;
}

.project-facts strong a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.support-meaning,
.share-panel,
.status-panel,
.handoff-checklist {
  gap: 8px;
  padding: 16px;
}

.support-meaning h3,
.share-panel h3 {
  margin: 0;
  color: var(--green);
  font-size: 1rem;
}

.status-panel {
  border-color: rgba(33, 85, 123, 0.18);
  background: linear-gradient(180deg, #ffffff, rgba(220, 235, 240, 0.46));
}

.status-panel strong {
  font-size: 1rem;
}

.support-meaning p,
.share-panel p,
.support-intro p,
.trust-note {
  margin: 0;
  color: var(--muted);
}

.story h2,
.story p {
  margin-bottom: 0;
}

.cart-lines p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}

.timeline {
  margin-top: 4px;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  border: 1px solid rgba(18, 68, 57, 0.1);
  border-radius: 8px;
  padding: 14px;
  background: rgba(247, 249, 245, 0.78);
}

.timeline-step strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(18, 68, 57, 0.1);
  color: var(--green);
}

.timeline-step span {
  min-width: 0;
  color: var(--ink);
  font-weight: 820;
  line-height: 1.2;
}

.timeline-step small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.support-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.support-section {
  padding-top: 24px;
}

.support-intro {
  display: grid;
  gap: 8px;
  padding: 0 2px;
}

.support-intro h2 {
  margin: 0;
  font-size: clamp(1.45rem, 7vw, 2.1rem);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, rgba(220, 235, 240, 0.48));
  box-shadow: var(--shadow);
}

.trust-chips span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(23, 60, 50, 0.1);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 820;
}

.tier {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 16px;
  width: 100%;
  align-items: start;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.tier.featured {
  outline: 3px solid rgba(61, 109, 149, 0.24);
}

.tier.selected {
  border-color: rgba(33, 85, 123, 0.62);
  background: linear-gradient(180deg, #ffffff, rgba(220, 235, 240, 0.44));
  box-shadow: 0 18px 48px rgba(33, 85, 123, 0.14);
}

.tier.selected::before {
  grid-column: 1 / -1;
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--green);
  color: #ffffff;
  content: "Selected tier";
  font-size: 0.74rem;
  font-weight: 880;
  line-height: 1;
}

.tier-copy {
  min-width: 0;
}

.tier-copy .eyebrow {
  margin-bottom: 6px;
}

.tier-copy h3,
.tier-copy p {
  margin-bottom: 0;
}

.tier-selected-label {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  border: 1px solid rgba(33, 85, 123, 0.22);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(220, 235, 240, 0.58);
  color: var(--primary);
  font-size: 0.78rem;
  line-height: 1;
}

.tier-price {
  justify-self: end;
  color: var(--green);
  font-size: 1.28rem;
  line-height: 1;
}

.quantity {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 46px minmax(52px, 1fr) 46px;
  width: min(100%, 220px);
  gap: 8px;
  align-items: center;
}

.quantity button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--green);
}

.quantity output {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 60, 50, 0.1);
  border-radius: 8px;
  background: rgba(23, 60, 50, 0.06);
  text-align: center;
  font-weight: 880;
}

.cart {
  display: grid;
  gap: 12px;
}

.cart h3 {
  color: var(--green);
  font-size: 2rem;
}

.cart-lines {
  display: grid;
  min-height: 42px;
  gap: 8px;
}

.cart-lines p {
  color: var(--muted);
}

.cart-lines strong {
  color: var(--green);
  white-space: nowrap;
}

.cart label {
  justify-content: flex-start;
  gap: 8px;
  width: fit-content;
}

.sticky-support {
  position: fixed;
  inset: auto 12px calc(92px + env(safe-area-inset-bottom));
  z-index: 11;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(23, 60, 50, 0.14);
  border-radius: 18px;
  padding: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 48px rgba(20, 32, 27, 0.24);
  backdrop-filter: blur(18px);
}

.sticky-support strong {
  color: var(--green);
  font-size: 1.08rem;
  white-space: nowrap;
}

.sticky-support span {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-support .summary-dot {
  overflow: visible;
  color: var(--green);
}

.sticky-support .button {
  min-height: 44px;
  padding: 0 12px;
  font-size: 0.875rem;
}

.impact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

.impact-grid article {
  min-height: 132px;
  padding: 16px;
}

.impact-grid strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.8rem, 8vw, 2.7rem);
  line-height: 1;
}

.impact-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 760;
}

.update-card img,
.feed-card img {
  width: 100%;
  min-height: 240px;
  object-fit: cover;
}

.contributor-head h1 {
  max-width: 760px;
}

.feed-detail-head {
  min-height: min(300px, 44svh);
  display: grid;
  align-content: end;
  gap: 10px;
  padding-top: 24px;
  padding-bottom: 28px;
}

.feed-detail-head.has-story-image {
  background-image:
    linear-gradient(180deg, rgba(8, 24, 20, 0.28) 0%, rgba(8, 24, 20, 0.78) 100%),
    var(--feed-detail-hero-image) !important;
  background-position: center, center;
  background-size: cover, cover;
}

.feed-detail-head .eyebrow {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}

.feed-detail-head h1 {
  max-width: min(22ch, 100%);
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  line-height: 1.05;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.45),
    0 1px 2px rgba(0, 0, 0, 0.75);
}

.feed-detail-head .back-button {
  justify-self: start;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.feed-detail-dek {
  max-width: 38rem;
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 650;
  line-height: 1.45;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.55),
    0 1px 2px rgba(0, 0, 0, 0.8);
}

.feed-detail-meta {
  color: rgba(255, 255, 255, 0.96) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.feed-detail-meta span,
.feed-detail-meta time {
  color: #ffffff;
  font-weight: 750;
}

.section.feed-detail {
  padding: 0 16px 48px;
  margin-top: -18px;
  position: relative;
  z-index: 1;
}

.feed-detail-article {
  width: min(100%, 42rem);
  margin: 0 auto;
  padding: 28px 18px 36px;
  border: 0;
  border-radius: 18px 18px 0 0;
  background: #fbfaf6;
  box-shadow: 0 -10px 40px rgba(20, 32, 27, 0.08);
}

.feed-detail-body {
  display: grid;
  gap: 0;
  color: #14241e;
  font-size: clamp(1.08rem, 1.2vw, 1.2rem);
  line-height: 1.78;
  letter-spacing: 0.005em;
}

.feed-detail-body h2,
.feed-detail-body h3 {
  margin: 1.55em 0 0.55em;
  line-height: 1.25;
  color: #10241c;
}

.feed-detail-body h2 {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
}

.feed-detail-body h3 {
  font-size: clamp(1.18rem, 1.6vw, 1.32rem);
}

.feed-detail-body p,
.feed-detail-body li {
  margin: 0 0 1.05em;
}

.feed-detail-body p:last-child,
.feed-detail-body ul:last-child {
  margin-bottom: 0;
}

.feed-detail-body ul {
  margin: 0 0 1.05em;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.feed-detail-body blockquote {
  margin: 0 0 1.2em;
  padding: 14px 16px;
  border-left: 3px solid rgba(47, 95, 138, 0.45);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0 14px 14px 0;
}

.feed-detail-body blockquote p {
  margin: 0;
}

.feed-detail-body .feed-inline-figure {
  margin: 1.55em 0 1.7em;
  width: 100%;
}

.feed-detail-body .feed-inline-figure img {
  display: block;
  width: 100%;
  max-height: min(52vh, 420px);
  object-fit: cover;
  border-radius: 14px;
  background: #d9e2d8;
}

.feed-detail-body .feed-inline-figure figcaption {
  margin-top: 10px;
  padding: 0 2px;
  color: rgba(20, 36, 30, 0.72);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.4;
  font-style: italic;
}

.feed-detail-actions {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 60, 50, 0.1);
}

.app-shell.is-reading .site-footer {
  padding-bottom: 28px;
}

.impact-signal-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(23, 60, 50, 0.1);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(238, 241, 233, 0.82)),
    var(--card);
  box-shadow: 0 14px 32px rgba(35, 69, 58, 0.08);
}

.impact-signal-tile {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  border: 0;
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: inherit;
  cursor: pointer;
  text-align: center;
}

.impact-signal-tile:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--sky) 70%, white);
  outline-offset: 2px;
}

.impact-signal-rail img {
  width: 100%;
  max-height: 118px;
  object-fit: contain;
}

.impact-signal-tile span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 860;
}

.impact-signal-dialog-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(12, 24, 20, 0.42);
  backdrop-filter: blur(8px);
}

.impact-signal-dialog {
  position: relative;
  display: grid;
  gap: 10px;
  width: min(100%, 420px);
  border: 1px solid rgba(23, 60, 50, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff, rgba(238, 241, 233, 0.96));
  box-shadow: 0 26px 70px rgba(20, 32, 27, 0.28);
}

.impact-signal-dialog img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.impact-signal-dialog .impact-signal-icon {
  margin: 0 auto;
}

.impact-signal-dialog h2,
.impact-signal-dialog p {
  margin: 0;
}

.impact-signal-dialog h2,
.impact-signal-dialog strong {
  color: var(--green);
}

.impact-signal-dialog p {
  color: var(--muted);
}

.impact-signal-dialog__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 860;
}

.contributor-dashboard,
.portfolio-panel,
.public-feed-grid,
.public-update-card,
.public-feed-empty {
  display: grid;
  gap: 14px;
}

.public-feed-grid {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 760px);
  margin-inline: auto;
}

.public-update-card,
.public-feed-empty,
.portfolio-panel,
.dashboard-widget {
  padding: 18px;
}

.public-update-card.public {
  border-color: rgba(111, 138, 106, 0.3);
  background: linear-gradient(180deg, #ffffff, rgba(238, 241, 233, 0.86));
}

.public-update-card.has-image {
  padding-top: 18px;
}

.public-update-card.is-clickable {
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.public-update-card.is-clickable:focus-visible {
  outline: 2px solid var(--blue, #2f5f8a);
  outline-offset: 2px;
}

.feed-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.feed-detail-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(23, 60, 50, 0.12);
  width: min(100%, 760px);
  margin-inline: auto;
}

.feed-detail-card--body-only {
  padding-top: 28px;
}

.feed-detail-hero {
  min-height: 220px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background-color: #d7e0d8;
  background-position: center;
  background-size: cover;
}

.feed-detail-hero.placeholder {
  display: grid;
  place-items: end start;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(23, 60, 50, 0.6), rgba(61, 109, 149, 0.46)),
    url("../assets/planet-portfolio-watershed.jpeg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.feed-detail-hero span {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 860;
}

.feed-detail-meta {
  margin-top: 8px;
}

.update-visual-tile.placeholder.blog,
.update-visual-tile.placeholder.editorial {
  background:
    linear-gradient(135deg, rgba(47, 95, 138, 0.55), rgba(23, 60, 50, 0.42)),
    url("../assets/planet-portfolio-watershed.jpeg");
  background-position: center;
  background-size: cover;
}

.update-visual-tile {
  min-height: 180px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background-color: #d7e0d8;
  background-position: center;
  background-size: cover;
}

.update-visual-tile.placeholder {
  display: grid;
  place-items: end start;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(23, 60, 50, 0.6), rgba(61, 109, 149, 0.46)),
    url("../assets/planet-portfolio-watershed.jpeg");
  color: #ffffff;
}

.update-visual-tile.placeholder.habitat_progress {
  background:
    linear-gradient(135deg, rgba(26, 107, 77, 0.58), rgba(215, 168, 77, 0.44)),
    url("../assets/peterson-wetland-buffer.jpeg");
  background-position: center;
  background-size: cover;
}

.update-visual-tile.placeholder.photo_media {
  background:
    linear-gradient(135deg, rgba(61, 109, 149, 0.52), rgba(23, 60, 50, 0.42)),
    url("../assets/kaufman-native-prairie.jpeg");
  background-position: center;
  background-size: cover;
}

.update-visual-tile span {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 860;
}

.public-update-card__head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: start;
  justify-content: space-between;
}

.public-update-card h3,
.public-feed-empty h3,
.portfolio-panel h2,
.portfolio-project-card h3 {
  margin: 0;
  color: var(--green);
}

.portfolio-supported-heading {
  padding-bottom: 4px;
}

.public-update-card p,
.public-feed-empty p,
.portfolio-panel p,
.portfolio-project-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.public-update-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.public-visibility-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(26, 107, 77, 0.14);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 860;
  text-transform: capitalize;
}

.portfolio-project-card {
  display: grid;
  gap: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, rgba(251, 250, 246, 0.8));
}

.portfolio-project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.portfolio-project-card > div {
  display: grid;
  gap: 8px;
  padding: 0 14px 14px;
}

.portfolio-project-card__support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(23, 60, 50, 0.1);
  padding-top: 10px;
}

.portfolio-project-card__support span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 820;
}

.portfolio-project-card__support strong {
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
}

.activity-list {
  display: grid;
  gap: 8px;
}

.activity-list p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  border: 1px solid rgba(23, 60, 50, 0.1);
  border-radius: 8px;
  padding: 10px;
  background: rgba(23, 60, 50, 0.04);
}

.activity-list span {
  color: var(--muted);
  font-weight: 760;
}

.account-preference-form {
  display: grid;
  gap: 12px;
}

.dashboard-grid {
  display: grid;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.dashboard-widget {
  display: grid;
  gap: 14px;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, rgba(251, 250, 246, 0.78));
  box-shadow: var(--shadow);
}

.dashboard-widget h2,
.dashboard-widget h3 {
  margin: 0;
  color: var(--green);
}

.dashboard-widget p {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.widget-head {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.widget-metric-grid {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.widget-metric-grid p {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(23, 60, 50, 0.1);
  border-radius: 8px;
  padding: 10px;
  background: rgba(238, 241, 233, 0.66);
}

.widget-metric-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
}

.widget-metric-grid strong {
  color: var(--green);
  overflow-wrap: anywhere;
}

.widget-actions {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  gap: 8px;
}

.project-activity-rail {
  display: grid;
  gap: 10px;
}

.project-activity-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(23, 60, 50, 0.1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 253, 248, 0.78);
}

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

.photo-wall-grid .public-update-card {
  padding: 18px;
  box-shadow: none;
}

.photo-wall-placeholder {
  display: grid;
  gap: 10px;
  min-height: 230px;
  align-content: end;
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(8, 23, 18, 0.08), rgba(8, 23, 18, 0.56)),
    url("../assets/hero-fields.jpg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.photo-wall-placeholder span,
.photo-wall-placeholder h3,
.photo-wall-placeholder p {
  color: #ffffff;
}

.photo-wall-placeholder span {
  font-size: 0.8rem;
  font-weight: 860;
  text-transform: uppercase;
}

.habi-widget {
  overflow: hidden;
  border-color: rgba(61, 109, 149, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(231, 241, 236, 0.88) 48%, rgba(229, 240, 244, 0.78)),
    url("../assets/habi-reference/habi-habitat-edge.jpg") center / cover;
}

.habi-logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 0 14px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.72));
}

.habi-bird-list {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(23, 60, 50, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 253, 248, 0.72);
}

.habi-bird-list__head {
  display: flex;
}

.habi-bird-list__head a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-weight: 900;
}

.habi-bird-list__rows {
  display: grid;
  gap: 6px;
}

.habi-bird-list__rows p {
  margin: 0;
}

.habi-bird-list__rows a {
  color: var(--green);
  font-weight: 900;
}

.habi-empty {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(61, 109, 149, 0.12);
  color: var(--green);
  font-size: 0.86rem;
}

.checkout {
  display: grid;
  gap: 14px;
}

.review-head h1 {
  max-width: 620px;
}

.review-card,
.impact-support-card {
  display: grid;
  gap: 16px;
}

.review-card {
  border-color: rgba(33, 85, 123, 0.14);
  box-shadow: 0 18px 52px rgba(21, 63, 97, 0.1);
}

.review-project h2,
.impact-support-card h2 {
  margin-bottom: 6px;
}

.review-lines {
  display: grid;
  gap: 10px;
}

.pending-support-summary {
  gap: 10px;
}

.pending-support-summary,
.context-summary {
  background: rgba(220, 235, 240, 0.36);
}

.pending-support-summary p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}

.review-lines p,
.review-total p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
}

.review-lines span,
.review-total span {
  min-width: 0;
}

.review-lines small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 760;
}

.review-lines strong,
.review-total strong {
  min-width: 0;
  color: var(--green);
  overflow-wrap: anywhere;
  text-align: right;
}

.review-total {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.handoff-checklist p,
.next-steps p {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  margin: 0;
}

.handoff-checklist strong,
.next-steps strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(23, 60, 50, 0.08);
  color: var(--green);
  font-size: 0.82rem;
}

.handoff-checklist span,
.next-steps span {
  align-self: center;
  min-width: 0;
  color: var(--muted);
  font-weight: 760;
}

.recognition-choice {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.recognition-choice legend,
.message-field > span {
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 860;
}

.recognition-choice label,
.message-field {
  display: grid;
}

.recognition-choice label {
  grid-template-columns: 22px minmax(0, 1fr);
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: white;
  color: var(--ink);
  font-weight: 780;
}

.recognition-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.message-field textarea {
  width: 100%;
  min-height: 112px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: white;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.4;
}

.prototype-note {
  min-width: 0;
  border-radius: 8px;
  padding: 12px;
  background: rgba(220, 235, 240, 0.56);
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.intake-alert {
  display: grid;
  gap: 8px;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.92rem;
  font-weight: 760;
}

.intake-alert p {
  margin: 0;
}

.intake-alert.error {
  border: 1px solid rgba(139, 57, 43, 0.28);
  background: rgba(255, 235, 229, 0.8);
  color: #7a2d20;
}

.intake-alert .text-button {
  width: fit-content;
  margin-top: 0;
  color: inherit;
}

.operator-head h1 {
  max-width: 820px;
}

.operator-console {
  display: grid;
  gap: 16px;
}

.operator-warning {
  display: grid;
  gap: 8px;
  border-color: rgba(139, 57, 43, 0.2);
  background: linear-gradient(180deg, #ffffff, rgba(255, 235, 229, 0.58));
  box-shadow: 0 14px 34px rgba(139, 57, 43, 0.08);
}

.operator-warning strong {
  color: #7a2d20;
  font-size: 1rem;
}

.operator-warning p,
.operator-muted {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.operator-toolbar {
  display: grid;
  gap: 16px;
}

.admin-console {
  gap: 18px;
}

.admin-command-bar {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(23, 60, 50, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 60, 50, 0.06);
}

.admin-workspace-grid {
  display: grid;
  gap: 10px;
}

.admin-workspace-tile {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(23, 60, 50, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.admin-workspace-tile > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.admin-workspace-tile h2,
.admin-workspace-tile p {
  margin: 0;
}

.admin-workspace-tile h2 {
  color: var(--green);
  font-size: 1rem;
}

.admin-workspace-tile p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.admin-workspace-tile span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.admin-workbench,
.admin-panel {
  display: grid;
  gap: 16px;
}

.admin-panel {
  border: 1px solid rgba(23, 60, 50, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
}

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

.admin-ledger-card {
  border: 1px solid rgba(23, 60, 50, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 12px;
}

.admin-ledger-card__head {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.admin-ledger-card__head h3 {
  margin: 4px 0 0;
}

.admin-ledger-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-ledger-grid p {
  border-top: 1px solid rgba(23, 60, 50, 0.1);
  display: grid;
  gap: 4px;
  margin: 0;
  min-width: 0;
  padding-top: 8px;
}

.admin-ledger-grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
}

.admin-ledger-grid strong {
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.operator-token-form,
.operator-filters {
  display: grid;
  gap: 12px;
  align-content: start;
}

.operator-token-actions,
.operator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.operator-filters {
  grid-template-columns: minmax(0, 1fr);
}

.operator-alert {
  border-radius: 8px;
  padding: 12px;
  font-weight: 760;
}

.operator-alert p {
  margin: 0;
}

.operator-alert.info {
  border: 1px solid rgba(33, 85, 123, 0.2);
  background: rgba(220, 235, 240, 0.58);
  color: var(--green);
}

.operator-alert.error {
  border: 1px solid rgba(139, 57, 43, 0.28);
  background: rgba(255, 235, 229, 0.8);
  color: #7a2d20;
}

.operator-layout {
  display: grid;
  gap: 16px;
}

.operator-list-panel,
.operator-detail {
  display: grid;
  gap: 14px;
  align-content: start;
}

.operator-panel-head,
.operator-detail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.operator-panel-head h2,
.operator-detail h2,
.operator-actions h3,
.operator-notes h3 {
  margin: 0;
  color: var(--green);
}

.operator-panel-head span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 820;
}

.operator-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.operator-list {
  display: grid;
  gap: 8px;
}

.operator-list-item {
  display: grid;
  gap: 5px;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
}

.operator-list-item.active {
  border-color: rgba(33, 85, 123, 0.55);
  background: rgba(220, 235, 240, 0.42);
  box-shadow: inset 4px 0 0 var(--primary);
}

.operator-list-item strong,
.operator-list-item small,
.operator-list-item span,
.operator-list-item time {
  min-width: 0;
  overflow-wrap: anywhere;
}

.operator-list-item strong {
  color: var(--green);
  font-size: 1rem;
}

.operator-list-item small,
.operator-list-item span,
.operator-list-item time {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.operator-status {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(33, 85, 123, 0.12);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 860;
  text-transform: capitalize;
}

.operator-status[data-status="approved"] {
  background: rgba(26, 107, 77, 0.14);
  color: var(--green);
}

.operator-status[data-status="published"] {
  background: rgba(26, 107, 77, 0.18);
  color: var(--green);
}

.operator-status[data-status="rejected"],
.operator-status[data-status="archived"] {
  background: rgba(139, 57, 43, 0.12);
  color: #7a2d20;
}

.operator-status[data-status="in_review"] {
  background: rgba(214, 119, 34, 0.14);
  color: #8a4b13;
}

.operator-empty {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  font-weight: 760;
}

.operator-detail-grid {
  display: grid;
  gap: 8px;
}

.operator-detail-grid p {
  display: grid;
  gap: 4px;
  margin: 0;
  border: 1px solid rgba(23, 60, 50, 0.1);
  border-radius: 8px;
  padding: 10px;
  background: rgba(23, 60, 50, 0.04);
}

.operator-detail-grid span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 820;
}

.operator-detail-grid strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.25;
}

.operator-notes {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.operator-notes p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.operator-draft-summary {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(26, 107, 77, 0.2);
  border-radius: 8px;
  padding: 14px;
  background: rgba(26, 107, 77, 0.07);
}

.operator-draft-summary h3 {
  margin: 0;
  color: var(--green);
}

.operator-draft-summary p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.operator-draft-summary span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 820;
}

.operator-draft-summary strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--green);
}

.operator-actions {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.operator-actions h3 {
  width: 100%;
}

.operator-edit-form {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.operator-edit-form .intake-field textarea {
  min-height: 120px;
}

.operator-updates-layout {
  align-items: start;
}

.operator-project-select select {
  min-width: 0;
}

.operator-update-form {
  border-top: 0;
  padding-top: 0;
}

.operator-update-list {
  display: grid;
  gap: 10px;
}

.operator-update-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
}

.operator-update-card.public {
  border-color: rgba(139, 57, 43, 0.38);
  background: rgba(255, 245, 240, 0.88);
  box-shadow: inset 4px 0 0 #b94a33;
}

.operator-update-card h3,
.operator-update-card p {
  margin: 0;
}

.operator-update-card h3 {
  color: var(--green);
}

.operator-update-card p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.operator-update-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 780;
}

.operator-public-flag {
  align-self: start;
  border-radius: 999px;
  padding: 6px 10px;
  background: #b94a33;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.operator-visibility[data-status="public"] {
  background: #b94a33;
  color: #ffffff;
}

.operator-visibility[data-status="contributors_only"],
.operator-visibility[data-status="project_contributors_only"] {
  background: rgba(214, 119, 34, 0.16);
  color: #8a4b13;
}

.operator-visibility[data-status="operator_only"] {
  background: rgba(23, 60, 50, 0.12);
  color: var(--green);
}

.public-visibility-warning {
  border-color: rgba(139, 57, 43, 0.24);
  background: rgba(255, 235, 229, 0.68);
}

.public-visibility-warning h3 {
  color: #7a2d20;
}

.review-actions {
  display: grid;
  gap: 10px;
}

.thank-you-hero {
  padding: 72px 18px 42px;
  background:
    linear-gradient(180deg, rgba(8, 23, 18, 0.26), rgba(8, 23, 18, 0.78)),
    url("../assets/hero-fields.jpg") center / cover;
  color: white;
}

.thank-you-hero h1 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 9vw, 3.2rem);
}

.thank-you-hero p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.next-steps {
  display: grid;
  gap: 10px;
}

.next-steps h3 {
  margin-bottom: 2px;
  font-size: 1.1rem;
}

.next-steps p {
}

.bottom-nav {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  border: 1px solid rgba(23, 60, 50, 0.12);
  border-radius: 22px;
  padding: 8px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 18px 48px rgba(20, 32, 27, 0.2);
  backdrop-filter: blur(18px);
}

.bottom-nav button {
  min-width: 0;
  min-height: 56px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 830;
}

.bottom-nav .icon {
  width: 19px;
  height: 19px;
  margin: 0 auto 3px;
}

.bottom-nav span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottom-nav button.active {
  background: var(--green);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
  color: white;
}

@media (max-width: 430px) {
  .hero {
    min-height: calc(100svh - 48px);
    padding-top: 20px;
    padding-bottom: 92px;
  }

  .home-hero {
    min-height: min(700px, calc(100svh - 28px));
    padding-top: 26px;
    padding-bottom: 76px;
  }

  .hero-brand img {
    width: clamp(230px, 76vw, 310px);
    max-height: 144px;
  }

  .detail-hero {
    min-height: min(520px, calc(100svh - 48px));
    padding-top: 18px;
    padding-bottom: 46px;
  }

  .project-hero-sponsor {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 190px);
    min-height: 72px;
    margin: 0 0 18px auto;
  }

  .update-signup {
    grid-template-columns: 1fr;
  }

  .update-signup__form {
    grid-template-columns: 1fr;
  }

  .update-signup__status {
    grid-column: auto;
  }

  .project-goal-card {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .detail-hero h1,
  .page-head h1 {
    font-size: clamp(1.9rem, 7.6vw, 2.2rem);
  }

  .hero p,
  .detail-hero p {
    font-size: 0.94rem;
  }

  .actions .button {
    flex: 1 1 150px;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .instagram-link {
    width: 100%;
  }

  .detail-hero .stat-strip {
    gap: 6px;
  }

  .detail-hero .stat-strip span {
    min-height: 30px;
    font-size: 0.76rem;
  }

  .back-button {
    margin-bottom: 14px;
  }

  .section:has(.detail-layout) {
    padding-top: 28px;
  }

  .detail-layout,
  .support-panel {
    gap: 12px;
  }

  .story {
    gap: 10px;
  }

  .story .timeline {
    gap: 8px;
  }

  .timeline-step {
    padding: 14px;
  }

  .timeline-step strong {
    width: 32px;
    height: 32px;
  }

  .project-body,
  .feed-card > div,
  .update-card > div,
  .impact-support-card,
  .review-card,
  .confirm-card,
  .story,
  .tier,
  .cart,
  .intake-section,
  .operator-warning,
  .operator-toolbar,
  .operator-list-panel,
  .operator-detail {
    padding: 18px;
  }

  .intake-section {
    gap: 14px;
  }

  .intake-progress {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

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

  .intake-progress li {
    padding: 7px 5px;
    font-size: 0.68rem;
  }

  .intake-section-head {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .intake-section-head span {
    width: 38px;
    height: 38px;
  }

  .intake-section h2 {
    font-size: 1.14rem;
  }

  .choice-card,
  .pathway-card,
  .consent-card {
    padding-right: 10px;
    padding-left: 10px;
  }

  .support-intro {
    padding: 2px 2px 0;
  }

  .trust-chips {
    padding: 12px;
  }

  .tier {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tier-price {
    justify-self: start;
    font-size: 1.36rem;
  }

  .quantity {
    width: 100%;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
  }

  .sticky-support {
    inset-right: 8px;
    inset-left: 8px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .sticky-support .summary-dot {
    display: none;
  }
}

@media (max-width: 360px) {
  .header-pill {
    padding: 0 10px;
  }

  .sticky-support {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .sticky-support > span,
  .sticky-support .summary-dot {
    display: none;
  }
}

@media (min-width: 720px) {
  main {
    padding-bottom: 0;
  }

  .section,
  .page-head,
  .hero,
  .detail-hero,
  .thank-you-hero {
    padding-right: max(32px, calc((100vw - 1160px) / 2));
    padding-left: max(32px, calc((100vw - 1160px) / 2));
  }

  .hero,
  .detail-hero {
    min-height: 720px;
    padding-bottom: 72px;
  }

  .home-hero {
    min-height: min(700px, calc(100svh - 42px));
    padding-top: 48px;
    padding-bottom: 86px;
  }

  .header-pill {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.875rem;
  }

  .hero h1,
  .detail-hero h1,
  .page-head h1 {
    font-size: clamp(3.5rem, 7vw, 5.4rem);
    line-height: 1;
  }

  .feed-detail-head {
    min-height: min(340px, 42svh);
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .feed-detail-head h1 {
    max-width: min(20ch, 100%);
    font-size: clamp(2.6rem, 4.2vw, 3.4rem);
    line-height: 1.05;
  }

  .section.feed-detail {
    padding: 0 24px 64px;
    margin-top: -28px;
  }

  .feed-detail-article {
    padding: 40px 40px 48px;
    border-radius: 22px;
  }

  .feed-detail-body .feed-inline-figure {
    margin-inline: -12px;
    width: calc(100% + 24px);
  }

  .feed-detail-body .feed-inline-figure img {
    max-height: min(48vh, 460px);
    border-radius: 16px;
  }

  .hero p,
  .detail-hero p {
    font-size: 1.05rem;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading.split {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
    max-width: none;
  }

  .feature-grid,
  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .active-habitats .project-grid {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 26px;
  }

  .detail-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .project-impact-data__tile img {
    max-width: 72px;
  }

  .story {
    gap: 18px;
  }

  .story > p {
    max-width: 64ch;
  }

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

  .timeline-step {
    align-content: start;
    min-height: 170px;
    grid-template-columns: 1fr;
  }

  .timeline-step small {
    grid-column: auto;
  }

  .support-panel,
  .cart {
    position: sticky;
    top: 84px;
  }

  .support-panel {
    position: static;
  }

  .quantity {
    width: 240px;
  }

  .sticky-support {
    display: none;
  }

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

  .photo-wall-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }

  .update-card,
  .feed-card,
  .checkout {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .intake-form {
    max-width: 920px;
  }

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

  .checkout .review-card {
    grid-column: 1 / -1;
    max-width: 760px;
  }

  .operator-toolbar {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  }

  .admin-command-bar {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
    align-items: end;
  }

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

  .admin-workbench {
    grid-template-columns: minmax(0, 1fr);
  }

  .operator-filters {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .operator-layout {
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    align-items: start;
  }

  .operator-list-panel {
    position: sticky;
    top: 84px;
    max-height: calc(100vh - 118px);
    overflow: auto;
  }

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

  .thank-you-hero {
    padding-top: 112px;
    padding-bottom: 86px;
  }

  .bottom-nav {
    left: 50%;
    right: auto;
    bottom: 18px;
    width: min(520px, calc(100vw - 32px));
    transform: translateX(-50%);
  }
}
