:root {
  --black: #030303;
  --charcoal: #111;
  --white: #f5f5f1;
  --red: #e20d13;
  --green: #04923d;
  --soft-green: #12b95b;
  --gray: #bfc0bd;
  --muted: #8f908b;
  --line: rgba(255, 255, 255, .18);
  --shadow-red: 8px 8px 0 var(--red);
  --shadow-green: 8px 8px 0 var(--green);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Arial Narrow", Impact, Haettenschweiler, "Arial Black", system-ui, sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: .18;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .16), transparent 1px),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, .1), transparent 1px);
  background-size: 5px 5px;
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 6px;
  background: #222;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--white), var(--red));
}

.sticky-vote {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  gap: 1px;
  min-width: 245px;
  padding: 12px 14px;
  border: 2px solid var(--white);
  background: rgba(3, 3, 3, .92);
  box-shadow: var(--shadow-red);
  text-transform: uppercase;
}

.sticky-vote strong {
  color: var(--green);
  font-size: 22px;
  line-height: .95;
}

.sticky-vote span {
  color: var(--gray);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.sticky-vote a {
  margin-top: 6px;
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 950;
}

.hero {
  position: relative;
  min-height: 96vh;
  padding: 24px clamp(18px, 4vw, 58px) 64px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .7)),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, .18), transparent 15rem),
    var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .82), transparent);
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 950;
}

.brand-mark {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  font-size: 34px;
  line-height: 1;
}

.brand-mark b:first-child {
  color: var(--green);
}

.brand-mark b:nth-child(2) {
  color: var(--white);
}

.brand-mark b:last-child {
  color: var(--red);
}

.nav-actions a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-actions a:hover {
  background: var(--white);
  color: var(--black);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  max-width: 1220px;
  margin: 12vh auto 0;
}

.brush-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 16px;
  padding: 4px 18px 5px 12px;
  background: linear-gradient(90deg, var(--green), rgba(4, 146, 61, .8) 70%, transparent);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  text-transform: uppercase;
  line-height: .88;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(60px, 10vw, 128px);
  text-shadow: 4px 4px 0 rgba(226, 13, 19, .85);
}

h2 {
  font-size: clamp(40px, 6vw, 78px);
}

.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--gray);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 850;
}

.campaign-name,
.section-super {
  margin: 0 0 12px;
  color: var(--red);
  font-size: clamp(46px, 8vw, 104px);
  font-weight: 950;
  line-height: .78;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, .9), 7px 7px 0 rgba(255, 255, 255, .1);
  transform: skew(-5deg) rotate(-1deg);
  transform-origin: left center;
}

.campaign-name::first-line,
.section-super::first-line {
  color: inherit;
}

.section-super {
  color: var(--white);
  font-size: clamp(32px, 5vw, 58px);
  line-height: .86;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, .16);
}

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

.button,
.small-button,
.copy-point {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 2px solid var(--white);
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 15px;
  box-shadow: 5px 5px 0 rgba(255, 255, 255, .18);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.button:hover,
.small-button:hover,
.copy-point:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 rgba(255, 255, 255, .18);
  text-decoration: none;
}

.primary {
  background: var(--red);
}

.green {
  background: var(--green);
}

.ghost {
  background: var(--white);
  color: var(--black);
}

.campaign-card {
  position: relative;
  box-shadow: var(--shadow-red);
  transform: rotate(1.5deg);
}

.campaign-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.section {
  padding: 84px clamp(18px, 4vw, 58px);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 32px;
}

.section-heading p:not(.brush-label) {
  max-width: 700px;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.manifesto {
  background:
    linear-gradient(180deg, #090909, #121212),
    var(--black);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
}

.manifesto-text {
  display: grid;
  align-content: center;
  gap: 18px;
  border-left: 8px solid var(--red);
  padding-left: 24px;
}

.manifesto-text p,
.supporters-text {
  margin: 0;
  color: #d8d8d4;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 750;
}

.campaign-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.campaign-gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.campaign-gallery img:first-child {
  grid-column: 1 / -1;
}

.quick,
.supporters {
  background: #f0f0ea;
  color: var(--black);
}

.quick .brush-label,
.supporters .brush-label,
.contact .brush-label {
  background: linear-gradient(90deg, var(--red), rgba(226, 13, 19, .85) 70%, transparent);
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.priority-card {
  display: grid;
  min-height: 248px;
  padding: 22px;
  border: 4px solid var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: 8px 8px 0 var(--red);
  text-decoration: none;
  text-transform: uppercase;
}

.priority-card:nth-child(2) {
  box-shadow: 8px 8px 0 var(--green);
}

.priority-card:nth-child(3) {
  box-shadow: 8px 8px 0 var(--black);
}

.priority-card span {
  align-self: start;
  width: max-content;
  padding: 4px 10px;
  background: var(--green);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 950;
}

.priority-card strong {
  align-self: center;
  font-size: clamp(30px, 4vw, 48px);
  line-height: .88;
}

.priority-card small {
  align-self: end;
  color: var(--gray);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 850;
}

.candidates {
  background: var(--black);
}

.candidate-groups {
  display: grid;
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto;
}

.candidate-group {
  display: grid;
  gap: 14px;
}

.group-kicker {
  width: fit-content;
  margin: 0;
  padding: 6px 12px;
  background: var(--green);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.candidate-deck.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.candidate-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 0;
  background: #111;
  box-shadow: 6px 6px 0 rgba(226, 13, 19, .78);
  overflow: hidden;
}

.candidate-card:nth-child(even) {
  box-shadow: 6px 6px 0 rgba(4, 146, 61, .82);
}

.candidate-card.featured {
  background: linear-gradient(180deg, rgba(226, 13, 19, .18), #111);
}

.candidate-card.no-image {
  min-height: 360px;
  grid-template-rows: auto 1fr;
  background:
    radial-gradient(circle at 85% 10%, rgba(4, 146, 61, .28), transparent 12rem),
    #111;
}

.candidate-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.candidate-card > div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
}

.candidate-card span {
  width: fit-content;
  padding: 4px 9px;
  background: var(--red);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.candidate-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: .88;
  text-transform: uppercase;
}

.candidate-card p {
  margin: 0;
  color: #d7d7d1;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 720;
}

.candidate-card a {
  align-self: end;
  color: var(--soft-green);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.program {
  background:
    radial-gradient(circle at 80% 4%, rgba(4, 146, 61, .16), transparent 24rem),
    #070707;
  border-block: 8px solid var(--green);
}

.toolbox {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 16px;
  align-items: end;
  max-width: 1080px;
  margin: 0 auto 20px;
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 52px;
  border: 3px solid var(--white);
  background: var(--white);
  color: var(--black);
  padding: 0 14px;
  font: inherit;
  outline: none;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.small-button {
  min-height: 40px;
  padding: 8px 11px;
  box-shadow: none;
}

.small-button.is-active {
  background: var(--green);
}

.cards {
  display: grid;
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}

.program-card {
  border: 3px solid var(--white);
  background: #101010;
  color: var(--white);
  box-shadow: 6px 6px 0 rgba(226, 13, 19, .75);
  overflow: hidden;
}

.program-card:nth-child(even) {
  box-shadow: 6px 6px 0 rgba(4, 146, 61, .8);
}

.program-card.is-hidden {
  display: none;
}

.card-toggle {
  display: grid;
  grid-template-columns: 72px 1fr 38px;
  align-items: center;
  gap: 14px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 18px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.number {
  display: grid;
  place-items: center;
  min-height: 50px;
  background: var(--green);
  color: var(--white);
  font-size: 25px;
  font-weight: 950;
}

.title {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 950;
  line-height: .95;
  text-transform: uppercase;
}

.icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--white);
  color: var(--red);
  font-size: 26px;
  font-weight: 950;
}

.program-card.is-open .icon {
  background: var(--red);
  color: var(--white);
}

.card-content {
  display: none;
  padding: 0 18px 22px 104px;
}

.program-card.is-open .card-content {
  display: block;
}

.card-content p {
  max-width: 820px;
  margin: 0 0 14px;
  color: #d8d8d4;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 760;
}

.copy-point {
  min-height: 36px;
  margin-right: 10px;
  padding: 8px 11px;
  background: var(--green);
  box-shadow: none;
}

.deep-link {
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 950;
}

.empty {
  display: none;
  max-width: 1080px;
  margin: 18px auto 0;
  padding: 18px;
  border: 2px dashed var(--line);
  color: var(--muted);
  text-align: center;
}

.empty.is-visible {
  display: block;
}

.supporters-text {
  max-width: 1080px;
  margin: 0 auto;
  color: #232323;
  column-count: 2;
  column-gap: 34px;
}

.contact {
  background:
    linear-gradient(90deg, rgba(226, 13, 19, .18), transparent),
    var(--black);
}

.contact-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-red);
}

.contact-card h2 {
  max-width: 760px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 850;
}

footer a {
  color: var(--white);
  font-weight: 950;
}

@media (max-width: 920px) {
  .hero-grid,
  .manifesto-grid,
  .toolbox {
    grid-template-columns: 1fr;
  }

  .priority-grid,
  .candidate-deck,
  .candidate-deck.compact {
    grid-template-columns: 1fr;
  }

  .tool-actions {
    justify-content: flex-start;
  }

  .supporters-text {
    column-count: 1;
  }
}

@media (max-width: 640px) {
  .sticky-vote {
    right: 10px;
    bottom: 10px;
    min-width: 210px;
  }

  .topbar,
  .nav-actions,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions a {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .section {
    padding-block: 58px;
  }

  .card-toggle {
    grid-template-columns: 54px 1fr 32px;
    gap: 10px;
    padding: 15px;
  }

  .card-content {
    padding: 0 15px 18px 79px;
  }
}

@media print {
  .progress,
  .sticky-vote,
  .topbar,
  .hero-actions,
  .toolbox,
  footer {
    display: none;
  }

  body,
  .hero,
  .program,
  .manifesto,
  .candidates,
  .contact {
    background: #fff;
    color: #111;
  }

  .section {
    padding: 24px 0;
  }

  h1 {
    text-shadow: none;
  }

  .card-content {
    display: block;
  }
}
