/* ============================================================
   THE HONEST RESCUE PLAN
   Uses the campaign's miners'-handbill system from style.css.
   ============================================================ */

.rescue-header-figure {
  justify-content: flex-end;
  font-size: .82rem;
  gap: .45rem;
}

.rescue-header-figure strong {
  background: var(--accent);
  padding: .12rem .4rem;
}

.rescue-hero {
  padding: clamp(3.5rem, 8vw, 6.8rem) 0 4.5rem;
  border-bottom: 5px solid var(--accent);
}

.rescue-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, .8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.rescue-hero h1 {
  max-width: 50rem;
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.045em;
  margin-bottom: 1.5rem;
}

.hero-answer {
  display: inline;
  background: var(--accent);
  color: var(--ink);
  padding: .12em .32em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: clamp(1.45rem, 3.3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.35;
}

.rescue-lede {
  max-width: 39rem;
  font-size: 1.12rem;
  line-height: 1.62;
}

.hero-answer + .rescue-lede { margin-top: 1.6rem; }

.danger-card {
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--paper);
  box-shadow: 10px 10px 0 rgba(250, 249, 246, .2);
  padding: clamp(1.4rem, 4vw, 2.1rem);
}

.danger-label,
.live-label,
.deadline-label {
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.danger-card h2 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  margin: .3rem 0 1rem;
}

.danger-scale {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: .3rem;
  margin: 1.1rem 0 1.3rem;
}

.danger-scale span {
  height: 1.7rem;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.danger-scale .is-on { background: var(--urgent); }

.explain-strip {
  background: var(--accent);
  border-bottom: 2px solid var(--ink);
  padding: 1.25rem 0;
}

.explain-strip p {
  max-width: 61rem;
  font-size: 1.08rem;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2rem 0 2.5rem;
}

.snapshot-card {
  position: relative;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 1.35rem 1.35rem 1.45rem;
  background: var(--paper);
}

.snapshot-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--accent);
  font-size: 1.5rem;
  font-weight: 900;
  margin: -2rem 0 1rem;
}

.snapshot-card h3 {
  font-size: 1.35rem;
  text-transform: uppercase;
}

.snapshot-card ul,
.checklist,
.saved-list,
.document-grid ul {
  list-style: none;
}

.snapshot-card li {
  padding: .55rem 0;
  border-top: 1px solid var(--line);
}

.live-box {
  display: grid;
  grid-template-columns: minmax(15rem, .65fr) minmax(20rem, 1.35fr);
  gap: 2rem;
  align-items: center;
  border: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: clamp(1.4rem, 4vw, 2.2rem);
}

.live-number {
  margin: .1rem 0 .35rem;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--accent);
}

.live-number span:last-child {
  font-size: 1rem;
  margin-left: .3rem;
  letter-spacing: 0;
  color: var(--paper);
}

.live-progress-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .6rem;
  font-size: .93rem;
}

.rescue-meter {
  height: 2.4rem;
  border: 2px solid var(--paper);
  background: #333;
}

.rescue-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width .8s ease;
}

.live-updated {
  margin-top: .6rem;
  font-size: .78rem;
  opacity: .72;
}

.route-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.route-option {
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 1.35rem;
}

.route-option-primary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(18rem, 1.25fr);
  column-gap: clamp(2rem, 7vw, 6rem);
  background: var(--accent);
  border-width: 3px;
}

.route-option-primary .route-number,
.route-option-primary h3,
.route-option-primary .route-caveat {
  grid-column: 1;
}

.route-option-primary > p:not(.route-number, .route-caveat),
.route-option-primary ul {
  grid-column: 2;
}

.route-option-primary > p:not(.route-number, .route-caveat) {
  grid-row: 1 / span 2;
  align-self: end;
}

.route-option-primary ul {
  grid-row: 3 / span 2;
}

.route-number {
  display: inline-block;
  width: max-content;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: .22rem .55rem;
  margin-bottom: .85rem;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.route-option h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  text-transform: uppercase;
}

.route-option ul {
  margin: .7rem 0 0 1.2rem;
}

.route-option li + li {
  margin-top: .45rem;
}

.route-caveat {
  border-top: 2px solid var(--ink);
  padding-top: .9rem;
  font-size: .92rem;
}

.purchase-work {
  border: 0;
  margin: 0;
  background: transparent;
}

.purchase-work > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .2rem 2rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2rem) max(1.25rem, calc((100vw - 69.5rem) / 2));
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--accent);
}

.purchase-work > summary span,
.purchase-work > summary small {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.purchase-work > summary strong {
  font-size: clamp(1.4rem, 4vw, 2.25rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.purchase-work > summary small {
  max-width: 46rem;
  letter-spacing: 0;
  text-transform: none;
}

.purchase-work > summary::after {
  grid-column: 2;
  grid-row: 1 / span 3;
  font-size: 2.4rem;
}

.purchase-work .section p {
  padding: 0;
}

.purchase-section {
  background: var(--tint);
  border-bottom: 2px solid var(--ink);
}

.you-are-here {
  max-width: 50rem;
  background: var(--accent);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  padding: .9rem 1.1rem;
  margin: .2rem 0 2.2rem 5rem;
}

.rescue-roadmap {
  position: relative;
  max-width: 58rem;
  list-style: none;
}

.rescue-roadmap::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  bottom: 2.4rem;
  left: 2rem;
  width: 4px;
  background: var(--ink);
}

.roadmap-step {
  position: relative;
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.35rem;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  background: var(--paper);
  border: 3px solid var(--ink);
  font-size: 1.6rem;
  font-weight: 900;
}

.status-moving .step-number,
.status-part .step-number { background: var(--accent); }

.step-body {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 1.3rem 1.4rem 1.4rem;
}

.step-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .8rem;
  margin-bottom: .8rem;
  border-bottom: 2px solid var(--ink);
}

.step-heading h3 {
  margin: 0;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.status-pill,
.door-status {
  flex: none;
  border: 2px solid var(--ink);
  padding: .24rem .55rem;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--paper);
}

.status-moving .status-pill,
.status-part .status-pill,
.door-status { background: var(--accent); }

.status-blocked .status-pill { color: var(--urgent); border-color: var(--urgent); }

.step-now {
  border-left: 5px solid var(--accent);
  padding-left: .8rem;
}

.step-finish {
  padding-top: .75rem;
  border-top: 1px solid var(--line);
  font-size: .93rem;
}

.money-equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.15fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 2rem;
}

.money-piece {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 11rem;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--paper);
  padding: 1.2rem;
}

.money-piece > span {
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.money-piece strong {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  margin: .5rem 0;
}

.money-piece small { font-weight: 700; }
.money-piece-total { background: var(--accent); border-color: var(--accent); }

.equation-sign {
  align-self: center;
  font-size: 2.5rem;
  font-weight: 900;
}

.money-warning {
  max-width: 58rem;
  margin: 2rem 0;
  padding: 1rem 1.1rem;
  border: 2px solid var(--paper);
  font-size: 1.08rem;
}

.money-ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.4rem;
  border: 2px solid var(--paper);
}

.money-ladder article {
  padding: 1.25rem;
  border-left: 2px solid var(--paper);
}

.money-ladder article:first-child { border-left: 0; }
.money-ladder .is-key { background: var(--accent); color: var(--ink); }

.ladder-amount {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: .8rem;
}

.money-ladder h3 {
  text-transform: uppercase;
  font-size: .98rem;
}

.money-ladder p:last-child { font-size: .9rem; }

.debt-explainer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
  max-width: 58rem;
  margin-top: 2.5rem;
  border-top: 5px solid var(--accent);
  padding-top: 1.4rem;
}

.debt-big {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.public-funding-box {
  max-width: 58rem;
  margin-top: 2.5rem;
  border: 2px solid var(--paper);
  padding: 1.3rem 1.4rem;
}

.public-funding-box h3 {
  color: var(--accent);
  text-transform: uppercase;
}

.public-funding-box ul {
  margin: .8rem 0 1rem 1.2rem;
}

.public-funding-box li + li {
  margin-top: .75rem;
}

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

.doors-grid article {
  border: 2px solid var(--ink);
  padding: 1.2rem;
  background: var(--paper);
}

.doors-grid h3 {
  margin-top: .9rem;
  text-transform: uppercase;
}

.doors-grid p { font-size: .94rem; }

.doors-truth {
  max-width: 52rem;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-left: 7px solid var(--accent);
  font-size: 1.08rem;
}

.deadline-banner {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  max-width: 39rem;
  background: var(--urgent);
  color: white;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 1rem 1.2rem;
  margin: 1.8rem 0 2.5rem;
}

.deadline-days {
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: .9;
  min-width: 1.35em;
  text-align: center;
}

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

.next-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 1.3rem;
}

.next-time {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: .25rem .55rem;
  margin-bottom: .8rem;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.next-card h3 {
  text-transform: uppercase;
  font-size: 1.2rem;
}

.checklist li,
.saved-list li {
  position: relative;
  padding: .55rem 0 .55rem 1.8rem;
  border-top: 1px solid var(--line);
}

.checklist li::before,
.saved-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78rem;
  width: .9rem;
  height: .9rem;
  border: 2px solid currentColor;
}

.document-drawer {
  margin-top: 2.4rem;
  box-shadow: 6px 6px 0 var(--ink);
}

.document-drawer summary {
  background: var(--accent);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.4rem;
}

.document-grid h3 { text-transform: uppercase; }

.document-grid li {
  padding: .38rem 0;
  border-top: 1px solid var(--line);
  font-size: .91rem;
}

.saved-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.saved-list {
  border-top: 3px solid var(--accent);
}

.saved-list li {
  border-color: rgba(250, 249, 246, .25);
  font-size: 1.05rem;
}

.saved-list li::before { background: var(--accent); border-color: var(--accent); }

.help-band {
  background: var(--accent);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

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

.help-actions .btn:last-child { grid-column: 1 / -1; }

.share-status {
  grid-column: 1 / -1;
  border: 2px solid var(--ink);
  padding: .6rem .8rem;
  font-weight: 800;
}

.truth-note {
  padding: 1.3rem 0;
  border-bottom: 2px solid var(--ink);
  font-size: .86rem;
}

.truth-note .wrap {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.truth-note p:first-child { max-width: 50rem; }
.truth-note p:last-child { flex: none; margin-top: 0; text-align: right; opacity: .68; }

@media (max-width: 900px) {
  .rescue-hero-grid,
  .saved-grid,
  .help-grid { grid-template-columns: 1fr; }

  .snapshot-grid,
  .doors-grid,
  .next-grid { grid-template-columns: 1fr 1fr; }

  .route-options-grid { grid-template-columns: 1fr 1fr; }
  .route-option-primary { grid-column: 1 / -1; }

  .money-equation {
    grid-template-columns: 1fr;
  }

  .equation-sign {
    justify-self: center;
    line-height: .7;
  }

  .money-piece { min-height: auto; }
  .money-ladder { grid-template-columns: 1fr 1fr; }
  .money-ladder article:nth-child(3) { border-left: 0; border-top: 2px solid var(--paper); }
  .money-ladder article:nth-child(4) { border-top: 2px solid var(--paper); }
  .document-grid { grid-template-columns: 1fr; }
  .truth-note .wrap { display: block; }
  .truth-note p:last-child { margin-top: .8rem; text-align: left; }
}

@media (max-width: 680px) {
  .rescue-hero { padding-top: 3.2rem; }
  .rescue-hero h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .danger-card { box-shadow: 6px 6px 0 rgba(250, 249, 246, .2); }
  .snapshot-grid,
  .route-options-grid,
  .doors-grid,
  .next-grid,
  .live-box { grid-template-columns: 1fr; }

  .route-option-primary {
    display: block;
  }

  .purchase-work > summary {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 1.25rem;
  }

  .live-progress-label {
    display: block;
  }

  .live-progress-label span { display: block; margin-top: .25rem; }

  .you-are-here { margin-left: 0; }

  .rescue-roadmap::before { left: 1.35rem; }
  .roadmap-step { grid-template-columns: 2.8rem minmax(0, 1fr); gap: .8rem; }
  .step-number { width: 2.8rem; height: 2.8rem; font-size: 1.1rem; }
  .step-body { padding: 1rem; }
  .step-heading { display: block; }
  .status-pill { display: inline-block; margin-top: .55rem; }

  .money-ladder { grid-template-columns: 1fr; }
  .money-ladder article,
  .money-ladder article:nth-child(3) {
    border-left: 0;
    border-top: 2px solid var(--paper);
  }
  .money-ladder article:first-child { border-top: 0; }

  .debt-explainer { grid-template-columns: 1fr; }
  .help-actions { grid-template-columns: 1fr; }
  .help-actions .btn:last-child { grid-column: auto; }
}

@media print {
  .site-header,
  .sticky-cta,
  .help-band,
  .site-footer { display: none !important; }
  .rescue-hero,
  #money,
  #saved { color: var(--ink); background: var(--paper); }
  .rescue-hero { border-top: 5px solid var(--ink); }
  .danger-card,
  .live-box,
  .money-piece { color: var(--ink); background: var(--paper); border-color: var(--ink); box-shadow: none; }
  .section { padding: 2rem 0; }
  details { break-inside: avoid; }
}

/* ============================================================
   URGENT PUBLIC UPDATE — /urgent-update
   Kept in the same visual language as the full rescue plan.
   ============================================================ */

.urgent-card {
  border-color: var(--accent);
  box-shadow: 10px 10px 0 var(--accent);
}

.urgent-card h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: .9;
  text-transform: uppercase;
}

.urgent-list {
  margin: 1.2rem 0 1.2rem 1.25rem;
  font-weight: 800;
}

.urgent-list li + li { margin-top: .65rem; }
.urgent-small { border-top: 2px solid var(--ink); padding-top: .9rem; font-size: .9rem; }

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  margin-top: 2rem;
}

.review-main {
  background: var(--accent);
  padding: clamp(1.5rem, 4vw, 2.7rem);
}

.review-name,
.control-label {
  width: max-content;
  max-width: 100%;
  background: var(--ink);
  color: var(--paper);
  padding: .3rem .6rem;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.review-big {
  max-width: 47rem;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  line-height: 1.3;
  font-weight: 900;
}

.review-caveat {
  background: var(--paper);
  border-left: 3px solid var(--ink);
  padding: clamp(1.5rem, 4vw, 2.2rem);
}

.review-caveat > strong {
  display: block;
  font-size: 1.1rem;
  text-transform: uppercase;
}

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

.status-card {
  min-height: 15rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 1.3rem;
}

.status-card h3 {
  margin: 1rem 0 .5rem;
  font-size: 1.28rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.status-card .status-pill { display: inline-block; }

.status-card-urgent {
  background: var(--ink);
  color: var(--paper);
}

.status-card-urgent .status-pill {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.route-plain-lede {
  max-width: 60rem;
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
}

.rescue-route-flow {
  max-width: 65rem;
  margin: 2.3rem auto 0;
}

.rescue-route-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 2rem);
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  padding: clamp(1.3rem, 4vw, 2.1rem);
}

.rescue-route-card-accent { background: var(--accent); }

.rescue-route-number {
  display: grid;
  place-items: center;
  width: clamp(3.2rem, 7vw, 4.8rem);
  height: clamp(3.2rem, 7vw, 4.8rem);
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
}

.rescue-route-label,
.rescue-missing-label {
  margin: 0 0 .35rem;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rescue-route-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.rescue-route-card a {
  font-weight: 900;
}

.rescue-route-proof {
  border-left: 5px solid var(--ink);
  padding-left: .8rem;
  font-weight: 750;
}

.rescue-route-arrow {
  margin: .55rem 0 .35rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.rescue-missing-decision {
  max-width: 65rem;
  margin: 2.5rem auto 0;
  background: var(--ink);
  color: var(--paper);
  border-top: 8px solid var(--accent);
  padding: clamp(1.5rem, 5vw, 3rem);
}

.rescue-missing-decision h3 {
  max-width: 52rem;
  margin: .25rem 0 1rem;
  color: var(--accent);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .95;
  text-transform: uppercase;
}

.pledge-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.pledge-action span {
  max-width: 32rem;
  font-size: .88rem;
}

.evidence-grid,
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 2px solid currentColor;
  margin-top: 2rem;
}

.evidence-grid article,
.facts-grid p {
  padding: 1.35rem;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
}

.evidence-grid article:nth-child(odd),
.facts-grid p:nth-child(odd) { border-left: 0; }

.evidence-grid article:nth-child(-n+2),
.facts-grid p:nth-child(-n+2) { border-top: 0; }

.evidence-grid strong {
  color: var(--accent);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin-top: 2rem;
}

.control-card {
  border: 3px solid var(--ink);
  padding: clamp(1.35rem, 4vw, 2.2rem);
}

.control-community {
  background: var(--accent);
  box-shadow: 8px 8px 0 var(--ink);
}

.control-card h3 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.control-card ul { margin: 1rem 0 0 1.2rem; }
.control-card li + li { margin-top: .65rem; }
.control-note { max-width: 55rem; margin-top: 1.5rem; font-weight: 800; }

.right-to-buy-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.2rem;
  font-weight: 800;
}

.meeting-section {
  background: var(--ink);
  color: var(--paper);
  border-top: 6px solid var(--accent);
}

.meeting-section h2 {
  max-width: 56rem;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  line-height: .9;
  text-transform: uppercase;
}

.meeting-lede {
  max-width: 58rem;
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
}

.meeting-asks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin: 2.3rem 0;
}

.meeting-asks article {
  border: 2px solid var(--paper);
  padding: 1.3rem;
}

.meeting-asks span {
  display: block;
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 900;
}

.meeting-asks h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.rule-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  align-items: center;
  background: var(--accent);
  color: var(--ink);
  padding: clamp(1.3rem, 4vw, 2rem);
}

.rule-number {
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.rule-box h3 { text-transform: uppercase; }
.rule-box a { color: inherit; font-weight: 900; }

.meeting-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  margin-top: 1.4rem;
}

.meeting-actions .share-status {
  flex-basis: 100%;
  border-color: var(--paper);
}

.facts-grid {
  border-color: var(--ink);
}

.facts-grid p { margin: 0; }
.facts-grid strong { display: block; margin-bottom: .35rem; text-transform: uppercase; }

.sticky-rescue {
  position: sticky;
  z-index: 30;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: var(--ink);
  color: var(--paper);
  border-top: 3px solid var(--accent);
  padding: .75rem 1rem;
}

@media (max-width: 900px) {
  .review-grid,
  .right-to-buy-grid { grid-template-columns: 1fr; }

  .review-caveat {
    border-left: 0;
    border-top: 3px solid var(--ink);
  }

  .status-grid,
  .meeting-asks { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .status-grid,
  .evidence-grid,
  .facts-grid,
  .control-grid,
  .meeting-asks { grid-template-columns: 1fr; }

  .evidence-grid article,
  .facts-grid p {
    border-left: 0;
    border-top: 2px solid currentColor;
  }

  .evidence-grid article:first-child,
  .facts-grid p:first-child { border-top: 0; }

  .status-card { min-height: 0; }
  .rescue-route-card { grid-template-columns: 1fr; }
  .pledge-action { display: block; }
  .pledge-action span { display: block; margin-top: .8rem; }
  .rule-box { grid-template-columns: 1fr; }
  .meeting-actions .btn { width: 100%; }
  .sticky-rescue span { display: none; }
  .sticky-rescue .btn { width: 100%; }
}

@media print {
  .sticky-rescue { display: none !important; }
  .meeting-section { color: var(--ink); background: var(--paper); }
}
