/* =============================================================
   BRAND.BRIEF — stylesheet
   Palette inspired by the Brand.Brief PDF: vermillion red, ink
   black, paper cream. Bold condensed display + mono captions.
   ============================================================= */

:root {
  --red:       #E2241B;
  --red-deep:  #B81710;
  --ink:       #111111;
  --ink-soft:  #1d1d1d;
  --paper:     #F4EFE6;
  --paper-2:   #ECE5D6;
  --cream:     #FBF7EE;
  --line:      #1a1a1a;
  --muted:     #5e5a52;
  --gold:      #C99D2E;

  --font-display: "Anton", "Archivo Black", Impact, "Arial Narrow", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --maxw: 1180px;
  --pad:  clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* =============================================================
   URGENT STRIP
   ============================================================= */
.urgent-strip {
  background: var(--ink);
  color: var(--cream);
  border-bottom: 4px solid var(--red);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.urgent-strip__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  justify-content: space-between;
}
.bracketed { display: inline-flex; align-items: center; gap: 6px; }
.brackets {
  color: var(--red);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.urgent-strip__label {
  display: inline-block;
  padding: 4px 10px;
  background: var(--red);
  color: var(--cream);
  font-weight: 700;
}
.urgent-strip__label--fr { background: var(--red-deep); }
.urgent-strip__sub { opacity: .85; }
.urgent-strip__warn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
}

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
  transition: box-shadow .2s ease, background .2s ease;
}
.nav.is-scrolled {
  background: rgba(244, 239, 230, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.nav__brand-mark {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav__brand-mark span { color: var(--red); }
.nav__brand-sub {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__links a {
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  color: var(--ink);
}
.nav__links a:hover { color: var(--red); }
.nav__links a.is-active {
  color: var(--red);
}
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--red);
}
.nav__cta {
  background: var(--red);
  color: var(--cream) !important;
  padding: 8px 14px !important;
  border: 2px solid var(--red);
}
.nav__cta:hover { background: var(--ink); border-color: var(--ink); color: var(--red) !important; }

/* mobile toggle */
.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  background: var(--cream);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% 10%, rgba(226,36,27,0.08), transparent 60%),
    var(--paper);
  padding: clamp(40px, 8vw, 96px) 0 clamp(40px, 8vw, 80px);
  overflow: hidden;
}
.hero::before {
  /* paper grain overlay */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,.018) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.018) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Corner brackets */
.hero__corner {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 4px solid var(--ink);
  pointer-events: none;
}
.hero__corner--tl { top: 28px; left: 28px;     border-right: 0; border-bottom: 0; }
.hero__corner--tr { top: 28px; right: 28px;    border-left: 0;  border-bottom: 0; }
.hero__corner--bl { bottom: 28px; left: 28px;  border-right: 0; border-top: 0; }
.hero__corner--br { bottom: 28px; right: 28px; border-left: 0;  border-top: 0; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
}
.tag--red { background: var(--red); color: var(--cream); border-color: var(--red); }
.tag--mono { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 16vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

/* Image-based hero title (PNG already includes the red bar treatment) */
.hero__title--image {
  display: block;
  margin: 0 calc(-1 * var(--pad));
  padding: 0 var(--pad);
  line-height: 0;
}
.hero__title--image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1315px;
  margin: 0 auto;
  /* preserve crisp grunge edges and slight bleed off the page */
  image-rendering: -webkit-optimize-contrast;
}
.hero__title-line { position: relative; }
.hero__title-line:first-child::after {
  content: "";
  position: absolute;
  left: 0; right: 6%;
  bottom: 6%;
  height: 8%;
  background: var(--red);
  mix-blend-mode: multiply;
  opacity: .85;
  transform: skewX(-10deg);
}
.hero__title-line:last-child::after {
  content: "";
  position: absolute;
  left: 0; right: 4%;
  bottom: 6%;
  height: 8%;
  background: var(--red);
  mix-blend-mode: multiply;
  opacity: .85;
  transform: skewX(-8deg);
}
.hero__dot {
  font-family: var(--font-display);
  color: var(--red);
}

.hero__lede {
  margin: 36px 0 12px;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  font-weight: 700;
  max-width: 64ch;
}
.hero__lede em { font-style: italic; color: var(--red-deep); font-weight: 700; }
.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink);
  max-width: 200ch;
  margin: 0 0 32px;
  font-style: italic;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: clamp(40px, 6vw, 72px); }

/* Marquee strip ---------------------------------------------
   Structure: .hero__strip is a fixed-width viewport with
   overflow:hidden. Inside it, .hero__strip__track is an
   inline-flex row containing 4 duplicate copies of the
   phrases. The track is animated from 0 → -25% (= one full
   set of 3 phrases). Because every span has uniform
   padding-right (instead of flex-gap, which only renders
   between items), the spacing at the loop boundary matches
   the spacing inside the track — so the loop is seamless.
   --------------------------------------------------------- */
.hero__strip {
  position: relative;
  margin: 0 calc(-1 * var(--pad));
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 14px 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  /* keep transform crisp on all browsers */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.hero__strip__track {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  animation: marquee 36s linear infinite;
  will-change: transform;
}
.hero__strip__track span {
  display: inline-block;
  flex: 0 0 auto;
  padding-right: 60px;       /* uniform trailing spacing — gap-free */
  line-height: 1;
}
/* Pattern repeats every 4 spans, so the colour rhythm survives the loop */
.hero__strip__track span:nth-child(4n + 2) { color: var(--red); }
.hero__strip__track span.hero__strip__save { color: var(--red); }

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-25%, 0, 0); }   /* 25% = one full set of 4 phrases */
}
.hero__strip:hover .hero__strip__track { animation-play-state: paused; }

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn--primary {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn--primary:hover { box-shadow: 8px 8px 0 var(--ink); background: var(--ink); border-color: var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
}
.btn--ghost:hover { box-shadow: 8px 8px 0 var(--red); background: var(--ink); color: var(--cream); }
.btn--dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--red);
}
.btn--dark:hover { box-shadow: 8px 8px 0 var(--red); background: var(--red); border-color: var(--red); color: var(--cream); }
.btn--block { display: block; width: 100%; text-align: center; }

/* =============================================================
   SECTIONS / TYPOGRAPHY
   ============================================================= */
.section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }
.section__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.section--dark  { background: var(--ink); color: var(--cream); }
.section--red   { background: var(--red); color: var(--paper); }
.section--red .section__title,
.section--red .section__title--light,
.section--red .section__lede,
.section--red .section__lede--light { color: var(--paper); }
.section--red .kicker,
.section--red .kicker--light { color: var(--paper); border-left-color: var(--ink); }
.section--quote { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 80px); }

.section__header {
  margin-bottom: clamp(28px, 4vw, 56px);
  max-width: 70ch;
}
.section__header--light { color: var(--cream); }
.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 10px;
  margin-bottom: 14px;
}
.kicker--light { color: var(--red); }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin: 0;
  text-transform: uppercase;
  color: var(--ink);
}
.section__title--light { color: var(--cream); }

.prose {
  max-width: 72ch;
  font-size: 17px;
  line-height: 1.7;
}
.prose p + p { margin-top: 16px; }
.prose em { font-style: italic; color: var(--red-deep); }
.section--dark .prose em { color: var(--red); }

.prose__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 38px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--red);
  color: var(--ink);
}
.prose__heading:first-child { margin-top: 0; }

/* =============================================================
   EXECUTIVE SUMMARY CALLOUT
   ============================================================= */
.exec-summary {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 44px);
  margin: 0 0 clamp(36px, 5vw, 56px);
  border-left: 6px solid var(--red);
  box-shadow: 8px 8px 0 var(--red);
}
.exec-summary__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--cream);
  padding: 5px 10px;
  margin-bottom: 18px;
}
.exec-summary__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 18px;
  color: var(--cream);
  max-width: 60ch;
}
.exec-summary__body {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 70ch;
  color: rgba(251, 247, 238, 0.92);
}
.exec-summary__body em { font-style: italic; color: var(--red); }
.exec-summary__body strong { color: var(--cream); }
.exec-summary__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(251, 247, 238, 0.18);
  padding-top: 18px;
}
.exec-summary__points li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(251, 247, 238, 0.88);
}
.exec-summary__points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.exec-summary__points strong { color: var(--cream); letter-spacing: 0.02em; }

/* =============================================================
   STATS
   ============================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0 0 48px;
  border: 2px solid var(--ink);
  background: var(--cream);
}
.stat {
  padding: 28px 24px;
  border-right: 2px solid var(--ink);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.stat__label {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}
.stat--accent { background: var(--red); color: var(--cream); }
.stat--accent .stat__value { color: var(--cream); }
.stat--accent .stat__label { color: var(--cream); opacity: .92; }

/* =============================================================
   ABSENCES (no-no-no list)
   ============================================================= */
.absences {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.absences li {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 12px;
  background: var(--cream);
  border-left: 3px solid var(--red);
  text-transform: uppercase;
}

/* =============================================================
   DEMANDS
   ============================================================= */
.demands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.demand {
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--cream);
  padding: 32px 28px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.demand:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--red);
}
.demand:nth-child(odd) { background: var(--paper); }
.demand:last-child:nth-child(odd) {
  /* span both columns when 5th of 5 */
  grid-column: span 2;
}
.demand__number {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--red);
  opacity: .9;
}
.demand__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 80px 16px 0;
  color: var(--ink);
}
.demand__lede {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--ink);
  font-style: italic;
}
.demand__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0,0,0,.12);
}
.demand__list li {
  position: relative;
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  font-size: 15px;
  line-height: 1.55;
}
.demand__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--red);
  font-weight: 700;
}

/* =============================================================
   DEMAND ZERO — overarching, horizontal banner above the grid
   ============================================================= */
.demand-zero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  background: var(--red);
  color: var(--paper);
  padding: 40px 36px;
  margin-bottom: 32px;
  position: relative;
  border: 2px solid var(--red);
}
.demand-zero--no-num {
  grid-template-columns: 1fr;
  gap: 0;
}
.demand-zero__number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(96px, 11vw, 160px);
  line-height: 0.85;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.demand-zero__content {
  min-width: 0;
}
.demand-zero__kicker {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(0,0,0,0.15);
  color: var(--paper);
  margin-bottom: 14px;
}
.demand-zero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--paper);
}
.demand-zero__block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.demand-zero__block:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.demand-zero__label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--paper);
  opacity: 0.85;
}
.demand-zero__body {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: var(--paper);
}
.demand-zero__body strong {
  color: var(--paper);
  font-weight: 700;
}
.demand-zero__hl,
.actpop__hl {
  background: var(--ink);
  color: var(--paper);
  padding: 0.05em 0.35em;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.actpop__lead--hl {
  margin: 14px 0 !important;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.hl-paper {
  color: #ECE5D7;
  font-weight: 700;
}

@media (max-width: 720px) {
  .demand-zero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 22px;
  }
  .demand-zero__number {
    font-size: 80px;
    line-height: 0.9;
  }
  .demand-zero__title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .demand-zero__body {
    font-size: 14.5px;
  }
}

/* Uniform light card colour for the demands on the petition page.
   index.html keeps the alternating cream/paper pattern. */
#demands-summary .demand,
#demands-summary .demand:nth-child(odd) {
  background: var(--cream);
}

/* =============================================================
   DEMANDS COMPACT — link to full manifesto (petition page)
   ============================================================= */
.demands-compact__more {
  margin: 28px 0 0;
  font-size: 15px;
  text-align: center;
  color: var(--ink);
}
.demands-compact__more a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
}

/* =============================================================
   QUOTE
   ============================================================= */
.quote {
  position: relative;
  max-width: 80ch;
  margin: 0 auto;
  padding: 40px 24px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  text-align: center;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--red);
  line-height: 0.8;
  display: block;
  margin-bottom: 8px;
}
.quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.2;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.quote__source {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =============================================================
   PROGRAMS
   ============================================================= */
.programs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.program {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
}
.program:nth-child(3n) { background: var(--ink); color: var(--cream); }
.program:nth-child(4n) { border-color: var(--red); color: var(--red); }

/* =============================================================
   MOBILIZE STRIP
   ============================================================= */
.mobilize {
  background: var(--red);
  color: var(--cream);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.mobilize__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mobilize__col {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-left: 2px solid var(--cream);
  padding-left: 14px;
}
.mobilize__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: .8;
}
.mobilize__word {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

/* =============================================================
   SUPPORTERS
   ============================================================= */
.supporters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.supporter {
  background: #ffffff;
  border: 2px solid var(--ink);
  padding: 32px 24px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.supporter--lead {
  border-color: var(--red);
  background: #ffffff;
  border-width: 3px;
  padding: 44px 28px 32px;
  min-height: 220px;
}
.supporter__role {
  position: absolute;
  top: 8px; right: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--red);
  text-transform: uppercase;
}
.supporter--placeholder {
  border-style: dashed;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.supporter__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1 1 auto;
}
.supporter__logo-img {
  display: block;
  max-width: 95%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* legacy CSS-rendered Creative Fed logo (kept in case it is reused elsewhere) */
.logo-creativefed {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
}
.logo-creativefed__bar {
  display: inline-block;
}
.logo-creativefed__rule {
  display: inline-block;
  width: 22px;
  height: 4px;
  background: var(--ink);
  margin: 0 2px;
}
.supporters__note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.04em;
}
.supporters__note a { color: var(--red); font-weight: 700; }

.supporters-list {
  margin: 8px 0 28px;
  padding: 24px 0 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.supporters-list__counter {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
  margin: 0 0 18px;
}

/* search + country filter (shown only when the list is large) */
.supporters-list__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 0 0 22px;
}
.supporters-list__search {
  flex: 1 1 320px;
  max-width: 460px;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 16px;
  border: 1.5px solid var(--line);
  border-radius: 0;
  background: var(--cream);
  color: var(--ink);
}
.supporters-list__search:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.supporters-list__countries { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.supporters-list__chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 11px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
}
.supporters-list__chip[aria-pressed="true"] { background: var(--ink); color: var(--cream); }

/* dense responsive grid (the "scale" look) */
.supporters-list__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 4px 24px;
}
.supporters-list__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 15px;
  line-height: 1.35;
}
.supporters-list__name { font-weight: 600; color: var(--ink); }
.supporters-list__name mark { background: rgba(226, 36, 27, 0.18); color: inherit; padding: 0 1px; }
.supporters-list__country {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  white-space: nowrap;
}
.supporters-list__empty {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  padding: 28px 0 8px;
}

/* =============================================================
   SIGN-ON FORM
   ============================================================= */
.section--contact .section__title { color: var(--cream); }
.signon {
  display: grid;
  gap: 16px;
  max-width: 760px;
}
.signon__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.signon__row--three { grid-template-columns: 1.4fr 1.2fr 1fr; }
.signon label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
}
.signon label em { font-style: normal; opacity: .6; text-transform: none; letter-spacing: 0.04em; }
.signon__req {
  color: var(--red);
  margin-left: 3px;
  font-weight: 700;
  letter-spacing: 0;
}
.signon input,
.signon textarea,
.signon select {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  padding: 12px 14px;
  border: 2px solid var(--cream);
  background: transparent;
  color: var(--cream);
  outline: none;
  transition: border-color .15s ease;
}
.signon select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'><path fill='none' stroke='%23f1ead8' stroke-width='2' d='M1 1l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 38px;
  cursor: pointer;
}
.signon select option,
.signon select optgroup {
  background: #1a1a1a;
  color: var(--cream);
}
.signon input:focus,
.signon textarea:focus,
.signon select:focus { border-color: var(--red); }
.signon__msg textarea { resize: vertical; min-height: 80px; }
.signon__status {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--red);
  min-height: 1em;
  letter-spacing: 0.04em;
}
.signon__status.is-success { color: #b6e6bf; }
.signon__status a { color: var(--red); font-weight: 700; text-decoration: underline; }
.signon__status a:hover { color: var(--cream); }
.signon__status strong { color: inherit; }

/* --- Sign-on form on LIGHT sections (e.g. petition.html #sign on cream) --- */
.section--cream .signon label,
.section--paper .signon label { color: var(--ink); }
.section--cream .signon input,
.section--cream .signon textarea,
.section--cream .signon select,
.section--paper .signon input,
.section--paper .signon textarea,
.section--paper .signon select {
  border-color: var(--ink);
  color: var(--ink);
  background-color: rgba(255,255,255,0.5);
}
.section--cream .signon select,
.section--paper .signon select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'><path fill='none' stroke='%23111' stroke-width='2' d='M1 1l6 6 6-6'/></svg>");
}
.section--cream .signon select option,
.section--cream .signon select optgroup,
.section--paper .signon select option,
.section--paper .signon select optgroup {
  background: var(--cream);
  color: var(--ink);
}
.section--cream .signon__hint,
.section--paper .signon__hint { color: var(--ink); opacity: .8; }
.section--cream .signon__check,
.section--paper .signon__check {
  color: var(--ink);
  background-color: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.18);
}
.section--cream .signon__check:hover,
.section--paper .signon__check:hover {
  background-color: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.35);
}
.section--cream .signon__check span em,
.section--paper .signon__check span em { opacity: .7; }

.signon__hint {
  margin: 4px 0 -4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: var(--paper);
  opacity: .7;
}
.signon__hint strong { color: var(--red); font-weight: 700; }
.signon__hint em { font-style: normal; text-decoration: underline; }

/* =============================================================
   SIGN-ON CHECKBOXES — bigger + clearer cards
   ============================================================= */
.signon__check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 14px 0;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.55;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.15);
  color: var(--paper);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.signon__check:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.35);
}
.signon__check:has(input:checked) {
  background: rgba(226,36,27,0.10);
  border-color: var(--red);
}
.signon__check:has(input:focus-visible) {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.signon__check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin: 2px 0 0;
  background: var(--paper);
  border: 2px solid var(--ink);
  cursor: pointer;
  display: grid;
  place-content: center;
  position: relative;
  transition: background .12s ease, border-color .12s ease;
}
.signon__check input[type="checkbox"]:hover {
  border-color: var(--red);
}
.signon__check input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
}
.signon__check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 8px;
  height: 14px;
  border: solid var(--paper);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.signon__check span em {
  font-style: italic;
  opacity: 0.85;
}
.signon__check--required {
  border-color: rgba(226,36,27,0.55);
}
.signon__check--required:hover {
  border-color: var(--red);
}

@media (max-width: 720px) {
  .signon__check {
    padding: 14px 14px;
    font-size: 14.5px;
    gap: 12px;
  }
  .signon__check input[type="checkbox"] {
    width: 22px;
    height: 22px;
  }
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--paper-2);
  color: var(--ink);
  border-top: 1px solid var(--ink);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer__title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}
.footer__sub {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.footer__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 4px 0;
}
.footer__col li a { text-decoration: none; }
.footer__col li a:hover { color: var(--red); }

.footer__col--stamp { display: flex; align-items: flex-start; justify-content: flex-end; }
.stamp {
  border: 2px solid var(--ink);
  padding: 14px 18px;
  background: var(--cream);
  text-align: center;
}
.stamp__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.barcode {
  margin-top: 8px;
  height: 28px;
  width: 130px;
  background:
    repeating-linear-gradient(90deg,
      var(--ink) 0 2px,
      transparent 2px 4px,
      var(--ink) 4px 5px,
      transparent 5px 9px,
      var(--ink) 9px 12px,
      transparent 12px 14px);
}

.footer__strip {
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  max-width: 100%;
}
.footer__strip span:last-child { color: var(--red); }
.footer__strip .footer__version {
  color: var(--paper) !important;
  opacity: 0.45;
  font-feature-settings: "tnum";
  letter-spacing: 0.08em;
}

/* ─── sticky footer strip ──────────────────────────────────────
   Keep the strip (with version tag) pinned to the bottom of the
   viewport at all times. Horizontal-scroll if items overflow.
   Body gets bottom padding so real content isn't covered.
*/
.footer__strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.18);
}
.footer__strip::-webkit-scrollbar { display: none; }
body { padding-bottom: 48px; }

/* ─── signatories tab UI (orgs / citizens) ────────────────────
   Two tabs inside the Supporters section, one panel per cohort.
*/
.sig-tabs {
  display: flex;
  gap: 4px;
  margin: 20px 0 0;
  border-bottom: 2px solid var(--ink);
}
.sig-tab {
  appearance: none;
  background: transparent;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  margin-bottom: -2px;
  position: relative;
}
.sig-tab:hover { background: rgba(0,0,0,0.04); }
.sig-tab.is-active {
  background: var(--ink);
  color: var(--paper);
}
.sig-tab__count {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  background: rgba(0,0,0,0.08);
  color: inherit;
  border-radius: 10px;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.sig-tab.is-active .sig-tab__count {
  background: rgba(255,255,255,0.18);
}

.sig-panel { display: none; padding: 24px 0 8px; }
.sig-panel.is-active { display: block; }
.sig-panel[hidden] { display: none !important; }

.sig-citizens__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  margin: 6px 0 22px;
}
.sig-citizens__count #sigCitizensBig {
  display: block;
  font-family: var(--font-display, "Anton", sans-serif);
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.95;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.sig-citizens__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
  margin-top: 6px;
}
.sig-citizens__cta .btn {
  white-space: nowrap;
}

.sig-citizens__wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 14px;
  padding: 18px;
  background: rgba(0,0,0,0.025);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  margin-bottom: 14px;
}
.sig-citizens__wall .sig {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(0,0,0,0.12);
}
.sig-citizens__wall .sig:last-child { border-bottom: 0; }
.sig-citizens__wall .sig__name { font-weight: 600; color: var(--ink); }
.sig-citizens__wall .sig__country {
  color: rgba(0,0,0,0.55);
  font-feature-settings: "tnum";
  letter-spacing: 0.04em;
}
.sig-citizens__wall .loading,
.sig-citizens__wall .empty {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: rgba(0,0,0,0.45);
  font-style: italic;
}

@media (max-width: 560px) {
  .sig-tab { padding: 9px 12px; font-size: 11px; }
  .sig-citizens__hero { padding: 18px; }
  .sig-citizens__wall { padding: 12px; grid-template-columns: 1fr; }
}

/* ─── staging-mode banner ──────────────────────────────────────
   Auto-activated by inline script when hostname is 127.0.0.1/
   localhost/0.0.0.0, protocol file://, or path starts with /test.
   Visual indicator + popup-trigger button. The matching JS also
   blocks form submissions as extra safety net.
*/
.staging-banner {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #E2241B; color: #fff;
  padding: 9px 16px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  border-bottom: 3px solid #111;
  box-shadow: 0 2px 0 #111;
}
.staging-banner a { color: #fff; text-decoration: underline; }
.staging-banner strong { letter-spacing: 0.06em; }
.staging-banner__btn {
  display: inline-block;
  margin-left: 4px;
  padding: 3px 10px;
  background: #fff;
  color: #E2241B;
  border: 1px solid #fff;
  border-radius: 3px;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-transform: uppercase;
  vertical-align: baseline;
}
.staging-banner__btn:hover,
.staging-banner__btn:focus { background: #111; color: #fff; outline: none; }
body.has-staging-banner { padding-top: 44px; }
body.has-staging-banner .nav { top: 44px; }
@media (max-width: 560px) {
  .staging-banner { font-size: 11.5px; padding: 7px 12px; }
  body.has-staging-banner { padding-top: 38px; }
  body.has-staging-banner .nav { top: 38px; }
}

/* =============================================================
   SCROLL REVEAL
   ============================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   RESOURCES (appendix / further reading)
   ============================================================= */
.resources {
  margin: 32px 0 0;
}
.resource-group + .resource-group { margin-top: 32px; }
.resource-group__title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 6px;
  padding: 0 0 6px;
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
}
.resource-group__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.resource {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--ink);
  align-items: start;
}
.resource-group__list .resource:first-child { border-top: 0; }
.resource-group__list .resource:last-child { border-bottom: 1px solid var(--ink); }
.resource__num {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  color: var(--red);
  font-weight: 700;
  padding-top: 2px;
}
.resource__body { display: flex; flex-direction: column; gap: 3px; }
.resource__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(10px, 0.9vw, 12px);
  line-height: 1.3;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.resource__title:hover { color: var(--red); }
.resource__arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform .2s ease;
}
.resource__title:hover .resource__arrow { transform: translateX(3px); }
.resource__desc {
  margin: 0;
  font-size: 9px;
  line-height: 1.5;
  color: var(--ink);
  opacity: .8;
}
.resource__meta {
  margin: 1px 0 0;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px) {
  .stats         { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:last-child { border-right: 0; grid-column: 1 / -1; }
  .stat:nth-child(-n+4) { border-bottom: 2px solid var(--ink); }
  .demands       { grid-template-columns: 1fr; }
  .demand:last-child:nth-child(odd) { grid-column: auto; }
  .supporters    { grid-template-columns: repeat(2, 1fr); }
  .mobilize__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__col--stamp { justify-content: flex-start; }
}

/* ───────── tablet / small laptop  ≤ 720px ───────── */
@media (max-width: 720px) {
  :root { --pad: clamp(16px, 5vw, 28px); }

  body { font-size: 16px; line-height: 1.55; }

  /* ── Nav: hamburger menu ── */
  .nav__toggle { display: inline-flex; }
  .nav__inner  { padding: 12px var(--pad); }
  .nav__brand-mark { font-size: 22px; }
  .nav__brand-sub  { font-size: 9px; letter-spacing: 0.16em; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px var(--pad) 14px;
    display: none;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    width: 100%;
    font-size: 14px;
  }
  .nav__links .nav__cta {
    margin-top: 12px;
    align-self: flex-start;
    border-bottom: 2px solid var(--red);
  }

  /* ── Top strip ── */
  .urgent-strip__inner { gap: 6px 10px; padding: 8px var(--pad); font-size: 10px; }
  .urgent-strip__sub   { display: none; }
  .urgent-strip__label { padding: 3px 8px; }
  .urgent-strip__warn svg { width: 14px; height: 14px; }

  /* ── Hero ── */
  .hero { padding: 36px 0 40px; }
  .hero__inner { padding: 0 var(--pad); }
  .hero__corner        { width: 26px; height: 26px; border-width: 3px; }
  .hero__corner--tl, .hero__corner--tr { top: 14px; }
  .hero__corner--bl, .hero__corner--br { bottom: 14px; }
  .hero__corner--tl, .hero__corner--bl { left: 14px; }
  .hero__corner--tr, .hero__corner--br { right: 14px; }
  .hero__meta { gap: 6px; margin-bottom: 20px; }
  .tag { font-size: 10px; padding: 4px 8px; letter-spacing: 0.12em; }
  .hero__title--image { margin: 0 calc(-0.5 * var(--pad)); padding: 0; }
  .hero__lede { font-size: 18px; line-height: 1.3; margin: 24px 0 10px; }
  .hero__sub  { font-size: 14px; margin-bottom: 24px; }
  .hero__cta  { gap: 10px; margin-bottom: 36px; }
  .hero__strip { font-size: 22px; padding: 10px 0; }
  .hero__strip__track span { padding-right: 36px; }
  .hero__strip__track { animation-duration: 24s; }

  /* ── Buttons ── */
  .btn {
    font-size: 12px;
    padding: 12px 18px;
    letter-spacing: 0.1em;
  }
  .btn--primary { box-shadow: 4px 4px 0 var(--ink); }
  .btn--ghost   { box-shadow: 4px 4px 0 var(--red); }
  .btn:hover { transform: none; }       /* no hover-jiggle on touch */
  .btn--primary:hover { box-shadow: 4px 4px 0 var(--ink); }
  .btn--ghost:hover   { box-shadow: 4px 4px 0 var(--red); }

  /* ── Sections / typography ── */
  .section { padding: 48px 0; }
  .section__title { font-size: clamp(28px, 7vw, 38px); }
  .section__header { margin-bottom: 24px; }
  .kicker { font-size: 11px; letter-spacing: 0.18em; }
  .prose { font-size: 15px; line-height: 1.65; }

  /* ── Executive summary callout ── */
  .exec-summary {
    padding: 26px 22px;
    margin-bottom: 32px;
    border-left-width: 4px;
    box-shadow: 5px 5px 0 var(--red);
  }
  .exec-summary__tag { font-size: 10px; padding: 4px 8px; margin-bottom: 14px; }
  .exec-summary__title { font-size: 20px; line-height: 1.22; margin-bottom: 14px; }
  .exec-summary__body { font-size: 14.5px; line-height: 1.65; margin-bottom: 16px; }
  .exec-summary__points { padding-top: 14px; }
  .exec-summary__points li { font-size: 13.5px; padding-left: 18px; }
  .prose__heading { font-size: 20px; margin: 28px 0 10px; padding-left: 10px; }

  /* ── Stats: stack cleanly ── */
  .stats { grid-template-columns: 1fr; border-width: 2px; }
  .stat  {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
    padding: 22px 18px;
  }
  .stat:last-child { border-bottom: 0; }
  .stat__value { font-size: 48px; }
  .stat__label { font-size: 10px; }

  /* ── Absences ── */
  .absences { grid-template-columns: 1fr; gap: 8px; }
  .absences li { font-size: 12px; padding: 9px 10px; }

  /* ── Resources: stack number above body ── */
  .resource { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .resource__num { padding-top: 0; }

  /* ── Demands: full width, tighter ── */
  .demands { grid-template-columns: 1fr; gap: 16px; }
  .demand  { padding: 24px 20px 22px; }
  .demand:hover { transform: none; box-shadow: none; }
  .demand:last-child:nth-child(odd) { grid-column: auto; }
  .demand__number {
    position: static;
    margin-bottom: 4px;
    font-size: 44px;
    display: block;
  }
  .demand__title {
    font-size: 22px;
    line-height: 1.12;
    margin: 0 0 12px;
  }
  .demand__lede { font-size: 15px; margin-bottom: 14px; }
  .demand__list li { font-size: 14px; padding: 11px 0 11px 22px; line-height: 1.5; }
  .demand__list li::before { top: 11px; }

  /* ── Quote ── */
  .quote { padding: 30px 16px; }
  .quote p { font-size: 22px; line-height: 1.2; }
  .quote__mark { font-size: 64px; }
  .quote__source { font-size: 11px; }

  /* ── Recognition / programs ── */
  .programs { gap: 8px; }
  .program  { font-size: 11px; padding: 7px 10px; }

  /* ── Mobilize strip: 2x2 on tablet, single column on phone ── */
  .mobilize__inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .mobilize__col   { padding-left: 12px; }
  .mobilize__word  { font-size: 28px; }
  .mobilize__num   { font-size: 11px; }

  /* ── Supporters ── */
  .supporters { grid-template-columns: 1fr 1fr; gap: 12px; }
  .supporter  { min-height: 110px; padding: 22px 16px; }
  .supporter--lead { min-height: 170px; padding: 28px 20px 22px; }
  .supporter__logo-img { max-height: 120px; }
  .logo-creativefed { font-size: 24px; }
  .logo-creativefed__rule { width: 16px; height: 3px; }
  .supporters__note { font-size: 12px; }

  /* ── Sign-on form ── */
  .signon__row { grid-template-columns: 1fr; gap: 14px; }
  .signon label { font-size: 10px; }
  .signon input,
  .signon textarea,
  .signon select { font-size: 16px; padding: 10px 12px; }   /* ≥16px stops iOS zoom */
  .signon select { padding-right: 36px; }

  /* ── Footer ── */
  .footer__inner { grid-template-columns: 1fr; gap: 24px; padding: 36px var(--pad); }
  .footer__col--stamp { justify-content: flex-start; }
  .footer__title { font-size: 22px; }
  .footer__sub   { font-size: 10px; }
  .footer__col li { font-size: 12px; }
  .footer__strip {
    font-size: 10px;
    letter-spacing: 0.14em;
    gap: 8px 18px;
    padding: 10px var(--pad);
  }
  .stamp { padding: 10px 14px; }
  .stamp__title { font-size: 18px; }
  .barcode { width: 110px; height: 22px; }
}

/* ───────── small phones  ≤ 480px ───────── */
@media (max-width: 480px) {
  :root { --pad: 16px; }

  /* Nav: drop the dossier sub-line, keep things ultra-compact */
  .nav__brand-sub { display: none; }
  .nav__brand-mark { font-size: 20px; }

  /* Strip the French label on tiny widths so the warning fits */
  .urgent-strip__label--fr { display: none; }
  .urgent-strip__inner { justify-content: space-between; }

  /* Hero: smaller corner brackets, tighter spacing */
  .hero { padding: 28px 0 32px; }
  .hero__corner { width: 20px; height: 20px; border-width: 2px; }
  .hero__corner--tl, .hero__corner--tr { top: 10px; }
  .hero__corner--bl, .hero__corner--br { bottom: 10px; }
  .hero__corner--tl, .hero__corner--bl { left: 10px; }
  .hero__corner--tr, .hero__corner--br { right: 10px; }

  .hero__meta { margin-bottom: 16px; }
  .tag { font-size: 9px; padding: 3px 7px; }
  .hero__lede { font-size: 16px; }
  .hero__sub  { font-size: 13px; }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { text-align: center; }

  .hero__strip { font-size: 18px; }
  .hero__strip__track span { padding-right: 28px; }
  .hero__strip__track { animation-duration: 20s; }

  /* Section titles get tighter */
  .section { padding: 40px 0; }
  .section__title { font-size: clamp(24px, 8vw, 32px); }

  /* Stats values smaller so labels read well */
  .stat { padding: 18px 14px; }
  .stat__value { font-size: 40px; }

  /* Demands ultra-compact */
  .demand { padding: 20px 16px; }
  .demand__number { font-size: 36px; }
  .demand__title  { font-size: 19px; }
  .demand__lede   { font-size: 14px; }
  .demand__list li { font-size: 13.5px; padding-left: 18px; }

  /* Quote: smaller display so it doesn't tower */
  .quote { padding: 24px 4px; }
  .quote p { font-size: 18px; }
  .quote__mark { font-size: 50px; }

  /* Mobilize: single column stack, full-width bars */
  .mobilize__inner { grid-template-columns: 1fr; gap: 10px; }
  .mobilize__col   {
    padding: 6px 0 6px 12px;
    border-left-width: 3px;
  }
  .mobilize__word  { font-size: 24px; }

  /* Supporters: single column on tiny screens */
  .supporters { grid-template-columns: 1fr; }
  .supporter  { min-height: 90px; padding: 18px 14px; }
  .supporter--lead { min-height: 200px; padding: 30px 18px 22px; }
  .supporter__logo-img { max-height: 140px; }

  /* Footer strip wraps cleaner */
  .footer__strip { justify-content: flex-start; }

  /* On phones: hide wordy middle items so the sticky strip stays slim */
  body { padding-bottom: 40px; }
  .footer__strip > span:nth-child(2),  /* DOSSIER // 001 */
  .footer__strip > span:nth-child(4) { /* EVERY VOICE... */
    display: none;
  }

  /* Buttons take full row */
  .btn--primary, .btn--ghost { width: 100%; text-align: center; }
}

/* ───────── landscape phones: keep the title image readable ───────── */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 480px) {
  .hero { padding: 24px 0; }
  .hero__lede { margin-top: 16px; }
  .hero__strip { font-size: 18px; padding: 8px 0; }
}

/* Disable marquee animation if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__strip__track { animation: none !important; transform: none !important; }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero__strip { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .demand:hover { transform: none; }
}

/* =============================================================
   DEMAND SUB-POINTS (nested under a list item)
   ============================================================= */
.demand__sublist {
  list-style: none;
  margin: 10px 0 2px;
  padding: 0 0 0 26px;
}
.demand__sublist li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: none;
  font-size: 14px;
  line-height: 1.5;
  opacity: .82;
}
.demand__sublist li::before {
  content: "\21B3";          /* ↳ */
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--red);
  font-weight: 700;
}

/* =============================================================
   ACTIVATION POPUP — "Why does this matter to you?"
   Brutalist modal matching the brief's brackets + hard shadows.
   ============================================================= */
.actpop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.actpop[hidden] { display: none; }

.actpop__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.78);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: actpopFade .25s ease both;
}

.actpop__dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 14px 14px 0 var(--red);
  padding: clamp(26px, 4vw, 44px);
  animation: actpopPop .28s cubic-bezier(.2, .8, .25, 1) both;
}

/* corner brackets, echoing the hero */
.actpop__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--red);
}
.actpop__corner--tl { top: 8px;  left: 8px;  border-right: 0; border-bottom: 0; }
.actpop__corner--tr { top: 8px;  right: 8px; border-left: 0;  border-bottom: 0; }
.actpop__corner--bl { bottom: 8px; left: 8px;  border-right: 0; border-top: 0; }
.actpop__corner--br { bottom: 8px; right: 8px; border-left: 0;  border-top: 0; }

.actpop__close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: 0;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 8px;
  transition: color .15s ease, transform .15s ease;
}
.actpop__close:hover { color: var(--red); transform: scale(1.15); }

.actpop__head { margin-bottom: 22px; }
.actpop__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 7vw, 52px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 14px 0 14px;
  color: var(--ink);
}
.actpop__title-em {
  color: var(--red);
  -webkit-text-stroke: 1px var(--ink);
}
.actpop__lead {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* tabs */
.actpop__tabs {
  display: flex;
  gap: 0;
  border: 2px solid var(--ink);
  margin-bottom: 22px;
}
.actpop__tab {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 12px;
  background: var(--cream);
  color: var(--muted);
  border: 0;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.actpop__tab + .actpop__tab { border-left: 2px solid var(--ink); }
.actpop__tab:hover { color: var(--ink); }
.actpop__tab.is-active { background: var(--ink); color: var(--cream); }

/* panels */
.actpop__panel[hidden] { display: none; }
.actpop__stake-kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin: 0 0 12px;
}
.actpop__stakes {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.actpop__stakes li {
  position: relative;
  padding: 0 0 12px 26px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.actpop__stakes li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
}
.actpop__power {
  border-left: 4px solid var(--red);
  background: var(--paper-2);
  padding: 14px 16px;
  margin: 0 0 4px;
  font-size: 15.5px;
  line-height: 1.5;
}

/* ease line */
.actpop__ease {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin: 22px 0 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--muted);
}
.actpop__count { display: block; margin-top: 6px; color: var(--red); font-weight: 700; }

/* CTAs */
.actpop__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.actpop__cta .btn { flex: 1 1 220px; text-align: center; }

.actpop__dismiss {
  display: block;
  margin: 18px auto 0;
  background: none;
  border: 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
}
.actpop__dismiss:hover { color: var(--ink); }

@keyframes actpopFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes actpopPop {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 560px) {
  .actpop__dialog { box-shadow: 8px 8px 0 var(--red); }
  .actpop__cta .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .actpop__backdrop,
  .actpop__dialog { animation: none; }
  .actpop__close:hover { transform: none; }
}
