/* ═══ POSTER COMPONENTS ═══ */

.paper-block {
  background: var(--cream);
  border: var(--border-heavy);
  box-shadow: var(--shadow-poster-lg);
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.torn-paper { /* retired — clean edges for readability */ }

/* Stamps */
.stamp {
  display: inline-block;
  border: 4px solid var(--black);
  padding: 0.35em 0.75em;
  font-family: var(--font-condensed);
  font-size: clamp(0.8rem, 2vw, 1.05rem);
  text-transform: uppercase;
  box-shadow: var(--shadow-poster);
  line-height: 1.15;
}

.stamp--large {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  padding: 0.45em 0.9em;
}

.stamp-red { background: var(--red); color: var(--cream); }
.stamp-yellow { background: var(--yellow); color: var(--black); }
.stamp-black { background: var(--black); color: var(--cream); border-color: var(--cream); }
.stamp-cream { background: var(--cream); color: var(--black); }

.stamp-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85em 1.4em;
  border: var(--border-thick);
  cursor: pointer;
  box-shadow: var(--shadow-poster);
  transition: transform 0.1s, box-shadow 0.1s;
  letter-spacing: 0.02em;
}

.btn:active { transform: translate(4px, 4px); box-shadow: 4px 4px 0 var(--black); }

.btn--black { background: var(--black); color: var(--cream); }
.btn--yellow { background: var(--yellow); color: var(--black); }
.btn--cream { background: var(--cream); color: var(--black); }
.btn--red { background: var(--red); color: var(--cream); border-color: var(--black); }
.btn--small { font-size: 0.8125rem; padding: 0.5em 0.9em; box-shadow: 4px 4px 0 var(--black); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

/* Source links (footnote numbers) */
.source-link,
.source-pill,
.receipt-pill {
  display: inline;
  font-family: var(--font-mono);
  font-size: 0.72em;
  font-weight: 700;
  font-style: normal;
  color: var(--red);
  background: none;
  border: none;
  padding: 0 0.1em;
  cursor: pointer;
  vertical-align: super;
  line-height: 0;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1.5px;
}

.poster-section--black .source-link,
.poster-section--black .source-pill,
.poster-section--black .receipt-pill,
.poster-section--red .source-link,
.poster-section--red .source-pill,
.poster-section--red .receipt-pill {
  color: var(--yellow);
}

.source-link:hover,
.source-pill:hover,
.receipt-pill:hover {
  color: var(--black);
  background: var(--yellow);
  text-decoration: none;
  border-radius: 2px;
}

.poster-section--black .source-link:hover,
.poster-section--black .receipt-pill:hover,
.poster-section--red .source-link:hover,
.poster-section--red .receipt-pill:hover {
  color: var(--black);
}

/* Hero */
.poster-hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
  border-bottom: var(--border-heavy);
}

.poster-hero__layout {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  width: 100%;
}

.poster-hero__rest {
  text-align: left;
  max-width: 40rem;
}

@media (min-width: 900px) {
  .poster-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 38%);
    grid-template-areas:
      "kicker visual"
      "headline visual"
      "rest visual";
    row-gap: clamp(0.5rem, 1vw, 0.85rem);
    column-gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
  }

  .poster-hero__kicker { grid-area: kicker; }
  .poster-hero__headline-wrap {
    grid-area: headline;
    max-width: none;
    margin: 0.35rem 0 0;
  }
  .poster-hero__visual {
    grid-area: visual;
    justify-self: end;
    width: 100%;
    max-width: 22rem;
    align-self: center;
  }
  .poster-hero__rest {
    grid-area: rest;
    max-width: none;
  }

  .poster-hero__sub {
    margin-top: 0;
  }
}

.poster-hero__visual {
  margin: 0;
  border: var(--border-heavy);
  box-shadow: var(--shadow-poster-lg);
  background: var(--black);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.poster-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.poster-hero__headline-wrap {
  position: relative;
  margin: 1rem 0 1.25rem;
  max-width: 52rem;
}

.poster-hero__kicker {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  color: var(--yellow);
}

.poster-hero__case-file {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  margin-top: 1.5rem;
  color: var(--cream);
  opacity: 0.9;
}

.poster-hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: 40rem;
  line-height: 1.55;
  margin-top: 0.5rem;
  color: var(--cream);
  font-weight: 500;
}

.poster-hero__disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  opacity: 0.95;
}

/* Case for Claire */
.case-for-claire__kicker,
.persuasion-block__kicker,
.money-opener__kicker,
.compare-short-version__kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin: 0 0 0.5rem;
}

.poster-section--black .persuasion-block__kicker,
.money-page .money-opener__kicker {
  color: var(--yellow);
}

.case-blocks {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 700px) {
  .case-blocks {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-block:last-child {
    grid-column: 1 / -1;
  }
}

.case-block {
  border: var(--border-heavy);
  box-shadow: var(--shadow-poster-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  position: relative;
  min-height: 8rem;
}

.case-block--red { background: var(--red); color: var(--cream); }
.case-block--black { background: var(--black); color: var(--cream); }
.case-block--yellow { background: var(--yellow); color: var(--black); }
.case-block--white { background: #fff; color: var(--black); }

.case-block--white .case-block__num {
  color: var(--red);
  opacity: 0.35;
}

.case-block__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 0.85;
  opacity: 0.35;
  display: block;
  margin-bottom: 0.35rem;
}

.case-block--yellow .case-block__num { opacity: 0.25; }

.case-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 0.65rem;
}

.case-block__body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.case-block--red .receipt-pill,
.case-block--black .receipt-pill {
  color: var(--yellow);
}

.case-block__cta {
  margin-top: 1rem;
}

/* Persuasion blocks */
.others-right__list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
}

.others-right__list li {
  margin-bottom: 0.75rem;
}

.others-right__close {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.5;
  padding: 1rem 1.25rem;
  border: var(--border-thick);
  background: var(--yellow);
  box-shadow: var(--shadow-poster);
}

.reynoso-question__lead,
.reynoso-question__body {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  max-width: 44rem;
  color: var(--cream);
}

.reynoso-question__lead {
  font-weight: 600;
  margin-bottom: 1rem;
}

.reynoso-question__answer {
  margin: 1.75rem 0 0;
}

/* Left-choice stamp */
.left-choice-stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 1rem 1.35rem;
  margin-bottom: 1.5rem;
  background: var(--yellow);
  color: var(--black);
  border: var(--border-heavy);
  box-shadow: var(--shadow-poster-lg);
}

.left-choice-stamp__name {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.left-choice-stamp__score {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.left-choice-stamp__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 14rem;
  line-height: 1.35;
}

/* Compare short version */
.compare-short-version {
  margin-bottom: 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--yellow);
  border: var(--border-heavy);
  box-shadow: var(--shadow-poster-lg);
}

.compare-short-version__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 3rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 1.25rem;
}

.compare-short-version__lanes {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
}

.compare-short-version__lanes li {
  margin-bottom: 0.5rem;
}

.compare-short-version__verdict {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.compare-short-version__evidence {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

/* Money opener */
.money-opener {
  margin-bottom: 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--black);
  color: var(--cream);
  border: var(--border-heavy);
  box-shadow: var(--shadow-poster-lg);
}

.money-opener__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 1rem;
}

.money-opener__body {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  max-width: 44rem;
}

.money-opener .receipt-pill {
  color: var(--yellow);
}

.money-grassroots {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 3px solid rgba(255, 242, 214, 0.25);
}

.money-grassroots__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 0.75rem;
}

.money-grassroots__body {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
  color: var(--cream);
  margin: 0 0 0.85rem;
  max-width: 44rem;
}

.money-grassroots__body strong {
  color: var(--yellow);
}

/* FAQ */
.faq-section__kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin: 0 0 0.5rem;
}

.faq-section__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
  max-width: 44rem;
  margin: 0 0 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.faq-item {
  border: var(--border-heavy);
  background: var(--cream);
  box-shadow: var(--shadow-poster);
}

.faq-item__q {
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-item__q::after {
  content: "+";
  float: right;
  font-family: var(--font-mono);
}

.faq-item[open] .faq-item__q::after {
  content: "−";
}

.faq-item__a {
  padding: 0 1.1rem 1.1rem;
  font-size: 0.98rem;
  line-height: 1.6;
  border-top: 2px solid var(--black);
}

.faq-item__a a {
  color: var(--red);
  font-weight: 600;
}

.compare-short-version__seo {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
  max-width: 44rem;
  margin: 0 0 1.25rem;
}

/* Three receipts — proof wall */
.proof-section {
  border-top: var(--border-heavy);
  border-bottom: var(--border-heavy);
}

.proof-section__kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.proof-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 0.75rem;
}

.proof-section__lead {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.5;
  max-width: 36rem;
  color: var(--cream);
  font-weight: 600;
  margin: 0 0 2rem;
}

.proof-cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .proof-cards {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .proof-card--1 {
    transform: scale(1.03);
    z-index: 2;
  }
}

.proof-card {
  background: var(--yellow);
  border: var(--border-heavy);
  border-color: var(--black);
  box-shadow: var(--shadow-poster-lg);
  padding: clamp(1.35rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.proof-card--1,
.proof-card--2,
.proof-card--3 {
  background: var(--yellow);
}

.proof-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.proof-card__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5.5rem);
  line-height: 0.85;
  color: var(--black);
  letter-spacing: -0.03em;
}

.proof-card__stamp {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.55rem;
  border: 3px solid var(--black);
  background: var(--black);
  color: var(--yellow);
  flex-shrink: 0;
}

.proof-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.proof-card__body {
  font-size: 1.0625rem;
  line-height: 1.55;
  flex: 1;
  font-weight: 500;
}

.proof-card__sources {
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 3px solid var(--black);
}

.proof-section .source-link,
.proof-section .receipt-pill {
  color: var(--red);
  font-size: 0.9em;
}

/* Verdict */
.verdict-block {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: var(--border-heavy);
  box-shadow: var(--shadow-poster-lg);
  background: var(--paper);
}

.verdict-block__stamp {
  margin-bottom: 1rem;
}

.verdict-block__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--red);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.verdict-block__editorial {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  max-width: 48rem;
  margin-bottom: 1rem;
}

.verdict-block__body {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 44rem;
  line-height: 1.55;
  font-weight: 500;
}

.verdict-block__sources {
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

/* Candidate dossier lineup */
.dossier-lineup {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .dossier-lineup {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.candidate-file {
  background: var(--cream);
  border: var(--border-heavy);
  box-shadow: var(--shadow-poster);
  position: relative;
  display: flex;
  flex-direction: column;
}

.candidate-file--featured {
  border-color: var(--red);
  box-shadow: var(--shadow-poster-lg), 0 0 0 4px var(--yellow);
  z-index: 2;
}

@media (min-width: 900px) {
  .candidate-file--featured {
    grid-row: span 1;
    min-height: 100%;
  }

  .candidate-file--featured .candidate-file__photo {
    aspect-ratio: 3/4;
  }
}

.candidate-file__tape {
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: var(--font-condensed);
  font-size: 0.8125rem;
  padding: 0.35rem 0.85rem;
  background: var(--yellow);
  border: 3px solid var(--black);
  z-index: 3;
  text-transform: uppercase;
}

.candidate-file__tape--reviewed {
  background: var(--paper);
}

.candidate-file__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: var(--border-thick);
}

.candidate-file--featured .candidate-file__photo { filter: none; }

.candidate-file__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.candidate-file--featured .candidate-file__photo img {
  object-position: center 20%;
}

.candidate-file:not(.candidate-file--featured) .candidate-file__photo img {
  object-position: center calc(50% + 40px);
}

.candidate-file__body {
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.candidate-file__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2.25rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.candidate-file--featured .candidate-file__name {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.candidate-file__role {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  margin: 0.5rem 0;
  text-transform: uppercase;
  color: var(--ink);
}

.candidate-file__lane {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  line-height: 1.4;
  color: var(--black);
}

.candidate-file__money {
  font-family: var(--font-condensed);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--red);
  margin-bottom: 0.75rem;
}

.candidate-file__bullets {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  font-size: 1rem;
  line-height: 1.5;
  flex: 1;
}

.candidate-file__open {
  font-family: var(--font-condensed);
  font-size: 0.9375rem;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 3px solid var(--red);
  color: var(--black);
  align-self: flex-start;
}

/* Issue arena (interactive left-choice test) */
.issue-arena {
  margin-top: 1.5rem;
  border: 3px solid rgba(255, 242, 214, 0.35);
  background: rgba(0, 0, 0, 0.25);
}

.issue-arena__tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(255, 242, 214, 0.2);
  background: var(--black);
}

@media (min-width: 768px) {
  .issue-arena__tabs {
    flex-wrap: nowrap;
  }
}

.issue-arena__tab {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-condensed);
  font-size: 0.9375rem;
  text-transform: uppercase;
  padding: 0.85rem 1.15rem;
  border: none;
  border-right: 2px solid rgba(255, 242, 214, 0.12);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.15s ease, color 0.15s ease;
}

.issue-arena__tab:hover {
  background: rgba(227, 6, 19, 0.35);
}

.issue-arena__tab.is-active {
  background: var(--red);
  color: var(--cream);
  border-bottom: 3px solid var(--yellow);
  box-shadow: none;
}

.issue-arena__panels {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.issue-arena__panel {
  display: none;
}

.issue-arena__panel.is-active {
  display: block;
  animation: issue-panel-in 0.25s ease;
}

@keyframes issue-panel-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .issue-arena__panel.is-active { animation: none; }
}

.issue-arena__round {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.issue-arena__question {
  font-family: var(--font-condensed);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.issue-arena__race {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.issue-bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.issue-bar-row__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.issue-bar-row__name {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--cream);
  min-width: 5.5rem;
}

.issue-bar-row--claire .issue-bar-row__name {
  color: var(--yellow);
  font-size: 1.15rem;
}

.issue-bar-row__track {
  height: clamp(1.75rem, 4vw, 2.75rem);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 242, 214, 0.45);
  overflow: hidden;
}

.issue-bar-row__fill {
  height: 100%;
  width: 0;
  background: var(--red);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.issue-bar-row__fill.is-visible { width: var(--pct); }

.issue-bar-row--claire.issue-bar-row--yes .issue-bar-row__fill {
  background: var(--yellow);
}

.issue-bar-row--yes:not(.issue-bar-row--claire) .issue-bar-row__fill {
  background: rgba(255, 212, 0, 0.75);
}

.issue-bar-row__note {
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 242, 214, 0.85);
  margin: 0.15rem 0 0;
  max-width: 40rem;
}

/* Legacy issue cards */
.issue-card-stack { display: none; }

.grade-stamp {
  font-family: var(--font-condensed);
  font-size: 0.8125rem;
  padding: 0.4rem 0.65rem;
  border: 3px solid var(--black);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  text-transform: uppercase;
}

.grade-stamp--yes { background: var(--yellow); color: var(--black); }
.grade-stamp--partial { background: var(--cream); color: var(--black); }
.grade-stamp--no { background: var(--paper); color: var(--black); }
.grade-stamp--unknown {
  background: rgba(255, 242, 214, 0.2);
  color: var(--cream);
  border: 2px solid rgba(255, 242, 214, 0.5);
  font-size: 0.75rem;
}

.grade-stamp--claire-yes {
  background: var(--red);
  color: var(--cream);
  font-size: 0.9375rem;
  border-width: 4px;
  box-shadow: 4px 4px 0 var(--black);
}

.issue-card__sources-btn { margin-top: 1rem; }

/* Legacy score tile grid — unused */
.score-tile-grid { display: none; }

/* Money section */
.money-editorial {
  font-family: var(--font-condensed);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--yellow);
  margin: 1rem 0 0.75rem;
  max-width: 36rem;
}

.money-comparison {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.5;
  max-width: 40rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.money-ratios {
  font-size: 0.8125rem;
  color: rgba(255, 242, 214, 0.85);
  margin-bottom: 1.5rem;
}

.money-leaderboard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.money-leader {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.money-leader__rank {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--yellow);
  line-height: 1;
  min-width: 2ch;
}

.money-leader__name {
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  text-transform: uppercase;
}

.money-leader__sub {
  margin: 0.2rem 0 0;
  font-size: 0.6875rem;
  text-transform: uppercase;
  opacity: 0.75;
  color: var(--cream);
}

.big-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 7rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--yellow);
  text-shadow: 0.04em 0.04em 0 var(--black);
}

.money-leader--first .big-number { color: var(--red); background: var(--yellow); display: inline-block; padding: 0 0.15em; }

.money-bar-race { margin: 2rem 0; }

.money-bar {
  margin-bottom: 1rem;
}

.money-bar__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  display: flex;
  justify-content: space-between;
  color: var(--cream);
}

.money-bar__track {
  height: clamp(2rem, 5vw, 3.25rem);
  background: rgba(255,255,255,0.08);
  border: 4px solid var(--yellow);
  position: relative;
  overflow: hidden;
}

.money-bar--lead .money-bar__fill {
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0,
    var(--yellow) 14px,
    var(--red) 14px,
    var(--red) 16px
  );
}

.money-bar__fill {
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0,
    var(--red) 14px,
    rgba(255,212,0,0.5) 14px,
    rgba(255,212,0,0.5) 16px
  );
  width: 0;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.money-bar__fill.is-visible { width: var(--pct); }

.money-composition {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}

.comp-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border: 3px solid var(--black);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

.comp-strip:nth-child(even) { background: var(--paper); }

.comp-strip__bar {
  height: 1rem;
  background: var(--red);
  flex-shrink: 0;
}

/* Endorsement split */
.endorse-split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .endorse-split { grid-template-columns: 1fr 1fr; }
}

.endorse-panel {
  border: var(--border-heavy);
  padding: 1.5rem;
  box-shadow: var(--shadow-poster);
}

.endorse-panel--claire {
  background: var(--red);
  color: var(--cream);
}

.endorse-panel--reynoso {
  background: var(--paper);
  color: var(--black);
}

.endorse-panel h3 {
  font-family: var(--font-condensed);
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.endorse-panel__sub {
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.endorse-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.endorse-note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--ink);
}

/* The difference */
.difference-body {
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.4;
  max-width: 48rem;
  margin: 1rem 0 1.5rem;
  color: var(--cream);
  font-weight: 500;
}

.difference-body strong {
  color: var(--yellow);
}

.difference-close {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.5;
  max-width: 44rem;
  color: var(--cream);
  font-weight: 600;
  border-left: 6px solid var(--yellow);
  padding-left: 1.25rem;
}

/* Timeline evidence wall */
.timeline-evidence-wall {
  position: relative;
}

.timeline-evidence-wall__title,
.poster-section--yellow .section-headline {
  color: var(--black);
  text-shadow: none;
}

.timeline-evidence-wall__lead,
.poster-section--yellow .section-lead {
  color: var(--black);
}

.timeline-zone,
.timeline-page .inner-content {
  background: var(--yellow);
}

body.timeline-page {
  background: var(--black);
}

.page-poster-header--timeline {
  background: var(--black);
}

.page-poster-header--timeline p {
  color: var(--cream);
  opacity: 0.9;
}

.timeline-wall {
  position: relative;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  border-left: 6px solid var(--black);
  max-width: 52rem;
}

.timeline-wall--full {
  max-width: 56rem;
  margin: 0 auto;
}

.timeline-doc {
  position: relative;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
  padding-left: 0.75rem;
}

.timeline-doc__pin {
  position: absolute;
  left: calc(-1 * clamp(1.25rem, 3vw, 2rem) - 10px);
  top: 1.75rem;
  width: 18px;
  height: 18px;
  background: var(--red);
  border: 4px solid var(--black);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--black);
}

.timeline-doc__folder {
  border: var(--border-heavy);
  box-shadow: var(--shadow-poster-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  position: relative;
  min-height: 7rem;
}

.timeline-doc__folder::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 1.25rem;
  width: clamp(4rem, 12vw, 6rem);
  height: 14px;
  background: var(--yellow);
  border: 4px solid var(--black);
}

.timeline-doc__folder--black {
  background: var(--black);
  color: var(--cream);
}

.timeline-doc__folder--black::before {
  background: var(--red);
}

.timeline-doc__folder--red {
  background: var(--red);
  color: var(--cream);
}

.timeline-doc__folder--red::before {
  background: var(--black);
}

.timeline-doc__type {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  margin-right: 0.5rem;
}

.timeline-doc__folder--black .timeline-doc__type,
.timeline-doc__folder--red .timeline-doc__type {
  background: var(--cream);
  color: var(--black);
}

.timeline-doc__cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.timeline-doc__date {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  margin: 0.75rem 0 0.35rem;
  color: var(--yellow);
}

.timeline-doc__folder--black .timeline-doc__date,
.timeline-doc__folder--red .timeline-doc__date {
  color: var(--yellow);
}

.timeline-doc__label {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  text-transform: uppercase;
  margin: 0.35rem 0 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.timeline-doc__label button {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 0.15em;
  color: inherit;
}

.timeline-doc__sources {
  font-size: 0.875rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 3px solid rgba(255, 242, 214, 0.25);
}

.timeline-doc__folder--black .receipt-pill,
.timeline-doc__folder--red .receipt-pill {
  color: var(--yellow);
}

.timeline-doc__folder--black .receipt-pill:hover,
.timeline-doc__folder--red .receipt-pill:hover {
  color: var(--black);
  background: var(--yellow);
}

/* Legacy timeline pins */
.timeline-pin { display: none; }

/* Receipt cards */
.receipt-card {
  background: var(--cream);
  border: var(--border-heavy);
  box-shadow: var(--shadow-poster);
  padding: clamp(1.25rem, 3vw, 1.5rem);
  position: relative;
  break-inside: avoid;
}

.receipt-card h3 {
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.receipt-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  align-items: center;
}

.receipt-card__why {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: var(--yellow);
  border: 2px solid var(--black);
}

.receipt-card__excerpt {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  color: var(--ink);
}

.receipt-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.receipt-card__open {
  font-family: var(--font-condensed);
  display: inline-block;
  background: var(--black);
  color: var(--cream);
  padding: 0.5rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  border: 3px solid var(--black);
}

.source-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border: 2px solid var(--black);
  font-weight: 700;
}

.source-badge--official { background: var(--blue); color: white; border-color: var(--black); }
.source-badge--campaign { background: var(--red); color: var(--cream); }
.source-badge--interview { background: var(--yellow); }
.source-badge--reporting { background: var(--paper); }

.issue-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  padding: 0.15rem 0.4rem;
  background: var(--black);
  color: var(--cream);
}

.receipts-masonry {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .receipts-masonry { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .receipts-masonry { grid-template-columns: repeat(3, 1fr); }
}

.receipts-archive-cta {
  display: inline-block;
  margin-top: 2.75rem;
}

/* Methodology weights */
.weight-blocks {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

@media (min-width: 600px) {
  .weight-blocks { grid-template-columns: repeat(2, 1fr); }
}

.weight-block {
  border: var(--border-thick);
  padding: 1rem 1.25rem;
  background: var(--black);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.weight-block:nth-child(odd) { background: var(--red); }

.weight-block__pct {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1;
  color: var(--yellow);
}

.weight-block__label {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  text-transform: uppercase;
  max-width: 12rem;
  text-align: right;
}

/* Final CTA */
.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 6rem);
  line-height: 0.9;
  color: var(--cream);
  text-shadow: 0.04em 0.04em 0 var(--black);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.final-cta__headline span {
  display: block;
}

.final-cta__body {
  color: var(--cream);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  max-width: 42rem;
  line-height: 1.55;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Caveat */
.caveat-box {
  border: var(--border-thick);
  border-style: dashed;
  padding: 1.25rem;
  background: rgba(255,212,0,0.25);
  margin: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

.caveat-box--on-dark {
  background: rgba(255, 212, 0, 0.12);
  border-color: var(--yellow);
  color: var(--cream);
}

.caveat-box--on-dark .caveat-box__title {
  color: var(--yellow);
}

.caveat-box__title {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Compare / inner pages */
.page-poster-header {
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3.5rem) 2rem;
  background: var(--red);
  border-bottom: var(--border-heavy);
  max-width: 100%;
}

.page-poster-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 7rem);
  line-height: 0.85;
  color: var(--cream);
  text-shadow: 0.04em 0.04em 0 var(--black);
  text-transform: uppercase;
}

.page-poster-header p {
  color: var(--cream);
  max-width: 36rem;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.inner-content {
  padding: 2rem clamp(1.25rem, 5vw, 3.5rem) 4rem;
  background: var(--cream);
  min-height: 50vh;
  max-width: var(--content-wide);
  margin: 0 auto;
}

.table-scroll {
  overflow-x: auto;
  border: var(--border-heavy);
  box-shadow: var(--shadow-poster);
  background: var(--paper);
  margin: 1.5rem 0;
}

.table-scroll table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table-scroll th, .table-scroll td {
  padding: 0.85rem 1rem;
  border-bottom: 2px solid var(--black);
  text-align: left;
  vertical-align: top;
}

.table-scroll th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  background: var(--black);
  color: var(--cream);
}

.table-scroll .sticky-col {
  position: sticky;
  left: 0;
  background: var(--cream);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  text-transform: uppercase;
  z-index: 1;
  box-shadow: 4px 0 0 rgba(0,0,0,0.08);
  color: var(--red);
}

.table-scroll th.sticky-col-header {
  color: var(--red);
  background: var(--black);
}

.filter-chip {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 3px solid var(--black);
  background: var(--paper);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--black);
}

.filter-chip.is-active {
  background: var(--red);
  color: var(--cream);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--paper);
  border: var(--border-thick);
}

.filter-bar label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.filter-bar input, .filter-bar select {
  font-family: var(--font-body);
  border: 3px solid var(--black);
  padding: 0.4rem 0.6rem;
  background: var(--cream);
}

.file-tabs-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 1.5rem;
  border: var(--border-thick);
}

.file-tab-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  padding: 0.6rem 0.75rem;
  border: none;
  border-right: 2px solid var(--black);
  background: var(--paper);
  cursor: pointer;
}

.file-tab-btn:last-child { border-right: none; }
.file-tab-btn.is-active { background: var(--red); color: var(--cream); }

.receipt-popover {
  position: fixed;
  z-index: 300;
  width: min(24rem, 92vw);
  padding: 1.25rem 1.35rem;
  background: var(--cream);
  border: var(--border-heavy);
  box-shadow: var(--shadow-poster-lg);
  font-size: 0.9375rem;
  line-height: 1.5;
  max-height: min(70vh, 22rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.receipt-popover.is-below::after,
.receipt-popover.is-above::after {
  content: "";
  position: absolute;
  left: var(--arrow-left, 1.5rem);
  width: 0;
  height: 0;
  border: 10px solid transparent;
}

.receipt-popover.is-below::after {
  top: -20px;
  border-bottom-color: var(--black);
}

.receipt-popover.is-above::after {
  bottom: -20px;
  border-top-color: var(--black);
}

.receipt-popover__meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.receipt-popover__title {
  font-family: var(--font-condensed);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.receipt-popover__excerpt {
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.receipt-popover__link {
  font-family: var(--font-condensed);
  display: inline-block;
  background: var(--red);
  color: var(--cream);
  padding: 0.45rem 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8125rem;
  border: 3px solid var(--black);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.75);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.drawer-overlay.is-open { opacity: 1; visibility: visible; }

.receipt-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(100%, 28rem);
  height: 100%;
  background: var(--cream);
  border-left: var(--border-heavy);
  box-shadow: -8px 0 0 var(--black);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.receipt-drawer.is-open { transform: translateX(0); }

.expand-panel {
  border: 3px solid var(--black);
  margin-top: 1.25rem;
  background: var(--paper);
}

.expand-panel summary {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  cursor: pointer;
  list-style: none;
}

.expand-panel__body { padding: 0 1rem 1rem; font-size: 0.95rem; }

.chart-wrap {
  border: var(--border-heavy);
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--cream);
  box-shadow: var(--shadow-poster);
  margin: 1.5rem 0;
}

.chart-wrap canvas {
  max-height: 22rem;
}

.money-charts-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .money-charts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.money-charts-grid .chart-wrap {
  margin: 0;
}

.chart-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  text-transform: uppercase;
  margin: 2.5rem 0 0.75rem;
  letter-spacing: 0.02em;
  color: var(--black);
}

.money-page .inner-content,
.money-page .chart-section-title,
.money-page .caveat-box,
.money-page .caveat-box p,
.money-page .map-legend {
  color: var(--black);
}

.money-page .table-scroll th {
  color: var(--cream);
}

.money-page .table-scroll td {
  color: var(--black);
  font-weight: 500;
}

#district-map {
  border: var(--border-heavy);
  height: 20rem;
}

.copy-link-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  border: 2px solid var(--black);
  background: var(--yellow);
  padding: 0.2rem 0.4rem;
  cursor: pointer;
  margin-left: 0.5rem;
}

.issue-badge {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  padding: 0.15rem 0.45rem;
  border: 3px solid var(--black);
  background: var(--yellow);
}

.issue-badge--NR { background: var(--paper); font-style: italic; }
