/* ==========================================================================
   The Movement of 3 — stylesheet
   Palette, type and layout tokens first; then components in page order.
   ========================================================================== */

:root {
  /* Ink & paper */
  --ink: oklch(0.2 0.02 60);
  --ink-soft: oklch(0.26 0.02 60);
  --ink-line: oklch(0.35 0.02 60);
  --paper: oklch(0.95 0.018 85);
  --band: oklch(0.93 0.02 85);
  --card: oklch(0.97 0.012 85);
  --cream: oklch(0.96 0.015 85);
  --white: oklch(0.98 0.01 85);

  /* Accents */
  --red: oklch(0.62 0.19 30);
  --red-link: oklch(0.55 0.18 30);
  --yellow: oklch(0.88 0.13 95);
  --blue: oklch(0.62 0.19 230);
  --blue-dark: oklch(0.58 0.17 230);

  /* Text on light */
  --body: oklch(0.34 0.02 60);
  --body-alt: oklch(0.36 0.02 60);
  --muted: oklch(0.45 0.02 60);
  --muted-soft: oklch(0.48 0.02 60);

  /* Text on coloured grounds */
  --on-yellow: oklch(0.3 0.03 85);
  --on-yellow-muted: oklch(0.38 0.03 85);
  /* The siesta demand card sits on a slightly warmer yellow than the rest. */
  --on-yellow-warm: oklch(0.3 0.03 80);
  --on-yellow-warm-muted: oklch(0.38 0.03 80);
  --on-blue-muted: oklch(0.9 0.05 230);
  --on-red-muted: oklch(0.9 0.05 30);
  --on-red-meta: oklch(0.92 0.05 30);
  --on-dark: oklch(0.78 0.015 85);
  --on-dark-soft: oklch(0.72 0.015 85);
  --on-dark-link: oklch(0.9 0.015 85);

  /* Rules */
  --dash: oklch(0.8 0.03 80);
  --dash-soft: oklch(0.85 0.03 80);
  --dash-yellow: oklch(0.72 0.1 95);
  --dash-blue: oklch(0.78 0.08 230);
  --rule: 3px solid var(--ink);

  /* Type */
  --display: "Archivo Black", Helvetica, sans-serif;
  --sans: "Space Grotesk", Helvetica, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--red-link);
  text-decoration: none;
}
a:hover { color: var(--ink); }

h1, h2, h3, p, figure, blockquote { margin: 0; }

@keyframes m3-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes m3-bob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-10px) rotate(-3deg); }
}

/* --------------------------------------------------------------- utilities */

.wrap {
  max-width: 1240px;
  margin: 0 auto;
}
.wrap--narrow { max-width: 1000px; }

.mono-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.mono-label--foot { margin-top: 16px; letter-spacing: 0.06em; }
.mono-label--lg { font-size: 12px; letter-spacing: 0.16em; }
.mono-label--on-dark   { color: var(--yellow); }
.mono-label--on-yellow { color: var(--on-yellow-muted); }
.mono-label--on-blue   { color: var(--on-blue-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eyebrow--yellow { background: var(--yellow); }
.eyebrow--blue   { background: var(--blue); color: var(--white); }
.eyebrow--red    { background: var(--red);  color: var(--white); }
.eyebrow__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.btn {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn--solid {
  padding: 16px 26px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.btn--solid:hover { background: var(--red); color: var(--white); }
.btn--outline {
  padding: 14px 26px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--pill-red {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
}
.btn--pill-red:hover { background: var(--yellow); color: var(--ink); }
.btn--pill-yellow {
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0.05em;
}
.btn--pill-yellow:hover { background: var(--white); color: var(--ink); }

/* ------------------------------------------------------------------ header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--cream);
  border-bottom: var(--rule);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 17px;
  color: var(--white);
  letter-spacing: -1px;
}
.brand__name {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a:not(.btn) { color: var(--cream); }
.site-nav a:not(.btn):hover { color: var(--yellow); }

/* -------------------------------------------------------------------- hero */

.hero {
  position: relative;
  padding: 76px 28px 0;
  border-bottom: var(--rule);
}
.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: end;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 0.84;
  letter-spacing: -0.035em;
  margin: 22px 0 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero__lede {
  font-size: 19px;
  line-height: 1.5;
  max-width: 46ch;
  margin: 26px 0 0;
  color: var(--body);
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 0;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin: 44px 0 0;
  padding: 22px 0 0;
  border-top: 2px dashed var(--dash);
}
.stat__value {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* hero artwork */

.hero__art {
  position: relative;
  padding-bottom: 40px;
}
.badge-bob {
  position: absolute;
  top: -34px;
  right: -6px;
  z-index: 3;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.05;
  text-transform: uppercase;
  border: var(--rule);
  animation: m3-bob 4.5s ease-in-out infinite;
}

.poster {
  position: relative;
  border: var(--rule);
  border-radius: 4px;
  background: var(--blue);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 14px 14px 0 var(--ink);
}
.poster__stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, var(--blue-dark) 0 12px, var(--blue) 12px 24px);
}

.clock {
  position: absolute;
  left: 50%;
  top: 34%;
  transform: translate(-50%, -50%);
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  border: 4px solid var(--ink);
}
.clock__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.clock__hand {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 7px;
  border-radius: 4px;
  transform-origin: 0 50%;
}
.clock__hand--hour {
  width: 38%;
  background: var(--ink);
  transform: translateY(-50%) rotate(-90deg);
}
.clock__hand--minute {
  width: 30%;
  background: var(--red);
  transform: translateY(-50%);
}
.clock__tick { position: absolute; background: var(--ink); }
.clock__tick--12 { left: 50%; top: 8%;    width: 8px;  height: 14px; transform: translateX(-50%); }
.clock__tick--3  { right: 6%;  top: 50%;  width: 14px; height: 8px;  transform: translateY(-50%); }
.clock__tick--6  { left: 50%;  bottom: 8%; width: 8px; height: 14px; transform: translateX(-50%); }

.placards {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
}
.placard {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.placard--a { transform: rotate(-7deg); }
.placard--b { transform: rotate(4deg); }
.placard--c { transform: rotate(-3deg); }
.placard__sign {
  width: 62px;
  height: 46px;
  border: var(--rule);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 24px;
}
.placard--a .placard__sign { background: var(--card);   color: var(--ink); }
.placard--b .placard__sign { background: var(--red);    color: var(--white); }
.placard--c .placard__sign { background: var(--yellow); color: var(--ink); }
.placard__pole { width: 8px; background: var(--ink); }
.placard--a .placard__pole { height: 88px; }
.placard--b .placard__pole { height: 122px; }
.placard--c .placard__pole { height: 70px; }

/* ----------------------------------------------------------------- marquee */

.marquee {
  overflow: hidden;
  background: var(--red);
  border-bottom: var(--rule);
  padding: 13px 0;
}
.marquee[hidden] { display: none; }
.marquee__track {
  display: flex;
  width: max-content;
  animation: m3-marquee 26s linear infinite;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee__track > span { padding-right: 34px; }
.marquee__star { color: var(--yellow); }

/* ---------------------------------------------------------------- sections */

.section {
  padding: 84px 28px;
  border-bottom: var(--rule);
}
.section--band { background: var(--band); }
.section--dark {
  padding: 74px 28px;
  background: var(--ink);
  color: var(--cream);
}
.section--center { text-align: center; }

.section__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.section__kicker {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.h2 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.h2--xl    { font-size: clamp(34px, 5vw, 66px); }
.h2--tight {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.88;
  margin: 20px 0 0;
  text-wrap: balance;
}
.h2--small { font-size: clamp(30px, 4.4vw, 54px); line-height: 0.92; }
.h2--large { font-size: clamp(36px, 5.4vw, 72px); line-height: 0.86; letter-spacing: -0.035em; }
.h2--spaced { margin-bottom: 42px; }
.h2--spaced-tight { margin-bottom: 40px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
}
.split--center { align-items: center; }
.split--end { align-items: end; }
.split--reverse-ratio { grid-template-columns: 0.95fr 1.05fr; }

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-3--spaced { margin-top: 48px; }
#demands .grid-3 { gap: 26px; }

.prose {
  font-size: 18px;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 50ch;
  color: var(--body);
  text-wrap: pretty;
}
.h2 + .prose { margin-top: 24px; }
.prose--narrow,
.h2 + .prose--narrow { max-width: 44ch; margin-top: 22px; }
.prose--tight { max-width: 48ch; }

/* ------------------------------------------------------- the three demands */

.demand {
  border: var(--rule);
  border-radius: 6px;
  background: var(--card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 9px 9px 0 var(--ink);
}
.demand--yellow { background: var(--yellow); }

.demand__media {
  aspect-ratio: 3 / 2;
  border-bottom: var(--rule);
}
.demand__body {
  padding: 26px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.demand__num {
  font-family: var(--display);
  font-size: 62px;
  line-height: 0.8;
  color: var(--ink);
}
.demand__title {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.demand__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--body-alt);
  text-wrap: pretty;
}
.demand__chant {
  margin-top: auto;
  padding-top: 14px;
  border-top: 2px dashed var(--dash-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.demand--yellow .demand__text  { color: var(--on-yellow-warm); }
.demand--yellow .demand__chant { color: var(--on-yellow-warm-muted); border-top-color: var(--dash-yellow); }

/* card 1 — the four-day week calendar */
.demand__media--calendar {
  background: var(--band);
  padding: 20px 22px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
}
.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-soft);
  text-align: center;
}
.calendar__blocks {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar__blocks > div {
  background: var(--ink);
  border-radius: 3px;
}
.calendar__blocks > .is-off { background: var(--red); }

/* card 2 — the siesta */
.demand__media--night {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.moon, .moon__shadow {
  position: absolute;
  top: 16%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
}
.moon { left: 12%; background: var(--yellow); }
.moon__shadow { left: 26%; background: var(--ink); }
.zzz {
  position: absolute;
  right: 10%;
  top: 14%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  font-family: var(--display);
}
.zzz__s { font-size: 15px; color: var(--red); }
.zzz__m { font-size: 21px; color: var(--yellow); margin-left: 10px; }
.zzz__l { font-size: 28px; color: var(--card);   margin-left: 22px; }
.blankets {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 0 18px;
}
.blanket { height: 12px; border-radius: 999px; }
.blanket--blue   { background: var(--blue);   margin: 0 14% 0 8%; }
.blanket--red    { background: var(--red);    margin: 0 8% 0 18%; }
.blanket--yellow { background: var(--yellow); margin: 0 22% 0 12%; }

/* card 3 — the Friday cut-off */
.demand__media--chart {
  position: relative;
  background: var(--band);
  padding: 20px 22px 18px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.chart__cutoff {
  position: absolute;
  left: 0;
  right: 0;
  top: 46%;
  border-top: 3px dashed var(--red);
}
.chart__time {
  position: absolute;
  right: 12px;
  top: calc(46% - 22px);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--red-link);
}
.chart__bar {
  flex: 1;
  height: 72%;
  background: var(--ink);
  border-radius: 3px 3px 0 0;
}
.chart__bar--short { height: 54%; background: var(--blue); }

/* ------------------------------------------------------- the Monday problem */

.callout-tilt {
  display: inline-block;
  margin: 28px 0 0;
  padding: 14px 20px;
  border: var(--rule);
  background: var(--blue);
  color: var(--white);
  transform: rotate(-1.5deg);
  font-family: var(--display);
  font-size: 17px;
  text-transform: uppercase;
}

.card {
  border: var(--rule);
  border-radius: 6px;
  background: var(--card);
  padding: 24px;
}
.card--shadow { box-shadow: 9px 9px 0 var(--ink); }

.meters {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.meter {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
}
.meter__name {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}
.meter__track {
  height: 26px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: oklch(0.9 0.02 85);
  overflow: hidden;
}
.meter__fill { height: 100%; }
.meter__fill--red    { background: var(--red); }
.meter__fill--yellow { background: var(--yellow); }

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tile {
  border: var(--rule);
  border-radius: 6px;
  background: var(--card);
  padding: 18px 16px;
}
.tile--red    { background: var(--red); color: var(--white); }
.tile--yellow { background: var(--yellow); }
.tile__value {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
}
.tile__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

.pullquote {
  border: var(--rule);
  border-radius: 6px;
  background: var(--card);
  padding: 20px 22px;
}
.pullquote p {
  font-size: 16px;
  line-height: 1.5;
  font-style: italic;
  color: oklch(0.3 0.02 60);
}
.pullquote cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* ------------------------------------------------------ the siesta solution */

.prescription {
  border: var(--rule);
  border-radius: 6px;
  background: var(--yellow);
  padding: 26px 24px;
  box-shadow: 10px 10px 0 var(--ink);
}
.prescription__time {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 12px;
  font-family: var(--display);
}
.prescription__from { font-size: 64px; line-height: 0.85; letter-spacing: -0.03em; }
.prescription__to   { font-size: 28px; }
.prescription__text {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--on-yellow);
}

.listcard {
  border: var(--rule);
  border-radius: 6px;
  background: var(--card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.listcard--red    { box-shadow: 9px 9px 0 var(--red); }
.listcard--yellow { box-shadow: 9px 9px 0 var(--yellow); }
.listcard--blue   { box-shadow: 9px 9px 0 var(--blue); }
.listcard__head {
  background: var(--ink);
  padding: 18px 22px;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.listcard__head h3 {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
}
.dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: none;
}
.dot--red    { background: var(--red); }
.dot--yellow { background: var(--yellow); }
.dot--blue   { background: var(--blue); }
.listcard__items {
  list-style: none;
  margin: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  line-height: 1.45;
  flex: 1;
}
.listcard__items li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
}
.listcard__items strong { color: var(--red); }

.objection {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  padding: 22px 26px;
  border: var(--rule);
  border-radius: 6px;
  background: var(--band);
}
.objection__label {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
}
.objection__text {
  font-size: 17px;
  line-height: 1.5;
  flex: 1;
  min-width: 260px;
  color: var(--body);
}

/* ---------------------------------------------------------- the golden hour */

.schedule {
  border: var(--rule);
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  padding: 26px 24px;
  box-shadow: 10px 10px 0 var(--ink);
}
.schedule__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  font-size: 16px;
}
.schedule__row {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
}
.schedule__row strong { font-family: var(--mono); }
.schedule__row--final {
  border-top: 2px dashed var(--dash-blue);
  padding-top: 12px;
}
.schedule__row--final strong { color: var(--yellow); }
.schedule__row--final span {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 18px;
}

.outcome {
  border: var(--rule);
  border-radius: 6px;
  background: var(--card);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 9px 9px 0 var(--ink);
}
.outcome--yellow { background: var(--yellow); }
.outcome__icon {
  font-family: var(--display);
  font-size: 44px;
  line-height: 0.85;
  color: var(--ink);
}
.outcome__title {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}
.outcome__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--body-alt);
  text-wrap: pretty;
}
.outcome__foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 2px dashed var(--dash-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.outcome--yellow .outcome__text { color: var(--on-yellow); }
.outcome--yellow .outcome__foot { color: var(--on-yellow-muted); border-top-color: var(--dash-yellow); }

.cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding: 26px 28px;
  border: var(--rule);
  border-radius: 6px;
  background: var(--ink);
  color: var(--cream);
}
.cta-bar__text {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 34ch;
}

/* -------------------------------------------------------------- promises */

.promise__headline {
  font-family: var(--display);
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.promise__body {
  font-size: 17px;
  line-height: 1.6;
  max-width: 62ch;
  margin: 26px auto 0;
  color: var(--on-dark);
  text-wrap: pretty;
}

/* ------------------------------------------------------------- worldwide */

.factgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin: 34px 0 0;
  border: var(--rule);
  background: var(--ink);
}
.fact {
  background: var(--card);
  padding: 20px 18px;
}
.fact__value {
  font-family: var(--display);
  font-size: 30px;
}
.fact__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.globe-wrap { position: relative; }
.globe-panel {
  position: relative;
  border: var(--rule);
  border-radius: 4px;
  background: var(--ink);
  aspect-ratio: 16 / 11;
  overflow: hidden;
  box-shadow: 14px 14px 0 var(--yellow);
}
.globe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--card);
  background: repeating-linear-gradient(0deg, var(--ink-soft) 0 15px, var(--ink) 15px 30px);
  overflow: hidden;
}
.globe__axis {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ink-line);
  transform: translateX(-50%);
}
.pin {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--ink);
}
.pin--1 { left: 22%; top: 30%; width: 14px; height: 14px; background: var(--red); }
.pin--2 { left: 40%; top: 58%; width: 20px; height: 20px; background: var(--yellow); }
.pin--3 { left: 62%; top: 26%; width: 16px; height: 16px; background: var(--blue); }
.pin--4 { left: 74%; top: 62%; width: 12px; height: 12px; background: var(--red); }
.pin--dot { border: none; background: var(--card); }
.pin--5 { left: 52%; top: 44%; width: 10px; height: 10px; }
.pin--6 { left: 30%; top: 70%; width: 10px; height: 10px; }
.globe-panel__label {
  position: absolute;
  left: 18px;
  top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}
.globe-tag {
  position: absolute;
  bottom: -26px;
  left: -18px;
  background: var(--blue);
  color: var(--white);
  border: var(--rule);
  padding: 12px 18px;
  transform: rotate(-4deg);
  font-family: var(--display);
  font-size: 15px;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------- voices */

.voice {
  background: var(--card);
  border: var(--rule);
  border-radius: 6px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.voice--red { background: var(--red); color: var(--white); }
.voice blockquote {
  font-size: 19px;
  line-height: 1.45;
  font-weight: 500;
  text-wrap: pretty;
}
.voice figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.avatar {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  border: var(--rule);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 15px;
}
.avatar--blue   { background: var(--blue);   color: var(--white); }
.avatar--yellow { background: var(--yellow); color: var(--ink); }
.avatar--red    { background: var(--red);    color: var(--white); }
.voice__name { font-weight: 700; font-size: 15px; }
.voice__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.voice--red .voice__role { color: var(--on-red-muted); }

/* -------------------------------------------------------------- timeline */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  background: var(--ink);
  border: var(--rule);
}
.timeline li {
  background: var(--card);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: baseline;
}
.timeline__year {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--red);
}
.timeline__text { font-size: 17px; line-height: 1.5; }

/* ---------------------------------------------------------------- pledge */

.pledge {
  padding: 88px 28px;
  background: var(--red);
  color: var(--white);
  border-bottom: var(--rule);
}
.pledge__inner {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 52px;
  align-items: start;
}
.pledge__lede {
  font-size: 18px;
  line-height: 1.55;
  margin: 22px 0 0;
  max-width: 42ch;
  color: oklch(0.94 0.04 30);
  text-wrap: pretty;
}
.pledge__meta {
  display: flex;
  gap: 26px;
  margin: 30px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-red-meta);
}
.pledge__progress {
  margin: 14px 0 0;
  height: 16px;
  border: var(--rule);
  background: var(--white);
  border-radius: 999px;
  overflow: hidden;
}
.pledge__progress-fill {
  height: 100%;
  background: var(--yellow);
  transition: width 0.4s ease;
}

.pledge__card {
  background: var(--card);
  color: var(--ink);
  border: var(--rule);
  border-radius: 6px;
  padding: 28px 26px;
  box-shadow: 10px 10px 0 var(--ink);
}
.pledge__done {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding: 18px 0;
}
.pledge__done[hidden] { display: none; }
.pledge__done-mark {
  font-family: var(--display);
  font-size: 52px;
  line-height: 0.9;
  color: var(--red);
}
.pledge__done-title {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
}
.pledge__done-text {
  font-size: 15px;
  line-height: 1.5;
  color: oklch(0.4 0.02 60);
}

.pledge__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pledge__form[hidden] { display: none; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: oklch(1 0 0);
  color: var(--ink);
}
.field textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}
.field input:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 1px;
}
.pledge__promises {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}
.pledge__promises div { display: flex; gap: 10px; }
.pledge__promises strong { color: var(--red); }

/* Honeypot — off-screen rather than display:none, which some bots skip. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pledge__error {
  margin: 0;
  padding: 10px 12px;
  border: 2px solid var(--red);
  border-radius: 4px;
  background: oklch(0.95 0.04 30);
  color: oklch(0.42 0.16 30);
  font-size: 14px;
  line-height: 1.4;
}
.pledge__error[hidden] { display: none; }

.btn--sign {
  margin-top: 4px;
  padding: 15px 20px;
  border: none;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn--sign:hover { background: var(--red); }
.btn--sign:disabled {
  opacity: 0.6;
  cursor: progress;
  background: var(--ink);
}

/* -------------------------------------------------------------- petition */

.section--yellow { background: var(--yellow); }
.eyebrow--paper { background: var(--card); }

/* Slim call-out dropped under the three demands. */
.petition-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 20px 26px;
  border: var(--rule);
  border-radius: 6px;
  background: var(--ink);
  color: var(--cream);
}
.petition-strip__text {
  font-family: var(--display);
  font-size: clamp(16px, 1.9vw, 22px);
  line-height: 1.15;
  text-transform: uppercase;
  max-width: 46ch;
}

.petition__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.45;
  color: var(--on-yellow);
}
.petition__points div {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
}
.petition__points strong {
  font-family: var(--display);
  color: var(--red);
}

.btn--petition {
  margin-top: 28px;
  padding: 18px 30px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 16px;
  letter-spacing: 0.05em;
  box-shadow: 6px 6px 0 var(--red);
}
.btn--petition:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}
/* Hero variant: sits beside the two existing buttons without shouting. */
.btn--petition-ghost { border-style: dashed; }

.petition__note {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-yellow-muted);
}

/* Clipboard illustration */
.petition-sheet {
  position: relative;
  padding-top: 18px;
  transform: rotate(-1.5deg);
}
.petition-sheet__clip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 34px;
  border: var(--rule);
  border-radius: 6px;
  background: var(--blue);
  z-index: 2;
}
.petition-sheet__paper {
  border: var(--rule);
  border-radius: 4px;
  background: var(--card);
  padding: 34px 28px 26px;
  box-shadow: 12px 12px 0 var(--ink);
}
.petition-sheet__head {
  padding-bottom: 16px;
  border-bottom: 3px solid var(--ink);
}
.petition-sheet__title {
  font-family: var(--display);
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.petition-sheet__sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.petition-sheet__rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
}
.sig {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 0 6px;
  border-bottom: 2px dashed var(--dash-soft);
}
.sig__no {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.sig svg {
  width: 100%;
  height: 24px;
  display: block;
}
.sig svg path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
  stroke-linecap: round;
}
.sig:nth-child(even) svg path { stroke: oklch(0.38 0.06 260); }
.petition-sheet__foot {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* -------------------------------------------------------------- comments */

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px;
  border: var(--rule);
  border-radius: 6px;
  background: var(--card);
  box-shadow: 10px 10px 0 var(--ink);
}
.comment-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comment-form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.comment-form__count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.comment-form .btn--sign { margin-top: 0; }

.comment-list__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 54px 0 22px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--dash);
}
.comment-list__title {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.comment-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}

.comment {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 22px 20px;
  border: var(--rule);
  border-radius: 6px;
  background: var(--card);
}
.comment--accent { background: var(--yellow); }
.comment__body {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
  overflow-wrap: anywhere;   /* a pasted URL must not widen the card */
}
.comment__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.comment__name { font-weight: 700; font-size: 15px; }
.comment__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.comment--accent .comment__meta { color: var(--on-yellow-muted); }

.comment-empty {
  grid-column: 1 / -1;
  padding: 26px 22px;
  border: 2px dashed var(--dash);
  border-radius: 6px;
  font-size: 16px;
  color: var(--muted);
  text-align: center;
}

/* ---------------------------------------------------------------- footer */

.site-footer {
  padding: 54px 28px;
  background: var(--ink);
  color: var(--on-dark-link);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer__about { max-width: 40ch; }
.site-footer__name {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--cream);
}
.site-footer__about p {
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
  color: var(--on-dark-soft);
}
.site-footer__cols {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  font-size: 14px;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--on-dark-soft);
}
.site-footer a { color: var(--on-dark-link); }
.site-footer a:hover { color: var(--yellow); }

/* -------------------------------------------------------- cookie consent */

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;               /* above the sticky header at 50 */
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 22px;
  padding: 16px 20px;
  border: var(--rule);
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 7px 7px 0 var(--red);
  transform: translateY(140%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.cookie-bar.is-in { transform: translateY(0); }
.cookie-bar[hidden] { display: none; }

.cookie-bar__text {
  flex: 1 1 340px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  max-width: 72ch;
  text-wrap: pretty;
}
.cookie-bar__text strong {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cookie-bar__actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.btn--cookie-yes,
.btn--cookie-no {
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
/* Both choices carry the same visual weight — a decline that looks like an
   afterthought is not a free choice. */
.btn--cookie-yes {
  border: 2px solid var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}
.btn--cookie-yes:hover { background: var(--white); border-color: var(--white); }
.btn--cookie-no {
  border: 2px solid var(--cream);
  background: transparent;
  color: var(--cream);
}
.btn--cookie-no:hover { background: var(--cream); color: var(--ink); }
.btn--cookie-yes:focus-visible,
.btn--cookie-no:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.cookie-reopen {
  margin: 14px 0 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cookie-reopen:hover { color: var(--yellow); }

@media (max-width: 560px) {
  .cookie-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px 16px;
    box-shadow: 5px 5px 0 var(--red);
  }
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__actions .btn { flex: 1; text-align: center; }
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
  .hero__inner,
  .split,
  .split--reverse-ratio,
  .pledge__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero__art {
    max-width: 440px;
    width: 100%;
  }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .globe-tag { left: 0; }
}

@media (max-width: 760px) {
  .section { padding: 56px 20px; }
  .section--dark { padding: 52px 20px; }
  .hero { padding: 48px 20px 0; }
  .pledge { padding: 60px 20px; }
  .site-header { padding: 12px 18px; }
  .site-footer { padding: 40px 20px; }

  .grid-3,
  .tiles,
  .factgrid { grid-template-columns: 1fr; }

  .hero__stats { gap: 24px; }
  .marquee__track { font-size: 18px; }
  .cta-bar { padding: 22px 20px; }
  .objection { padding: 20px; }
  .timeline li { grid-template-columns: 1fr; gap: 8px; }
  .globe-tag {
    position: static;
    display: inline-block;
    margin-top: 18px;
    transform: rotate(-2deg);
  }
  .globe-panel { box-shadow: 8px 8px 0 var(--yellow); }
  .demand,
  .outcome,
  .card--shadow,
  .prescription,
  .schedule,
  .pledge__card { box-shadow: 6px 6px 0 var(--ink); }
  .listcard--red    { box-shadow: 6px 6px 0 var(--red); }
  .listcard--yellow { box-shadow: 6px 6px 0 var(--yellow); }
  .listcard--blue   { box-shadow: 6px 6px 0 var(--blue); }
  .poster { box-shadow: 8px 8px 0 var(--ink); }
}

/* Header nav: five items plus the brand need real room. Tighten first, then
   drop the text links and keep only the call to action. */
@media (max-width: 980px) {
  .site-nav { gap: 16px; font-size: 12px; }
}
@media (max-width: 860px) {
  .site-nav { gap: 0; }
  .site-nav a:not(.btn) { display: none; }
}

@media (max-width: 560px) {
  .brand__name { font-size: 13px; }
  .badge-bob {
    width: 96px;
    height: 96px;
    font-size: 12px;
    top: -22px;
  }
  .hero__actions .btn { flex: 1; text-align: center; }
  .comment-form__row { grid-template-columns: 1fr; }
  .petition-sheet { transform: none; }
  /* .btn is nowrap; on a narrow screen this button's min-content would push
     its grid column wider than the viewport, so let it wrap. */
  .btn--petition {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    white-space: normal;
  }
  .comment-form { padding: 22px 18px; box-shadow: 6px 6px 0 var(--ink); }
  .comment-form__foot { flex-direction: column; align-items: stretch; }
  .prescription__from { font-size: 48px; }
  .meter { grid-template-columns: 72px 1fr; }
  /* Same reason as .btn--petition above: long labels must not set a floor
     on the layout at phone widths. */
  .hero__actions .btn,
  .petition-strip .btn,
  .cta-bar .btn { white-space: normal; }
}

/* ------------------------------------------------------------- utilities
   Kept last so a colour utility beats the component default it overrides. */

.accent-red  { color: var(--red); }
.accent-blue { color: var(--blue); }

/* Very narrow phones (≤345px). The hero H1's 56px clamp floor makes
   "DEMANDS." about 300px wide, which together with the side padding sets a
   minimum page width wider than the screen. Cut off just below 360px so the
   narrowest mainstream phone keeps its full-size type. */
@media (max-width: 359px) {
  .section,
  .hero,
  .pledge,
  .site-footer { padding-left: 16px; padding-right: 16px; }
  .hero__title { font-size: clamp(38px, 12vw, 132px); }
  .objection__text { min-width: 0; }
  /* Brand wordmark plus the CTA no longer fit; the III disc carries it. */
  .site-header { padding-left: 16px; padding-right: 16px; }
  .brand__name { display: none; }
  .site-nav .btn--pill-red { padding: 9px 14px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track,
  .badge-bob { animation: none; }
  .cookie-bar { transition: none; }
  .pledge__progress-fill { transition: none; }
}
