:root {
  color-scheme: light;
  --blue: #0f2a5d;
  --blue-deep: #071c45;
  --blue-soft: #e3e8f3;
  --gold: #645a3a;
  --yellow: #fadc82;
  --red: #d30000;
  --red-dark: #a80c0c;
  --ink: #111111;
  --muted: #606060;
  --paper: #f3f3f8;
  --white: #ffffff;
  --line: rgba(17, 24, 39, 0.16);
  --shadow: 0 24px 60px rgba(19, 38, 83, 0.18);
}

@font-face {
  font-family: "Rethink Sans";
  src: url("assets/RethinkSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rethink Sans";
  src: url("assets/RethinkSans-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 800;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Rethink Sans", Inter, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--paper);
}

img {
  max-width: 100%;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 12px clamp(16px, 4vw, 44px);
  color: var(--white);
  background: var(--gold);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  text-decoration: none;
}

.brand-badge {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold);
  background: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-links {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-links a,
.source-grid a,
.footer a {
  text-underline-offset: 4px;
}

.share-button,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.share-button {
  padding: 0 16px;
  color: var(--white);
  background: var(--red);
}

.button {
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
}

a.button,
a.button:visited {
  color: var(--white);
  text-decoration: none;
}

.button.secondary {
  color: var(--white);
  background: transparent;
}

.button.secondary.light {
  color: var(--yellow);
}

a.button.secondary.light,
a.button.secondary.light:visited {
  color: var(--yellow);
}

.button:hover,
.button:focus-visible,
.share-button:hover,
.share-button:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  overflow: hidden;
  display: grid;
  align-items: stretch;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(250, 220, 130, 0.12) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #16366f 0%, var(--blue) 48%, var(--blue-deep) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1230px, calc(100% - 32px));
  min-height: calc(100svh - 70px);
  margin: 0 auto;
  padding: clamp(56px, 10vw, 142px) 0 clamp(56px, 7vw, 98px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.referendum-tag {
  width: fit-content;
  margin: 0 0 20px;
  padding: 8px 14px;
  color: var(--blue);
  background: var(--yellow);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Rethink Sans", Inter, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 1120px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 8vw, 7rem);
  line-height: 0.86;
}

h1 span {
  display: block;
}

h1 span:first-child {
  color: var(--yellow);
}

.hero-lede {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.numbers-section,
.priorities-section,
.contrast-section,
.ads-section,
.sources-section,
.final-cta {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 86px) 0;
}

.section-head {
  max-width: 840px;
  margin-bottom: 30px;
}

.section-head.compact {
  max-width: 940px;
}

.eyebrow {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(2rem, 5vw, 4.35rem);
  line-height: 1.04;
}

.section-head p:last-child,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 700;
  line-height: 1.55;
}

.money-stack {
  display: grid;
  gap: 12px;
}

.money-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(180px, 0.56fr) minmax(180px, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 128px;
  padding: clamp(18px, 3vw, 26px);
  background: var(--white);
  border: 0;
  box-shadow: none;
}

.money-card.grassroots {
  background: #fff7dd;
}

.label {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.money-card strong {
  color: var(--blue);
  font-family: "Rethink Sans", Inter, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.92;
}

.bar {
  position: relative;
  height: 22px;
  overflow: hidden;
  background: var(--blue-soft);
  border: 2px solid var(--blue);
}

.bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: max(var(--w), 3px);
  background: linear-gradient(90deg, var(--yellow), var(--red));
}

.money-card p {
  grid-column: 3;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.stacked-chart {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.chart-side {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(86px, 140px);
  gap: clamp(18px, 4vw, 34px);
  min-height: 460px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
}

.chart-side.government-chart {
  color: var(--white);
  background: var(--blue);
}

.chart-side.av-chart {
  grid-template-columns: minmax(86px, 140px) minmax(0, 1fr);
  background: var(--white);
  border: 2px solid rgba(15, 42, 93, 0.14);
}

.chart-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: baseline;
}

.chart-heading strong {
  display: block;
  margin: 0;
  color: currentColor;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 800;
  line-height: 0.88;
}

.chart-copy p {
  max-width: 430px;
  margin: 0;
  color: currentColor;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 800;
  line-height: 1.35;
  opacity: 0.82;
}

.government-chart .label {
  color: var(--yellow);
}

.stack-bar {
  align-self: end;
  width: 100%;
  height: 360px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  background: rgba(15, 42, 93, 0.12);
  border: 2px solid currentColor;
}

.government-chart .stack-bar {
  background: rgba(255, 255, 255, 0.16);
}

.stack-segment {
  position: relative;
  min-height: 8px;
  flex: 0 0 var(--h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  color: var(--ink);
  overflow: visible;
}

.campaign-segment,
.contribution-segment {
  background: var(--yellow);
}

.av-chart .contribution-segment {
  color: var(--white);
  background: var(--blue);
}

.website-segment {
  color: var(--white);
  background: var(--red);
}

.contribution-segment {
  min-height: 18px;
}

.stack-segment span,
.stack-segment em {
  display: none;
  font-style: normal;
  font-weight: 900;
  line-height: 1.05;
}

.stack-segment span {
  font-size: clamp(0.86rem, 1.5vw, 1.1rem);
}

.stack-segment em {
  margin-top: 3px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scale-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.secondary-note {
  margin-top: 6px;
  font-size: 0.9rem;
}

.priorities-section {
  padding-top: 0;
}

.priority-band {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 44px);
  color: var(--white);
  background: var(--blue);
}

.priority-band p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  font-weight: 800;
  line-height: 1.45;
}

.priority-band .priority-list {
  color: var(--yellow);
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.priority-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.priority-note strong {
  color: var(--yellow);
}

.contrast-section {
  padding-top: 0;
}

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

.side {
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background: var(--blue-deep);
  box-shadow: var(--shadow);
}

.side.grassroots {
  color: var(--ink);
  background: var(--yellow);
}

.side span {
  display: block;
  margin-bottom: 18px;
  font-family: "Rethink Sans", Inter, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.side ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 800;
  line-height: 1.35;
}

.ads-section {
  border-top: 1px solid var(--line);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.quote-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--white);
  background: var(--blue);
  border: 0;
  box-shadow: none;
}

.quote-card.primary-quote {
  color: var(--ink);
  background: var(--yellow);
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
}

.quote-card figcaption {
  margin-top: 26px;
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  opacity: 0.72;
  text-transform: uppercase;
}

.callout {
  margin-top: 22px;
  padding: clamp(20px, 4vw, 32px);
  color: var(--white);
  background: var(--red);
  font-size: clamp(1.35rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.12;
}

.final-cta {
  width: 100%;
  padding-inline: max(16px, calc((100% - 1120px) / 2));
  color: var(--white);
  background: var(--blue-deep);
}

.final-cta h2 {
  max-width: 980px;
  color: var(--yellow);
}

.final-cta p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.source-grid a {
  min-height: 116px;
  padding: 16px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
  line-height: 1.35;
}

.footer {
  padding: 30px clamp(16px, 4vw, 44px);
  color: var(--white);
  background: var(--blue-deep);
}

.footer p {
  margin: 0;
  line-height: 1.45;
}

.footer-disclaimer {
  width: min(980px, 100%);
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .header-links {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.4rem);
  }

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

  .money-card p {
    grid-column: auto;
  }

  .stacked-chart {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .chart-side,
  .chart-side.av-chart {
    grid-template-columns: 1fr;
    min-height: 340px;
    padding: 16px;
  }

  .av-chart .stack-bar {
    order: 2;
  }

  .av-chart .chart-copy {
    order: 1;
  }

  .stack-bar {
    height: 30px;
    width: 100%;
    margin-top: 18px;
    flex-direction: row;
    justify-content: flex-start;
  }

  .stack-segment {
    min-height: 0;
    height: 100%;
    flex: 0 0 var(--mobile-w, var(--h));
    padding: 0;
  }

  .government-chart .stack-segment {
    --mobile-w: 100%;
  }

  .av-chart .stack-segment {
    --mobile-w: 4.46%;
    min-width: 8px;
  }

  .chart-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .chart-heading strong {
    font-size: clamp(1.85rem, 8vw, 3rem);
  }

  .chart-copy p {
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .contrast-grid,
  .quote-grid,
  .source-grid,
  .quote-card {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .topbar {
    gap: 10px;
  }

  .brand span:last-child {
    max-width: 164px;
  }

  .share-button {
    min-height: 40px;
    padding-inline: 12px;
  }

  .hero-inner {
    justify-content: start;
    padding-top: 42px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

}
