/* Rally Raise — sister-brand stylesheet.
   Reuses tokens from /css/app.css (loaded first). Layers Rally-specific
   layout + a brand-adjustable `--org-primary` for branded org pages.
   Mobile-first: 375x667 baseline, 16px min font, 44px min touch targets. */

:root {
  /* Default org color — overridden at runtime from GET /api/org/:slug. */
  --org-primary: var(--ffc-green-deep, #2f6b4e);
  --org-primary-ink: #ffffff;
}

.rr-body {
  background: var(--ffc-white, #ffffff);
  color: var(--ffc-black, #1a1a1a);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh;
}

/* -------- Header -------- */
.rr-header {
  border-bottom: 1px solid var(--ffc-border, #e5e7eb);
  background: var(--ffc-white, #fff);
}
.rr-header__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.rr-wordmark {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ffc-green-deep, #2f6b4e);
  text-decoration: none;
}
.rr-wordmark--sm { font-size: 15px; font-weight: 700; }
.rr-header__nav { display: flex; gap: 16px; }
.rr-header__link {
  color: var(--ffc-green-deep, #2f6b4e);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 4px;
}
.rr-header__link:hover { text-decoration: underline; }

/* -------- Main -------- */
.rr-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.rr-main--org { max-width: 520px; }

/* -------- Hero (landing) -------- */
.rr-hero { text-align: left; }
.rr-hero__eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ffc-gray, #6b7280);
  margin: 0 0 12px;
  font-weight: 600;
}
.rr-hero__headline {
  font-size: clamp(32px, 8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 800;
  color: var(--ffc-black, #1a1a1a);
}
.rr-hero__sub {
  font-size: 19px;
  line-height: 1.4;
  color: var(--ffc-black, #1a1a1a);
  margin: 0 0 20px;
  max-width: 40ch;
}
.rr-hero__disclosure {
  font-size: 16px;
  color: var(--ffc-gray, #6b7280);
  margin: 0 0 32px;
  max-width: 48ch;
}
.rr-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* -------- Buttons -------- */
.rr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 120ms ease, transform 40ms ease;
}
.rr-btn--primary {
  background: var(--org-primary);
  color: var(--org-primary-ink);
  border-color: var(--org-primary);
}
.rr-btn--primary:hover { filter: brightness(0.95); }
.rr-btn--primary:active { transform: translateY(1px); }
.rr-btn--secondary {
  background: var(--ffc-white, #fff);
  color: var(--org-primary);
  border-color: var(--org-primary);
}
.rr-btn--wide { width: 100%; }
.rr-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* -------- Landing sections -------- */
.rr-section__title {
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
  font-weight: 700;
}
.rr-how__steps {
  list-style: decimal inside;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.rr-how__steps li {
  background: var(--ffc-paper-warm, #fbfaf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 10px;
  padding: 16px;
  font-size: 16px;
  line-height: 1.45;
}
.rr-how__steps strong { display: block; margin-bottom: 4px; }
.rr-family {
  margin-top: 40px;
  padding: 16px;
  border-radius: 10px;
  background: var(--ffc-green-pale, #f4faf7);
}
.rr-family__note {
  margin: 0;
  font-size: 14px;
  color: var(--ffc-green-deep, #2f6b4e);
}

/* -------- Org page -------- */
.rr-org__head { text-align: center; margin-bottom: 24px; }
.rr-org__logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background-color: var(--org-primary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--org-primary-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
}
.rr-org__logo--has-img { color: transparent; }
.rr-org__name {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 800;
}
.rr-org__mission {
  font-size: 16px;
  color: var(--ffc-black, #1a1a1a);
  line-height: 1.5;
  margin: 0 0 16px;
}
.rr-org__verified {
  font-size: 13px;
  color: var(--ffc-gray, #6b7280);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
/* The `hidden` HTML attribute sets display:none by UA default, but our
   `display: inline-flex` above beats it on specificity. Restore the honor. */
.rr-org__verified[hidden] {
  display: none;
}
.rr-badge {
  background: var(--status-success-bg, #d1fae5);
  color: var(--status-success-ink, #166534);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}

/* -------- Donate form -------- */
.rr-donate {
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 12px;
  padding: 20px;
  display: grid;
  gap: 20px;
  background: var(--ffc-white, #fff);
}
.rr-donate__amounts legend,
.rr-donate__freq legend {
  font-size: 14px;
  font-weight: 600;
  color: var(--ffc-gray, #6b7280);
  padding: 0;
  margin-bottom: 8px;
}
.rr-amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.rr-amount {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid var(--ffc-border, #e5e7eb);
  background: var(--ffc-white, #fff);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 4px;
}
.rr-amount--selected {
  background: var(--org-primary);
  color: var(--org-primary-ink);
  border-color: var(--org-primary);
}
.rr-amount-other {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--ffc-gray, #6b7280);
}
.rr-amount-other input {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 8px;
}

.rr-donate__freq { display: flex; gap: 12px; flex-wrap: wrap; }
.rr-donate__freq legend { width: 100%; }
.rr-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  padding: 8px 12px;
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 8px;
  cursor: pointer;
  min-height: 44px;
}
.rr-radio input { accent-color: var(--org-primary); }

.rr-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--ffc-gray, #6b7280);
}
.rr-field input {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 8px;
  background: var(--ffc-white, #fff);
  color: var(--ffc-black, #1a1a1a);
}
.rr-field input:focus {
  outline: none;
  border-color: var(--org-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--org-primary) 20%, transparent);
}

.rr-donate__disclosure {
  margin: 0;
  font-size: 13px;
  color: var(--ffc-gray, #6b7280);
}
.rr-error {
  margin: 0;
  font-size: 14px;
  color: var(--status-error-ink, #991b1b);
  background: var(--status-error-bg, #fee2e2);
  padding: 8px 12px;
  border-radius: 8px;
}

/* -------- Trust + footer -------- */
.rr-trust__note {
  text-align: center;
  font-size: 13px;
  color: var(--ffc-gray, #6b7280);
  margin-top: 20px;
}
.rr-footer {
  border-top: 1px solid var(--ffc-border, #e5e7eb);
  padding: 20px;
  margin-top: 40px;
}
.rr-footer__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.rr-footer__nav { display: flex; gap: 16px; flex-wrap: wrap; }
.rr-footer__link {
  color: var(--ffc-gray, #6b7280);
  text-decoration: none;
  font-size: 14px;
}
.rr-footer__link:hover { color: var(--ffc-black, #1a1a1a); }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ffc-black, #000);
  color: var(--ffc-white, #fff);
  padding: 8px 12px;
  z-index: 100;
}
.skip-link:focus { top: 0; }

/* ---------------------------------------------------------------------------
   Landing-page extensions (hero proof row, how-it-works icons, trust strip,
   testimonial, feature grid, FAQ accordion, closing CTA, expanded footer).
   Mobile-first: every rule targets 375px first; widen at ≥720px.
   --------------------------------------------------------------------------- */

/* Header wordmark image */
.rr-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ffc-green-deep, #2f6b4e);
}
.rr-header__mark {
  height: 28px;
  width: auto;
  display: block;
}
.rr-header__nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.rr-header__nav .rr-header__link { font-size: 14px; }
@media (max-width: 520px) {
  .rr-header__nav .rr-header__link--optional { display: none; }
}

/* Hero refinements */
.rr-hero { padding-top: 24px; }
.rr-hero__headline { max-width: 18ch; }

/* Proof row — three stat cards, 94¢ / 3% / 3% */
.rr-proof {
  display: grid;
  gap: 12px;
  margin: 24px 0 16px;
}
.rr-proof__card {
  background: var(--ffc-paper-warm, #fbfaf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 12px;
  padding: 16px 18px;
}
.rr-proof__num {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  color: var(--ffc-gold-dark, #e0a134);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.rr-proof__label {
  font-size: 14px;
  color: var(--ffc-gray, #6b7280);
  line-height: 1.4;
  display: block;
}
@media (min-width: 720px) {
  .rr-proof { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* How it works — step cards with inline SVG icons */
.rr-how__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.rr-how__step {
  background: var(--ffc-paper-warm, #fbfaf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 12px;
  padding: 20px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
}
.rr-how__icon {
  width: 64px;
  height: 64px;
  color: var(--ffc-black, #1a1a1a);
  flex-shrink: 0;
}
.rr-how__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.rr-how__num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ffc-green-deep, #2f6b4e);
  margin-bottom: 4px;
}
.rr-how__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ffc-black, #1a1a1a);
}
.rr-how__body {
  margin: 0;
  color: var(--ffc-black, #1a1a1a);
  font-size: 16px;
  line-height: 1.45;
}
@media (min-width: 720px) {
  .rr-how__steps { grid-template-columns: repeat(3, 1fr); }
  .rr-how__step { grid-template-columns: 1fr; text-align: left; }
  .rr-how__icon { margin-bottom: 4px; }
}

/* Trust strip */
.rr-trust {
  margin-top: 40px;
  padding: 20px;
  border-radius: 12px;
  background: var(--ffc-green-pale, #f4faf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
}
.rr-trust__line {
  margin: 0;
  font-size: 14px;
  color: var(--ffc-green-deep, #2f6b4e);
  line-height: 1.5;
  text-align: center;
}
.rr-trust__items {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 13px;
  color: var(--ffc-gray, #6b7280);
}
.rr-trust__items li::before {
  content: "• ";
  color: var(--ffc-gold-dark, #e0a134);
  margin-right: 4px;
}
.rr-trust__items li:first-child::before { content: ""; margin: 0; }

/* Testimonial — matches .voice block styling from app.css */
.rr-voice {
  margin: 48px 0;
  padding: 24px 8px 24px 20px;
}
.rr-voice__quote {
  position: relative;
  border-left: 3px solid var(--ffc-gold, #fab43a);
  padding-left: 20px;
  max-width: 640px;
}
.rr-voice__quote p {
  font-size: 19px;
  line-height: 1.45;
  color: var(--ffc-black, #1a1a1a);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.rr-voice__quote p::before { content: "\201C"; }
.rr-voice__quote p::after  { content: "\201D"; }
.rr-voice__author {
  font-size: 14px;
  font-weight: 500;
  color: var(--ffc-gray, #6b7280);
  letter-spacing: 0.01em;
  line-height: 1.5;
  display: block;
}
.rr-voice__note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ffc-gray, #6b7280);
  font-style: italic;
}

/* Feature grid — "Built for you" */
.rr-features {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.rr-feature {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 10px;
  background: var(--ffc-white, #fff);
}
.rr-feature__check {
  width: 24px;
  height: 24px;
  color: var(--ffc-green-deep, #2f6b4e);
  flex-shrink: 0;
}
.rr-feature__label {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ffc-black, #1a1a1a);
}
@media (min-width: 560px) {
  .rr-features { grid-template-columns: repeat(2, 1fr); }
}

/* FAQ */
.rr-faq {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}
.rr-faq__item {
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 10px;
  background: var(--ffc-white, #fff);
  padding: 0;
  overflow: hidden;
}
.rr-faq__item[open] {
  background: var(--ffc-paper-warm, #fbfaf7);
}
.rr-faq__q {
  font-size: 16px;
  font-weight: 600;
  color: var(--ffc-black, #1a1a1a);
  cursor: pointer;
  padding: 14px 16px;
  list-style: none;
  position: relative;
  padding-right: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.rr-faq__q::-webkit-details-marker { display: none; }
.rr-faq__q::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--ffc-gray, #6b7280);
  line-height: 1;
}
.rr-faq__item[open] .rr-faq__q::after { content: "−"; }
.rr-faq__a {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--ffc-black, #1a1a1a);
  font-size: 15px;
  line-height: 1.55;
}

/* Closing CTA — warmer tone */
.rr-close {
  margin-top: 56px;
  padding: 32px 20px;
  border-radius: 14px;
  background: var(--ffc-green-pale, #f4faf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
  text-align: center;
}
.rr-close__title {
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--ffc-black, #1a1a1a);
}
.rr-close__body {
  margin: 0 0 20px;
  font-size: 16px;
  color: var(--ffc-black, #1a1a1a);
  line-height: 1.5;
}
.rr-close__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Section headers with subtitle pattern */
.rr-section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ffc-green-deep, #2f6b4e);
  margin: 48px 0 4px;
}
.rr-section__title {
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--ffc-black, #1a1a1a);
}
.rr-section__sub {
  font-size: 15px;
  color: var(--ffc-gray, #6b7280);
  margin: 0 0 16px;
  max-width: 52ch;
}

/* Footer expansion */
.rr-footer {
  padding: 32px 20px;
  background: var(--ffc-paper-warm, #fbfaf7);
}
.rr-footer__inner {
  display: grid;
  gap: 16px;
  align-items: start;
}
.rr-footer__brand { display: flex; flex-direction: column; gap: 8px; }
.rr-footer__family {
  margin: 0;
  font-size: 13px;
  color: var(--ffc-gray, #6b7280);
  line-height: 1.5;
}
.rr-footer__contact {
  margin: 0;
  font-size: 13px;
  color: var(--ffc-gray, #6b7280);
}
.rr-footer__contact a {
  color: var(--ffc-green-deep, #2f6b4e);
  text-decoration: none;
}
.rr-footer__contact a:hover { text-decoration: underline; }
.rr-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 720px) {
  .rr-footer__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
  }
   Branded org-page additions (cover-the-fee, freq pill, attribution card,
   trust row, skeleton loader, empty state, focus rings, footer copyright).
   --------------------------------------------------------------------------- */

/* Focus rings (a11y pass) */
.rr-btn:focus-visible,
.rr-amount:focus-visible,
.rr-freq:focus-visible,
.rr-footer__link:focus-visible,
.rr-wordmark:focus-visible,
.rr-header__link:focus-visible,
.rr-footer__brand:focus-visible {
  outline: 3px solid var(--org-primary);
  outline-offset: 2px;
}
.rr-cover-fee__label input[type="checkbox"]:focus-visible {
  outline: 3px solid var(--org-primary);
  outline-offset: 2px;
}

/* Support heading (h2 under org name) */
.rr-org__support-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--ffc-gray, #6b7280);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

/* Cover-the-fee toggle */
.rr-cover-fee {
  padding: 12px;
  background: var(--ffc-paper-warm, #fbfaf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 8px;
}
.rr-cover-fee__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ffc-black, #1a1a1a);
}
.rr-cover-fee__label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0 0;
  flex-shrink: 0;
  accent-color: var(--org-primary);
  cursor: pointer;
}

/* Transparency line (live-updates with amount + fee toggle) */
.rr-donate__transparency {
  margin: 0;
  font-size: 13px;
  color: var(--ffc-gray, #6b7280);
  line-height: 1.4;
  min-height: 18px;
}

/* Frequency pill toggle */
.rr-freq-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 10px;
  padding: 3px;
  background: var(--ffc-paper-warm, #fbfaf7);
  width: 100%;
}
.rr-freq {
  flex: 1;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: var(--ffc-black, #1a1a1a);
  font-size: 15px;
  font-weight: 600;
  border-radius: 7px;
  cursor: pointer;
  padding: 0 12px;
}
.rr-freq--selected {
  background: var(--ffc-white, #fff);
  color: var(--org-primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.rr-freq__copy {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--ffc-gray, #6b7280);
  line-height: 1.4;
}

/* Share attribution card */
.rr-attribution {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 12px 14px;
  background: var(--ffc-green-pale, #f4faf7);
  border: 1px solid color-mix(in srgb, var(--org-primary) 30%, transparent);
  border-radius: 10px;
}
.rr-attribution__icon {
  flex-shrink: 0;
  color: var(--org-primary);
}
.rr-attribution__text {
  margin: 0;
  font-size: 14px;
  color: var(--ffc-black, #1a1a1a);
  line-height: 1.4;
}

/* Trust row near submit button */
.rr-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ffc-gray, #6b7280);
  margin-top: -4px;
}
.rr-trust-row__item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rr-trust-row__item svg { color: var(--org-primary); }
.rr-trust-row__sep {
  color: var(--ffc-border, #cbd5e1);
  font-weight: 700;
}

/* Skeleton loader */
@keyframes rr-skel-pulse {
  0% { opacity: 0.55; }
  50% { opacity: 0.85; }
  100% { opacity: 0.55; }
}
.rr-skeleton {
  padding: 0;
  animation: rr-skel-pulse 1.4s ease-in-out infinite;
}
.rr-skeleton__logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: var(--ffc-border, #e5e7eb);
}
.rr-skeleton__line {
  height: 14px;
  margin: 10px auto;
  border-radius: 6px;
  background: var(--ffc-border, #e5e7eb);
  max-width: 420px;
}
.rr-skeleton__line--name {
  height: 28px;
  width: 65%;
  margin: 0 auto 16px;
}
.rr-skeleton__line--short { width: 40%; }
.rr-skeleton__form {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 12px;
  display: grid;
  gap: 14px;
}
.rr-skeleton__btnrow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.rr-skeleton__btn,
.rr-skeleton__input {
  height: 44px;
  background: var(--ffc-border, #e5e7eb);
  border-radius: 8px;
}
.rr-skeleton__submit {
  height: 48px;
  background: var(--ffc-border, #e5e7eb);
  border-radius: 8px;
  margin-top: 8px;
}

/* Empty state (404) */
.rr-empty {
  text-align: center;
  padding: 48px 20px;
}
.rr-empty__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ffc-black, #1a1a1a);
}
.rr-empty__body {
  font-size: 16px;
  color: var(--ffc-gray, #6b7280);
  line-height: 1.5;
  max-width: 44ch;
  margin: 0 auto;
}
.rr-empty__body a {
  color: var(--org-primary);
  text-decoration: underline;
}

/* Org-page footer enhancements */
.rr-footer__brand { text-decoration: none; }
.rr-footer__brand:hover { text-decoration: underline; }
.rr-footer__copyright {
  flex-basis: 100%;
  text-align: center;
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--ffc-gray, #6b7280);
}

@media (prefers-reduced-motion: reduce) {
  .rr-skeleton { animation: none; opacity: 0.7; }
}

/* ---------------------------------------------------------------------------
   Prose pages — Privacy, Terms, About. Long-form reading, 640px max column,
   16px min font, generous line height. Matches the Stripe Docs / Notion Docs
   tone the spec asks for.
   --------------------------------------------------------------------------- */
.rr-body--prose {
  background: var(--ffc-white, #ffffff);
}
.rr-main--prose {
  max-width: 680px;
  padding: 24px 20px 64px;
}
.rr-prose {
  color: var(--ffc-black, #1a1a1a);
  font-size: 16px;
  line-height: 1.6;
  max-width: 640px;
}
.rr-prose__title {
  font-size: clamp(28px, 6vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 16px 0 8px;
  color: var(--ffc-black, #1a1a1a);
}
.rr-prose__updated {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--ffc-gray, #6b7280);
}
.rr-prose__lede {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 24px;
  color: var(--ffc-black, #1a1a1a);
}
.rr-prose h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 32px 0 10px;
  color: var(--ffc-black, #1a1a1a);
}
.rr-prose h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 6px;
  color: var(--ffc-black, #1a1a1a);
}
.rr-prose p {
  margin: 0 0 14px;
  color: var(--ffc-black, #1a1a1a);
}
.rr-prose ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.rr-prose li {
  margin-bottom: 8px;
  line-height: 1.55;
}
.rr-prose a {
  color: var(--ffc-green-deep, #2f6b4e);
  text-decoration: underline;
}
.rr-prose a:hover {
  color: var(--ffc-black, #1a1a1a);
}
.rr-prose code {
  background: var(--ffc-paper-warm, #fbfaf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 14px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}
.rr-prose__banner {
  background: var(--ffc-gold-pale, #fdf6e3);
  border: 1px solid var(--ffc-gold, #fab43a);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ffc-black, #1a1a1a);
  margin: 8px 0 24px;
}
.rr-prose__signoff {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--ffc-border, #e5e7eb);
  font-style: italic;
  color: var(--ffc-gray, #6b7280);
}
.rr-prose__todo {
  /* Placeholder hook — the TODO lives in the HTML comment beside it. */
  margin: 0;
}

/* Founder bio cards — About page */
.rr-bio-grid {
  display: grid;
  gap: 16px;
  margin: 12px 0 16px;
}
.rr-bio {
  background: var(--ffc-paper-warm, #fbfaf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 10px;
  padding: 16px 18px;
}
.rr-bio__name {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ffc-black, #1a1a1a);
}
.rr-bio__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ffc-black, #1a1a1a);
}
@media (min-width: 560px) {
  .rr-bio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------------------------------
   Admin dashboard — desktop-first per ED panel, mobile-responsive.
   Tables scroll horizontally at <720px so a phone still works.
   --------------------------------------------------------------------------- */
.rr-body--admin .rr-main { max-width: 1040px; }

.rr-admin__title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.rr-admin__sub { font-size: 15px; color: var(--ffc-gray, #6b7280); margin: 0 0 16px; }
.rr-admin__org-label {
  color: var(--ffc-gray, #6b7280);
  font-size: 14px;
  font-weight: 500;
}
.rr-admin__signout {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* Login card */
.rr-admin__login,
.rr-admin__forbidden {
  max-width: 420px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 12px;
  background: var(--ffc-white, #fff);
}
.rr-admin__form { display: grid; gap: 16px; }
.rr-admin__form--grid {
  display: grid;
  gap: 12px 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .rr-admin__form--grid { grid-template-columns: repeat(2, 1fr); }
  .rr-admin__field--wide { grid-column: 1 / -1; }
  .rr-admin__form-actions { grid-column: 1 / -1; }
}
.rr-admin__form-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rr-admin__status { margin: 0; font-size: 14px; color: var(--ffc-gray, #6b7280); }

/* Dashboard */
.rr-admin__cards {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
}
@media (min-width: 720px) {
  .rr-admin__cards { grid-template-columns: repeat(3, 1fr); }
}
.rr-admin__card {
  background: var(--ffc-white, #fff);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rr-admin__card-icon {
  color: var(--org-primary);
  width: 24px;
  height: 24px;
}
.rr-admin__card-label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ffc-gray, #6b7280);
}
.rr-admin__card-amount {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ffc-black, #1a1a1a);
  font-variant-numeric: tabular-nums;
}
.rr-admin__card-meta {
  margin: 0;
  font-size: 14px;
  color: var(--ffc-gray, #6b7280);
}
.rr-admin__sharers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.rr-admin__sharer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 15px;
}
.rr-admin__sharer-name { color: var(--ffc-black, #1a1a1a); font-weight: 600; }
.rr-admin__sharer-amount { color: var(--ffc-gray, #6b7280); font-variant-numeric: tabular-nums; }
.rr-admin__sharer-empty { color: var(--ffc-gray, #6b7280); font-size: 14px; font-style: italic; }

/* Collapsible sections */
.rr-admin__section {
  background: var(--ffc-white, #fff);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}
.rr-admin__section-title {
  cursor: pointer;
  padding: 16px 20px;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rr-admin__section-title::-webkit-details-marker { display: none; }
.rr-admin__section[open] .rr-admin__section-title {
  border-bottom: 1px solid var(--ffc-border, #e5e7eb);
}
.rr-admin__section-body { padding: 20px; }
.rr-admin__helper {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--ffc-gray, #6b7280);
}
.rr-admin__subheading {
  margin: 24px 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ffc-black, #1a1a1a);
}
.rr-admin__note { margin: 12px 0 0; font-size: 14px; }
.rr-admin__note a { color: var(--org-primary); text-decoration: underline; }

.rr-admin__filter {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr auto;
  margin-bottom: 16px;
  align-items: end;
}
@media (max-width: 520px) {
  .rr-admin__filter { grid-template-columns: 1fr; }
}

/* Tables — horizontally scroll on small screens. */
.rr-admin__table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rr-admin__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.rr-admin__table th,
.rr-admin__table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--ffc-border, #e5e7eb);
  font-variant-numeric: tabular-nums;
}
.rr-admin__table th {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ffc-gray, #6b7280);
  background: var(--ffc-paper-warm, #fbfaf7);
}
.rr-admin__table tbody tr:last-child td { border-bottom: none; }
.rr-admin__table-empty td,
.rr-admin__table-skeleton td {
  color: var(--ffc-gray, #6b7280);
  font-style: italic;
  text-align: center;
  padding: 24px 12px;
}

.rr-admin__export-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------------
   Fees transparency page — /fees. Extends the prose layout with a
   benchmark table, inline SVG charts, worked examples, and an annual-
   report request form. Mobile-first; the table scrolls horizontally
   at <720px to keep small phones readable.
   --------------------------------------------------------------------------- */

.rr-fees__split {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}
.rr-fees__split li {
  background: var(--ffc-paper-warm, #fbfaf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.45;
}
.rr-fees__split strong {
  display: inline-block;
  min-width: 3.2em;
  font-size: 20px;
  color: var(--ffc-green-deep, #2f6b4e);
  letter-spacing: -0.01em;
}

.rr-fees__examples {
  display: grid;
  gap: 16px;
  margin: 12px 0 28px;
}
.rr-fees__example {
  background: var(--ffc-paper-warm, #fbfaf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 12px;
  padding: 16px 18px;
}
.rr-fees__example-label {
  margin: 0 0 10px;
  font-size: 15px;
}
.rr-fees__example-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.rr-fees__example-table td {
  padding: 6px 0;
  border-bottom: 1px solid var(--ffc-border, #e5e7eb);
}
.rr-fees__example-table td:last-child {
  text-align: right;
}
.rr-fees__example-table tr:last-child td {
  border-bottom: none;
  padding-top: 10px;
  border-top: 2px solid var(--ffc-black, #1a1a1a);
}
.rr-fees__example-note {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--ffc-gray, #6b7280);
}
@media (min-width: 620px) {
  .rr-fees__examples { grid-template-columns: 1fr 1fr; }
}

.rr-fees__figure {
  margin: 16px 0 28px;
  padding: 0;
}
.rr-fees__figure svg {
  width: 100%;
  height: auto;
  display: block;
  background: var(--ffc-paper-warm, #fbfaf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 10px;
  padding: 12px;
  box-sizing: border-box;
}
.rr-fees__figcaption {
  margin: 10px 2px 0;
  font-size: 13px;
  color: var(--ffc-gray, #6b7280);
  line-height: 1.5;
}

.rr-fees__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 10px 0 12px;
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 10px;
}
.rr-fees__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}
.rr-fees__table th,
.rr-fees__table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--ffc-border, #e5e7eb);
  vertical-align: top;
}
.rr-fees__table thead th {
  background: var(--ffc-paper-warm, #fbfaf7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ffc-gray, #6b7280);
  font-weight: 700;
}
.rr-fees__table tbody th {
  font-weight: 700;
  color: var(--ffc-black, #1a1a1a);
}
.rr-fees__table tbody tr:last-child th,
.rr-fees__table tbody tr:last-child td {
  border-bottom: none;
}
.rr-fees__row-highlight {
  background: color-mix(in srgb, #2f6b4e 8%, transparent);
}
.rr-fees__row-highlight th,
.rr-fees__row-highlight td {
  color: var(--ffc-black, #1a1a1a);
}
.rr-fees__table-note {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--ffc-gray, #6b7280);
  line-height: 1.5;
}

.rr-fees__math {
  list-style: none;
  padding: 12px 16px;
  margin: 0 0 18px;
  background: var(--ffc-paper-warm, #fbfaf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 10px;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
}
.rr-fees__math li {
  padding: 4px 0;
  border-bottom: 1px dashed var(--ffc-border, #e5e7eb);
}
.rr-fees__math li:last-child {
  border-bottom: none;
  padding-top: 8px;
}

.rr-fees__form {
  display: grid;
  gap: 14px;
  padding: 20px;
  margin: 12px 0 28px;
  background: var(--ffc-paper-warm, #fbfaf7);
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 12px;
}
.rr-fees__form label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ffc-gray, #6b7280);
}
.rr-fees__form input {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid var(--ffc-border, #e5e7eb);
  border-radius: 8px;
  background: var(--ffc-white, #fff);
  color: var(--ffc-black, #1a1a1a);
}
.rr-fees__form input:focus {
  outline: none;
  border-color: var(--org-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--org-primary) 20%, transparent);
}
.rr-fees__form-status {
  margin: 0;
  font-size: 14px;
  min-height: 20px;
}
.rr-fees__form-status--ok {
  color: var(--ffc-green-deep, #2f6b4e);
  font-weight: 600;
}
.rr-fees__form-status--err {
  color: var(--status-error-ink, #991b1b);
}

.rr-fees__sources {
  padding-left: 22px;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
}
.rr-fees__sources li {
  margin-bottom: 10px;
  color: var(--ffc-black, #1a1a1a);
}
.rr-fees__sources a {
  color: var(--ffc-green-deep, #2f6b4e);
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.rr-fees__sources-note {
  font-size: 13px;
  color: var(--ffc-gray, #6b7280);
  margin: 0 0 12px;
}

/* ===========================================================================
   ORG PAGE REDESIGN — 2026-04-15 (scoped to .rr-body--org)
   Implements plans/donor-affiliate/redesign-branded-page.md.
   =========================================================================== */

.rr-body--org {
  background: #f6f3ec;
  color: var(--ffc-black, #1a1a1a);
}
:root {
  --ffc-gray-dark: #565e6a;
  --rr-keyline: #e3ded2;
}
.rr-body--org > .rr-header { display: none; }

/* Hero band */
.rr-body--org #rr-hero {
  height: 180px;
  background-position: center 35%;
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: ellipse(120% 100% at 50% 0%);
  position: relative;
  margin: 0 0 -48px;
}
.rr-body--org #rr-hero.rr-hero--has-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(246,243,236,0) 50%, rgba(246,243,236,0.55) 85%, rgba(246,243,236,1) 100%);
  pointer-events: none;
}
.rr-body--org #rr-hero.rr-hero--wash {
  background-image: linear-gradient(135deg, color-mix(in srgb, var(--org-primary, #2f6b4e) 18%, #f6f3ec) 0%, #f6f3ec 100%);
}
@media (min-width: 720px) {
  .rr-body--org #rr-hero { height: 260px; margin-bottom: -72px; }
}

.rr-body--org .rr-main--org {
  max-width: 560px;
  padding: 16px 20px 80px;
  position: relative;
  z-index: 1;
}
.rr-body--org .rr-org { background: transparent; }

.rr-body--org .rr-org__head { text-align: center; padding: 8px 0 20px; }
.rr-body--org .rr-org__logo {
  width: 160px; height: 160px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background-color: #ffffff;
  background-size: 80% 80%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.04),
    0 8px 24px -16px rgba(0,0,0,0.18),
    0 2px 8px -4px rgba(0,0,0,0.06);
  position: relative;
}
.rr-body--org .rr-org__logo::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 24px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--org-primary, #2f6b4e) 10%, transparent), transparent 80%);
  z-index: -1;
  pointer-events: none;
}
.rr-body--org .rr-org__logo--wordmark {
  background-color: var(--org-primary, #2f6b4e);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 700;
}
.rr-body--org .rr-org__logo--has-img { color: transparent; }

.rr-body--org .rr-org__name {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 800;
  color: var(--ffc-black, #1a1a1a);
}
.rr-body--org .rr-org__mission {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ffc-black, #1a1a1a);
  margin: 0 auto 16px;
  max-width: 44ch;
}
.rr-body--org .rr-org__verified { justify-content: center; }

.rr-body--org .rr-donate {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 28px 22px 24px;
  display: grid;
  gap: 22px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 16px 40px -24px rgba(0,0,0,0.12);
}
@media (min-width: 720px) {
  .rr-body--org .rr-donate { padding: 32px 28px 28px; gap: 24px; }
}
.rr-body--org .rr-donate__amounts legend,
.rr-body--org .rr-donate__freq legend {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ffc-gray-dark, #565e6a);
  font-weight: 700;
  padding: 0;
  margin-bottom: 10px;
}

.rr-body--org .rr-amount-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.rr-body--org .rr-amount {
  position: relative;
  min-height: 52px;
  border: 1.5px solid var(--rr-keyline);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ffc-black, #1a1a1a);
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease, transform 80ms ease;
}
.rr-body--org .rr-amount:hover {
  border-color: color-mix(in srgb, var(--org-primary, #2f6b4e) 40%, var(--rr-keyline));
}
.rr-body--org .rr-amount:focus-visible {
  outline: 2px solid var(--org-primary, #2f6b4e);
  outline-offset: 2px;
}
.rr-body--org .rr-amount--selected {
  border-color: var(--org-primary, #2f6b4e);
  border-width: 2px;
  background: color-mix(in srgb, var(--org-primary, #2f6b4e) 10%, #ffffff);
  color: var(--ffc-black, #1a1a1a);
}
.rr-body--org .rr-amount--selected::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fab43a;
  box-shadow: 0 0 0 2px #ffffff;
}

.rr-body--org .rr-field--notched { position: relative; padding-top: 0; }
.rr-body--org .rr-field--notched input {
  width: 100%;
  min-height: 52px;
  padding: 18px 16px 10px;
  border: 1.5px solid var(--rr-keyline);
  border-radius: 12px;
  background: #ffffff;
  font-size: 16px;
  color: var(--ffc-black, #1a1a1a);
  font-family: inherit;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.rr-body--org .rr-field--notched input::placeholder {
  color: color-mix(in srgb, var(--ffc-gray-dark, #565e6a) 50%, #ffffff);
}
.rr-body--org .rr-field--notched input:focus {
  outline: none;
  border-color: var(--org-primary, #2f6b4e);
  border-width: 2px;
  padding: 17px 15px 9px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--org-primary, #2f6b4e) 12%, transparent);
}
.rr-body--org .rr-field--notched > label {
  position: absolute;
  top: -7px;
  left: 12px;
  padding: 0 6px;
  background: #ffffff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ffc-gray-dark, #565e6a);
  pointer-events: none;
  z-index: 1;
}
.rr-body--org .rr-field--notched:focus-within > label {
  color: var(--org-primary, #2f6b4e);
}

.rr-body--org .rr-freq-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #f6f3ec;
  padding: 4px;
  border-radius: 12px;
  border: 1.5px solid var(--rr-keyline);
}
.rr-body--org .rr-freq {
  min-height: 44px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ffc-gray-dark, #565e6a);
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}
.rr-body--org .rr-freq--selected {
  background: #ffffff;
  color: var(--ffc-black, #1a1a1a);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.rr-body--org .rr-freq:focus-visible {
  outline: 2px solid var(--org-primary, #2f6b4e);
  outline-offset: 2px;
}
.rr-body--org .rr-freq__copy {
  margin: 12px 4px 0;
  font-size: 13px;
  color: var(--ffc-gray-dark, #565e6a);
  line-height: 1.45;
}

.rr-body--org .rr-donate__disclosure {
  margin: -6px 4px 0;
  font-size: 12px;
  color: var(--ffc-gray-dark, #565e6a);
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.rr-body--org .rr-donate__disclosure strong { display: none; }
.rr-body--org .rr-inline-link {
  color: var(--ffc-gray-dark, #565e6a);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}
.rr-body--org .rr-inline-link:hover { color: var(--org-primary, #2f6b4e); }

.rr-body--org .rr-cover-fee {
  background: #f6f3ec;
  border: 1.5px solid var(--rr-keyline);
  border-radius: 12px;
  padding: 12px 14px;
}
.rr-body--org .rr-cover-fee__label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ffc-black, #1a1a1a);
  cursor: pointer;
}
.rr-body--org .rr-cover-fee input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--org-primary, #2f6b4e);
  cursor: pointer;
  flex-shrink: 0;
}

.rr-body--org .rr-donate__transparency {
  font-size: 13px;
  color: var(--ffc-gray-dark, #565e6a);
  margin: 4px 0 0;
}

.rr-body--org .rr-field__help {
  margin: 8px 4px 0;
  font-size: 13px;
  color: var(--ffc-gray-dark, #565e6a);
  line-height: 1.5;
}
.rr-body--org .rr-map {
  margin-top: 12px;
  height: 200px;
  border-radius: 12px;
  border: 1.5px solid var(--rr-keyline);
  overflow: hidden;
  background: #f6f3ec;
}

.rr-body--org .rr-btn--donate {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 60px;
  border-radius: 12px;
  font-weight: 700;
  padding: 10px 20px;
  background: var(--org-primary, #2f6b4e);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: transform 80ms ease, box-shadow 140ms ease;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.14);
}
.rr-body--org .rr-btn--donate:hover {
  filter: brightness(0.96);
  box-shadow:
    0 4px 12px -4px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.14);
}
.rr-body--org .rr-btn--donate:active { transform: translateY(1px); }
.rr-body--org .rr-btn--donate:focus-visible {
  outline: 2px solid var(--org-primary, #2f6b4e);
  outline-offset: 3px;
}
.rr-body--org .rr-btn__primary-label {
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.rr-body--org .rr-btn__subtitle {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: color-mix(in srgb, #635bff 65%, #ffffff 35%);
}

.rr-body--org .rr-trust-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ffc-gray-dark, #565e6a);
}
.rr-body--org .rr-trust-row__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rr-body--org .rr-trust-row__sep { opacity: 0.5; }
.rr-body--org .rr-trust { display: none; }

.rr-body--org .rr-footer {
  border: none;
  background: transparent;
  padding: 40px 20px 64px;
}
.rr-body--org .rr-footer__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.rr-body--org .rr-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ffc-gray-dark, #565e6a);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.rr-body--org .rr-footer__brand:hover { color: var(--ffc-black, #1a1a1a); }
.rr-body--org .rr-footer__powered {
  font-weight: 500;
  color: var(--ffc-gray-dark, #565e6a);
}
.rr-body--org .rr-footer__wordmark {
  height: 22px;
  width: auto;
  opacity: 0.8;
  transition: opacity 140ms ease;
}
.rr-body--org .rr-footer__brand:hover .rr-footer__wordmark { opacity: 1; }
.rr-body--org .rr-footer__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.rr-body--org .rr-footer__link {
  font-size: 13px;
  color: var(--ffc-gray-dark, #565e6a);
  text-decoration: none;
}
.rr-body--org .rr-footer__link:hover {
  color: var(--ffc-black, #1a1a1a);
  text-decoration: underline;
}
.rr-body--org .rr-footer__copyright {
  font-size: 12px;
  color: var(--ffc-gray-dark, #565e6a);
  opacity: 0.7;
  margin: 0;
}

.rr-body--org .rr-amount-other { margin-top: 8px; }

.rr-body--org .rr-attribution {
  background: color-mix(in srgb, var(--org-primary, #2f6b4e) 8%, #ffffff);
  border: 1.5px solid color-mix(in srgb, var(--org-primary, #2f6b4e) 25%, var(--rr-keyline));
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ffc-black, #1a1a1a);
  font-size: 14px;
}
.rr-body--org .rr-attribution__icon { color: var(--org-primary, #2f6b4e); flex-shrink: 0; }
