/* dontsurveil.me — black, white, red. One file. No JS. */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }

:root {
  --paper:     #ffffff;
  --paper-2:   #f4f2ed;   /* subtle off-white */
  --pale:      #fbe5e8;   /* very pale red, for the warning card */
  --red:       #c8102e;   /* PSA red */
  --red-2:     #8a0a1f;   /* deeper red */
  --ink:       #0a0a0a;
  --ink-2:     #2a2a2a;
  --ink-soft:  #5a5854;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono:  ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  font-feature-settings: "kern", "liga", "onum";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
}

a { color: inherit; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px; }
a:hover { text-decoration-thickness: 3px; }

::selection { background: var(--red); color: var(--paper); }

/* ---- Skip link ---- */
.skip {
  position: absolute; left: -9999px; top: 0;
  padding: 0.5em 1em; background: var(--red); color: var(--paper);
  font-family: var(--sans); font-size: 0.9rem;
}
.skip:focus { left: 0; z-index: 100; }

/* ---- Watermark bar (top left): logo + "01" notice number ---- */
.watermark-bar {
  position: fixed;
  top: 1.2rem;
  left: 1.4rem;
  z-index: 50;
  display: flex;
  gap: 0.5rem;
}
.watermark {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  background: var(--paper);
  padding: 0.55em 0.9em 0.55em 0.7em;
  border: 1.5px solid var(--ink);
}
.watermark:hover { color: var(--red); text-decoration: none; }
.watermark--no {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55em 0.9em;
  color: var(--ink);
}
.watermark--no:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.eye {
  display: block;
  flex-shrink: 0;
  overflow: visible;
}
.eye__white {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 1.8;
}
.eye__pupil {
  fill: var(--red);
  transition: transform 70ms ease-out;
  transform-box: fill-box;
  transform-origin: center;
}
@media (prefers-reduced-motion: reduce) { .eye__pupil { transition: none; } }

/* Watermark hover — outline box turns dark, eye stays white, pupil flashes like a recording light */
.watermark:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.watermark:hover .eye__white {
  fill: var(--paper);
  stroke: var(--paper);
}
.watermark:hover .eye__pupil {
  animation: rec-flash 1s ease-in-out infinite;
}
@keyframes rec-flash {
  0%, 50%, 100% { opacity: 1; }
  60%, 80%      { opacity: 0; }
}
/* Footer logo hover — no positional shift, just text color + pupil flash */
.site-footer__logo:hover { color: var(--red); }
.site-footer__logo:hover .eye__pupil {
  animation: rec-flash 1s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .watermark:hover .eye__pupil,
  .site-footer__logo:hover .eye__pupil { animation: none; }
}

/* ---- Countdown ---- */
.countdown {
  display: flex;
  gap: clamp(1.6rem, 4vw, 4.5rem);
  margin: 3rem 0 2.5rem;
  align-items: flex-end;
  flex-wrap: wrap;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.countdown__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.95;
  color: var(--paper);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--paper);
  margin-top: 0.6rem;
  opacity: 0.85;
}

/* ---- Consequence chapter heads ---- */
.chapter {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.chapter__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.9;
  color: var(--red);
  font-weight: 400;
}
.chapter__label {
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--ink-soft);
}

/* Pulse used elsewhere (status badge, etc.) */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(1.15); }
}

/* Breadcrumb bar (on PSA pages) — pair of buttons top right */
.crumb-bar {
  position: fixed;
  top: 1.2rem;
  right: 1.4rem;
  z-index: 50;
  display: flex;
  gap: 0.5rem;
}

/* ---- Mobile hamburger nav ---- */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  cursor: pointer;
  padding: 0;
  transition: background 120ms ease;
}
.nav-toggle:hover { background: var(--ink); }
.nav-toggle__icon {
  display: block;
  width: 1.1rem;
  height: 0.85rem;
  position: relative;
}
.nav-toggle__icon span {
  display: block;
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 180ms ease, top 220ms ease, background 120ms ease;
}
.nav-toggle:hover .nav-toggle__icon span { background: var(--paper); }
.nav-toggle__icon span:nth-child(1) { top: 0; }
.nav-toggle__icon span:nth-child(2) { top: calc(50% - 1px); }
.nav-toggle__icon span:nth-child(3) { top: calc(100% - 2px); }
.nav-toggle[aria-expanded="true"] { background: var(--ink); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span { background: var(--paper); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 49;
  display: none !important;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 7rem 2rem 4rem;
}
.mobile-nav.is-open { display: flex !important; }
.mobile-nav a {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  padding: 1.1rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:focus-visible { color: var(--red); }
.mobile-nav a small {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.55;
  font-weight: 700;
}

@media (max-width: 760px) {
  .crumb-bar > .crumb { display: none; }
  .nav-toggle { display: inline-flex; }
}

.crumb {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  font-weight: 700;
  padding: 0.55em 0.9em;
  border: 1.5px solid var(--ink);
  transition: background 120ms ease, color 120ms ease;
}
.crumb:hover {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}
.crumb--accent {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
}
.crumb--accent:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.crumb--active,
.crumb[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  cursor: default;
}
.crumb--active:hover,
.crumb[aria-current="page"]:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ---- Image placeholder (full-bleed, zebra-stripe grey) ---- */
.section-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  background: repeating-linear-gradient(
    0deg,
    #e9e9e9,
    #e9e9e9 22px,
    #f3f3f3 22px,
    #f3f3f3 44px
  );
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
}
.section-image > span {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: var(--paper);
  padding: 0.6em 1.1em;
  border: 1px solid var(--ink-soft);
}
.section-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Variant for the dark "Sources / Receipts" panel — darker zebra */
.section-image--on-dark {
  background: repeating-linear-gradient(
    0deg,
    #1a1a1a, #1a1a1a 22px,
    #262626 22px, #262626 44px
  );
  border-color: var(--paper);
}
.section-image--on-dark > span {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--paper);
}

/* ---- Primary CTA (big MP email button at top of action section) ---- */
.action-primary {
  margin: 2.5rem 0 3.5rem;
  padding: 2.5rem 2rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem 3rem;
  align-items: center;
}
.action-primary__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.action-primary__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  font-weight: 700;
}
.action-primary__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: 0;
  font-weight: 400;
  text-wrap: balance;
  color: var(--ink);
}
.action-primary__body {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0.5rem 0 0;
  max-width: 60ch;
}
.action-primary__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1em 1.6em;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  justify-self: end;
  align-self: center;
  white-space: nowrap;
  transition: background 120ms ease, color 120ms ease;
}
.action-primary__cta:hover {
  background: var(--red);
  border-color: var(--red);
  text-decoration: none;
}
@media (max-width: 760px) {
  .action-primary { grid-template-columns: 1fr; }
  .action-primary__cta { justify-self: start; }
}

/* ---- PSA card countdown (D · H · M · S, dynamic) — sits below the summary, divider above ---- */
.psa-card__countdown {
  grid-column: 3 / 4;
  display: flex;
  gap: 1.2em;
  flex-wrap: wrap;
  margin: 1.4rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--red);
  align-items: baseline;
}
.psa-card__countdown-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--red);
  align-self: center;
  margin-right: 0.4em;
}
.psa-card__countdown-unit {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}
.psa-card__countdown b {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: var(--red);
  letter-spacing: -0.01em;
  line-height: 1;
}
.psa-card:hover .psa-card__countdown,
.psa-card:hover .psa-card__countdown b,
.psa-card:hover .psa-card__countdown-label {
  color: var(--paper);
  border-top-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 820px) {
  .psa-card__countdown { grid-column: 2 / -1; }
}
@media (max-width: 480px) {
  .psa-card__countdown { grid-column: auto; }
}

/* ---- Section primitive ---- */
.section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7rem 6vw;
  position: relative;
}
.section--short { min-height: 56vh; }
.section--tall  { min-height: 110vh; }
.section--auto  { min-height: auto; padding-top: 8rem; padding-bottom: 8rem; }
.section__inner { width: 100%; max-width: 1400px; }

.bg-white  { background: var(--paper); color: var(--ink); }
.bg-off    { background: var(--paper-2); color: var(--ink); }
.bg-pale   { background: var(--pale); color: var(--ink); }
.bg-red    { background: var(--red); color: var(--paper); }
.bg-red-2  { background: var(--red-2); color: var(--paper); }
.bg-black  { background: var(--ink); color: var(--paper); }

.bg-red ::selection, .bg-red-2 ::selection, .bg-black ::selection {
  background: var(--paper); color: var(--red);
}

/* ---- Typography ---- */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 2.5rem;
}
.bg-red .eyebrow, .bg-red-2 .eyebrow, .bg-black .eyebrow {
  color: var(--paper);
}
.eyebrow--red  { color: var(--red); }
.eyebrow--rule {
  display: block;
  padding-bottom: 0.7em;
  border-bottom: 2px solid var(--ink);
  max-width: 50ch;
}
.eyebrow--nowrap { white-space: nowrap; }

/* Big display number — used as a header on PSA pages */
.no-display {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.85;
  color: var(--red);
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  display: block;
}
.bg-red .eyebrow--rule, .bg-red-2 .eyebrow--rule, .bg-black .eyebrow--rule {
  border-color: var(--paper);
}

.headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 6.5vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 24ch;
  text-wrap: balance;
}
.headline em { font-style: italic; color: var(--red); }
.bg-red .headline em, .bg-red-2 .headline em, .bg-black .headline em { color: var(--paper); }

.kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0;
  max-width: 28ch;
  font-weight: 400;
  text-wrap: balance;
}
.kicker em { color: var(--red); }

.massive {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--paper);
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.5;
  max-width: 64ch;
  margin: 2rem 0 0;
  color: var(--ink-2);
  text-wrap: pretty;
}
.lede--wide   { max-width: 78ch; }
.lede--narrow { max-width: 44ch; }
.bg-red .lede, .bg-red-2 .lede, .bg-black .lede { color: var(--paper); opacity: 0.92; }

.line {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  line-height: 1.28;
  margin: 0 0 1.2em;
  max-width: 32ch;
  font-weight: 400;
  text-wrap: balance;
}
.line:last-child { margin-bottom: 0; }
.line em { font-style: italic; color: var(--red); }
.bg-red .line em, .bg-red-2 .line em { color: var(--paper); font-style: italic; }
.line--wide { max-width: 42ch; }
.line--small {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  max-width: 52ch;
  color: var(--ink-soft);
}
.bg-red .line--small, .bg-red-2 .line--small { color: var(--paper); opacity: 0.85; }

/* ---- Verdict card ---- */
.verdict {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
  margin-top: 2rem;
}
.verdict__col { padding: 3rem 2.4rem; background: var(--paper); }
.verdict__col--alt { background: var(--pale); }
.verdict__label {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.verdict__col--alt .verdict__label { color: var(--red); }
.verdict__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 2rem;
  text-wrap: balance;
}
.verdict__col--alt .verdict__title { color: var(--ink); }
.verdict__list { list-style: none; padding: 0; margin: 0; }
.verdict__list li {
  padding: 1.1rem 0;
  border-top: 1px solid var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
}
.verdict__col--alt .verdict__list li { border-color: var(--red-2); }

/* ---- Chorus ---- */
.chorus { display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid var(--ink); }
.chorus__row {
  display: grid;
  grid-template-columns: 15ch 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--ink);
}
.chorus__name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  letter-spacing: -0.005em;
  color: var(--red);
  text-transform: uppercase;
}
.chorus__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  line-height: 1.3;
  margin: 0;
  text-wrap: balance;
}
.chorus__attr {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .chorus__row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .chorus__attr { text-align: left; white-space: normal; }
}

/* ---- Timeline ---- */
.timeline {
  margin-top: 2rem;
  border-top: 2px solid var(--ink);
}
.tl__row {
  display: grid;
  grid-template-columns: 11ch 1fr;
  gap: 2.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--ink);
  align-items: baseline;
}
.tl__date {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tl__event {
  font-family: var(--serif);
  font-size: clamp(0.88rem, 1.1vw, 1.02rem);
  line-height: 1.45;
  margin: 0;
  color: var(--ink-2);
}
.tl__event em { font-style: italic; }
.tl__event strong { font-weight: 600; color: var(--ink); }

.tl__row--today {
  background: transparent;
  align-items: center;
  padding: 2rem 0;
}
.tl__row--today .tl__date  { color: var(--red); font-size: 1rem; font-weight: 700; }
.tl__row--today .tl__event { color: var(--red); font-style: normal; font-weight: 500; font-size: clamp(0.95rem, 1.3vw, 1.1rem); }
.tl__row--today .tl__event em { font-style: normal; font-weight: 600; }

.tl__row--next  { background: transparent; }
.tl__row--next  .tl__date  { color: var(--red); font-weight: 700; }
.tl__row--next  .tl__event { font-style: normal; }
.tl__row--next  .tl__event em { font-style: italic; }

@media (max-width: 640px) {
  .tl__row { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* ---- CTA ---- */
.cta-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 1.6rem; margin-top: 1rem; }
.cta {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  text-decoration: none;
  background: var(--red);
  color: var(--paper);
  padding: 1.3rem 2.4rem;
  letter-spacing: -0.005em;
  transition: background 120ms ease, transform 120ms ease;
}
.cta:hover {
  background: var(--ink);
  text-decoration: none;
  transform: translateY(-2px);
}
.cta__sub {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* ---- Status badge ---- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--mono);
  font-size: 0.82rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.6em 1em;
  border: 1.5px solid var(--ink);
  margin-bottom: 2rem;
}
.status-badge .dot {
  width: 0.6em; height: 0.6em;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2.6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .status-badge .dot { animation: none; } }

/* ---- PSA grid (home page) ---- */
.psa-list { display: grid; gap: 1.5rem; margin-top: 3rem; }
.psa-card {
  display: grid;
  grid-template-columns: 14ch 1fr auto;
  gap: 2rem 2.5rem;
  align-items: start;
  padding: 2.4rem 2rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  text-decoration: none;
  color: inherit;
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}
.psa-card__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}
.psa-card:hover {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transform: translateY(-2px);
}
.psa-card:hover .psa-card__meta { color: var(--paper); opacity: 0.7; }
.psa-card:hover .psa-card__arrow { color: var(--paper); }
/* tag stays red on hover — red on black is the desired contrast */

.psa-card__no {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.9;
  color: var(--red);
  letter-spacing: -0.02em;
  align-self: start;
}
.psa-card:hover .psa-card__no { color: var(--red); }

.psa-card__meta {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
}
.psa-card__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-style: italic;
  font-weight: 400;
  text-wrap: balance;
}
.psa-card__sum {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.5;
  color: inherit;
  opacity: 0.85;
  margin: 0;
  max-width: 60ch;
}
.psa-card__arrow {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: center;
  background: var(--paper);
  border: 1.5px solid var(--red);
  padding: 0.7em 1.1em;
  white-space: nowrap;
  transition: background 120ms ease, color 120ms ease;
}
.psa-card:hover .psa-card__arrow {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
}
.psa-card__tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  background: var(--red);
  color: var(--paper);
  padding: 0.3em 0.7em;
  margin-bottom: 0.7em;
}
.psa-card--placeholder {
  border-style: dashed;
  border-color: var(--ink-soft);
  color: var(--ink-soft);
  pointer-events: none;
}
.psa-card--placeholder .psa-card__no { color: var(--ink-soft); opacity: 0.5; }
.psa-card--placeholder .psa-card__title { color: var(--ink-soft); }
.psa-card--placeholder .psa-card__arrow { color: var(--ink-soft); opacity: 0.4; }

/* Suggestion card — clickable, dashed, becomes solid on hover */
.psa-card--suggest {
  border-style: dashed;
  border-color: var(--ink-soft);
}
.psa-card--suggest:hover {
  border-style: solid;
  border-color: var(--paper);
}
.psa-card--suggest .psa-card__no { color: var(--ink-soft); }
.psa-card--suggest:hover .psa-card__no { color: var(--red); }

/* Vector tags (on PSA cards) */
.psa-card__vectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
  grid-column: 3 / 4;
}
.vector-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--red);
  padding: 0.25em 0.55em;
  border: 1.2px solid var(--red);
  white-space: nowrap;
}
.psa-card:hover .vector-tag {
  color: var(--paper);
  border-color: var(--paper);
}

/* Collapsible vector details (on PSA pages) */
.vector-list { margin-top: 2rem; }
.vector-detail {
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  margin-bottom: -1.5px;
  background: var(--paper);
}
.vector-detail summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 1.5rem 1.6rem 0;
  display: grid;
  grid-template-columns: 4ch 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.vector-detail summary::-webkit-details-marker { display: none; }
.vector-detail summary::marker { display: none; }
.vector-detail summary:hover .vector-detail__name { color: var(--red); }
.vector-detail__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 400;
  line-height: 1;
  align-self: center;
}
.vector-detail__head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-self: center;
}
.vector-detail__name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  transition: color 120ms ease;
}
.vector-detail__short {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.35;
  color: var(--ink);
  text-wrap: balance;
}
.vector-detail__chevron {
  width: 18px;
  height: 12px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 250ms ease;
}
.vector-detail[open] .vector-detail__chevron { transform: rotate(180deg); }
.vector-detail__body {
  padding: 0.5rem 1.5rem 2rem calc(4ch + 1.5rem);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2);
}
.vector-detail__body > * + * { margin-top: 1.5rem; }
.vector-detail__field {
  max-width: 92ch;
}
.vector-detail__field-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.vector-detail__field p {
  margin: 0;
}
.vector-detail__body a { color: var(--red); }
@media (max-width: 640px) {
  .vector-detail summary { grid-template-columns: 3ch 1fr auto; gap: 1rem; padding-right: 1rem; }
  .vector-detail__body { padding-left: 1rem; padding-right: 1rem; }
}

/* Threats page — vector entries */
.vector-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.85fr);
  gap: 0 3rem;
  padding: 3.5rem 0;
  border-top: 1px solid var(--ink);
  align-items: start;
}
.vector-entry:last-of-type { border-bottom: 1px solid var(--ink); }
.vector-entry__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.vector-entry__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--red);
  font-weight: 400;
  line-height: 0.9;
  align-self: start;
}
.vector-entry__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  margin: 0 0 0.4rem;
  line-height: 1.15;
  text-wrap: balance;
}
.vector-entry__one {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 1.5rem;
}
.vector-entry__body {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 1.5rem;
  max-width: 60ch;
}
.vector-entry__feel {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  border-left: 3px solid var(--red);
  padding-left: 1.3rem;
  margin: 0 0 2.5rem;
  max-width: 62ch;
}
.vector-entry__feel-label {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

/* __bottom is now display: contents — children become direct grid items of .vector-entry. No internal layout needed. */

/* Types of action */
.vector-entry__actions h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 1rem;
}
.vector-entry__actions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.vector-entry__actions li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.3rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-2);
}
.action-pill {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 0.35em 0.7em;
  white-space: nowrap;
  text-align: center;
  width: fit-content;
  justify-self: start;
}

/* Side panels — examples and covered-by */
.vector-entry__side {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border-left: 1px solid rgba(0,0,0,0.18);
  padding-left: 2rem;
  align-self: stretch;
}
.vector-entry__panel { /* unstyled container */ }
.vector-entry__panel h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 1.5px solid var(--ink);
}
.example-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.example-list li {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 0.7rem;
  padding-left: 1.2em;
  position: relative;
}
.example-list li:last-child { margin-bottom: 0; }
.example-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-family: var(--sans);
  font-weight: 700;
}
.example-list a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.2);
  text-underline-offset: 2px;
}
.example-list a:hover {
  color: var(--red);
  text-decoration-color: var(--red);
}
.example-list .example-list__none {
  color: var(--ink-soft);
  font-style: italic;
  font-size: 0.9rem;
  padding-left: 0;
}
.example-list .example-list__none::before { content: none; }

.covered-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.covered-list li {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.covered-list a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
  font-weight: 500;
}
.covered-list a:hover { color: var(--red); }
.covered-list em {
  color: var(--ink-soft);
  font-size: 0.88rem;
  display: block;
  margin-top: 0.2em;
}
.covered-list .covered-list__none {
  color: var(--ink-soft);
  font-style: italic;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .vector-entry { grid-template-columns: 1fr; gap: 1.5rem; }
  .vector-entry__side {
    border-left: none;
    padding-left: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.12);
  }
}
@media (max-width: 640px) {
  .vector-entry { padding: 2.5rem 0; }
  .vector-entry__actions ul { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .psa-card {
    grid-template-columns: 5ch 1fr;
    gap: 1.2rem 1.6rem;
  }
  .psa-card__arrow { display: none; }
  .psa-card__meta { grid-column: 2 / -1; }
}
@media (max-width: 480px) {
  .psa-card { grid-template-columns: 1fr; gap: 0.5rem; }
  .psa-card__no { font-size: 2.4rem; }
  .psa-card__meta { grid-column: auto; }
}

/* ---- Receipts ---- */
.receipts {
  background: var(--ink);
  color: var(--paper);
  padding: 7rem 6vw;
}
.receipts__inner { max-width: 1400px; margin: 0 auto; }
.receipts h2 {
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--paper);
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--paper);
}
.receipts__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--paper);
  opacity: 0.75;
  margin: 0 0 4.5rem;
  max-width: 78ch;
}
.receipts__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3.5rem 4.5rem;
}
.receipts__section h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.55rem;
  font-weight: 400;
  margin: 0 0 1.5rem;
  color: var(--paper);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.receipts__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.receipts__section li {
  margin-bottom: 1.7rem;
  line-height: 1.4;
}
.receipts__section li:last-child { margin-bottom: 0; }
.receipts__section a {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.1em;
  transition: color 120ms ease, border-color 120ms ease;
}
.receipts__section a:hover {
  color: var(--red);
  border-color: var(--red);
}
.receipts__source {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4em;
}

/* ---- Action grid ---- */
.action-grid__heading {
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--ink);
  margin: 5rem 0 1.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--ink);
  max-width: 32ch;
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.action-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.7rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}
.action-card:hover {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transform: translateY(-2px);
}
.action-card:hover .action-card__time { color: var(--paper); opacity: 0.65; }
.action-card:hover .action-card__arrow { color: var(--red); }
.action-card__time {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.action-card__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 0.7rem;
  text-wrap: balance;
}
.action-card__body {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1.2rem;
  color: var(--ink-2);
  flex: 1 1 auto;       /* push the arrow to the bottom */
}
.action-card:hover .action-card__body { color: var(--paper); opacity: 0.85; }
.action-card__arrow {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;     /* belt + braces: stays at the bottom */
}

/* "How to push back" — bg shift + heavier section accent */
.act-section .headline { font-size: clamp(2.6rem, 7.5vw, 6.8rem); }
.act-section .eyebrow--rule { border-bottom-width: 3px; }

/* Action stacks — cards grouped by type of action */
.action-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 820px) {
  .action-stack { grid-template-columns: 1fr; }
}
.action-stack__card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.action-stack__card .action-pill {
  margin-bottom: 1.2rem;
  align-self: flex-start;
}
.action-stack__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 1.8rem;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
}
.action-stack__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.action-stack__list > li {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.action-stack__list > li:first-child {
  border-top: none;
  padding-top: 0;
}
.action-stack__action {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 120ms ease;
}
.action-stack__action:hover {
  color: var(--red);
  text-decoration: none;
}
.action-stack__action::after {
  content: ' →';
  color: var(--red);
  font-weight: 700;
}
.action-stack__time {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.action-stack__desc {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}

/* ---- Upcoming events ---- */
.events {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
.event-card {
  display: grid;
  grid-template-columns: 14ch 1fr auto;
  gap: 2rem 2.5rem;
  align-items: center;
  padding: 2rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  text-decoration: none;
  color: inherit;
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}
.event-card:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}
.event-card__when {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 700;
  align-self: start;
  padding-top: 0.35em;
}
.event-card__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
  margin: 0 0 0.5em;
}
.event-card__desc {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.85;
  max-width: 60ch;
}
.event-card__cta {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--paper);
  border: 1.5px solid var(--red);
  padding: 0.7em 1.1em;
  white-space: nowrap;
  transition: background 120ms ease, color 120ms ease;
}
.event-card:hover .event-card__cta {
  background: var(--red);
  color: var(--paper);
}
.events__more {
  margin: 0.5rem 0 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
}
.events__more a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 1px;
}
@media (max-width: 720px) {
  .event-card { grid-template-columns: 1fr; gap: 0.8rem; }
}

/* ---- Community board ---- */
.board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem 3rem;
  margin: 3rem 0 2.5rem;
  padding: 2.5rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
}
.board__col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--ink);
}
.board__col ul { list-style: none; padding: 0; margin: 0; }
.board__col li {
  margin-bottom: 0.7rem;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.4;
}
.board__col a { color: var(--ink); text-decoration-color: rgba(0,0,0,0.25); }
.board__col a:hover { color: var(--red); }
.board__col li small {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-top: 0.2em;
}
.board__submit {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-2);
  margin: 0;
}
.board__submit a { color: var(--red); font-weight: 500; }

/* ---- Media kit ---- */
.media-kit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 3rem 0 0;
}
.media-card {
  display: block;
  padding: 1.4rem 1.3rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  text-decoration: none;
  color: inherit;
  transition: background 120ms ease, color 120ms ease;
}
.media-card:hover {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}
.media-card:hover .media-card__type { background: var(--red); color: var(--paper); border-color: var(--red); }
.media-card__type {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.25em 0.55em;
  background: var(--red);
  color: var(--paper);
  border: 1.2px solid var(--red);
  margin-bottom: 1rem;
}
.media-card:hover .media-card__type { background: var(--red); color: var(--paper); border-color: var(--red); }
.media-card__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}
.media-card__sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.media-card:hover .media-card__sub { color: var(--paper); opacity: 0.7; }

/* ---- Profile cards (media contacts) ---- */
.profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.profile {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
}
.profile__head {
  min-height: 9.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1.5px solid var(--ink);
  display: flex;
  flex-direction: column;
}
.profile__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 50%;
  margin-bottom: 0.9rem;
}
.profile__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 0.9rem;
  border: 2px solid var(--ink);
  background: var(--ink-soft);
  overflow: hidden;
  display: block;
}
.profile__photo svg { display: block; width: 100%; height: 100%; }
.profile__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.profile__role {
  font-family: var(--sans);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}
.profile__topics {
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0 0 1rem;
}
.profile__topics strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3em;
  font-weight: 700;
}
.profile__contact {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  margin: auto 0 0;
  line-height: 1.55;
}
.profile__contact a {
  color: var(--red);
  display: block;
  word-break: break-all;
}
.profile__lang {
  display: block;
  margin-top: 0.4em;
  opacity: 0.7;
}

/* ---- Impacts (How this affects you) ---- */
.impacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.impact {
  padding: 1.6rem 1.5rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
}
.impact h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  font-weight: 400;
  margin: 0 0 0.7rem;
  color: var(--red);
  line-height: 1.2;
  text-wrap: balance;
}
.impact p {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.5;
  margin: 0;
  color: var(--ink-2);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--paper);
  color: var(--ink);
  padding: 4.5rem 6vw 3rem;
  border-top: 1.5px solid var(--ink);
}
.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2.5rem 4rem;
  align-items: start;
  font-family: var(--sans);
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 44ch;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.site-footer__logo:hover { color: var(--red); text-decoration: none; }
.site-footer__brand p {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* Footer PSA link — bordered "01 | Bill C-22 Canada" tile, like the header watermark */
.footer-psa {
  display: inline-flex;
  align-items: stretch;
  margin-top: 1.4rem;
  align-self: flex-start;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  transition: background 120ms ease, color 120ms ease;
}
.footer-psa:hover {
  background: var(--ink);
  color: var(--paper);
}
.footer-psa__no {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55em 0.8em;
  border-right: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
}
.footer-psa:hover .footer-psa__no { border-right-color: var(--paper); }
.footer-psa__title {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55em 0.9em;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.footer-psa__title small {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 700;
}
.footer-psa:hover .footer-psa__title small { color: var(--paper); opacity: 0.7; }
.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.site-footer__nav a { color: var(--ink); text-decoration: none; }
.site-footer__nav a:hover { color: var(--red); }
.site-footer__bottom {
  grid-column: 1 / -1;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line, rgba(0,0,0,0.1));
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.site-footer__bottom p { margin: 0; }
/* ---- Subscribe (footer) ---- */
.subscribe h4 {
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.subscribe p {
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 0.8rem;
}
.subscribe__form {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.subscribe__input {
  flex: 1 1 12ch;
  min-width: 0;
  padding: 0.6em 0.8em;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.85rem;
}
.subscribe__input:focus {
  outline: none;
  border-color: var(--red);
}
.subscribe__btn {
  padding: 0.6em 1em;
  background: var(--red);
  color: var(--paper);
  border: 1.5px solid var(--red);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease;
}
.subscribe__btn:hover {
  background: var(--ink);
  border-color: var(--ink);
}

@media (max-width: 860px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .subscribe { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

/* ---- Prose (about page) ---- */
.prose { max-width: 68ch; font-size: 1.1rem; line-height: 1.65; }
.prose h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  text-wrap: balance;
}
.prose .prose__lede {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-2);
  font-style: italic;
  margin-bottom: 3rem;
  max-width: 56ch;
  text-wrap: balance;
}
.prose h2 {
  font-family: var(--sans);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--red);
  margin: 3rem 0 0.8rem;
}
.prose p { margin: 0 0 1.2em; }
.prose a { color: var(--red); }
.prose__list { padding-left: 1.2em; }
.prose__list li { margin-bottom: 0.5em; }

/* ---- Mobile ---- */
@media (max-width: 640px) {
  body { font-size: 18px; }
  .section { padding: 5rem 6vw; min-height: auto; }
  .section--tall, .section--short { min-height: auto; }
  .watermark { top: 1rem; left: 1rem; font-size: 0.7rem; }
  .crumb { top: 1rem; right: 1rem; font-size: 0.7rem; }
  .verdict__col { padding: 2rem 1.5rem; }
  .receipts { padding: 4rem 6vw; }
}

/* ---- Dot pagination nav (right side, vertically centered) ---- */
.dot-nav {
  position: fixed;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.dot-nav__item {
  position: relative;
  display: block;
  padding: 0.35rem;
  text-decoration: none;
  line-height: 0;
}
.dot-nav__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-soft);
  opacity: 0.35;
  transition: background 150ms ease, opacity 150ms ease, transform 150ms ease;
}
.dot-nav__item:hover .dot-nav__dot,
.dot-nav__item.is-active .dot-nav__dot {
  background: var(--red);
  opacity: 1;
  transform: scale(1.5);
}
.dot-nav__item::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 0.55rem);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  padding: 0.2em 0.4em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 130ms ease;
}
.dot-nav__item:hover::before { opacity: 1; }
@media (max-width: 980px) { .dot-nav { display: none; } }

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 46;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--ink);
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease, background 150ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--red);
  border-color: var(--red);
}
@media (max-width: 640px) {
  .back-to-top { width: 40px; height: 40px; bottom: 1rem; right: 1rem; }
}

/* Threats page — "The shift" old → new contrast */
.shift-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  max-width: 1100px;
}
.shift-col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 36ch;
}
.shift-col--new {
  justify-self: end;
}
.shift-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}
.shift-label--red { color: var(--red); }
.shift-statement {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin: 0;
  color: rgba(255,255,255,0.6);
  text-wrap: balance;
}
.shift-statement--new {
  color: var(--paper);
}
.shift-statement--new em {
  font-style: italic;
  color: var(--paper);
}
.shift-arrow {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--red);
  line-height: 1;
  align-self: center;
}

/* Threats page — vectors index */
.shift-index {
  margin-top: 4.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 2.5rem;
}
.shift-index__label {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin: 0 0 1.6rem;
}
.shift-index__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem 2.5rem;
}
.shift-index__list li {
  border-top: 1px solid rgba(255,255,255,0.12);
}
.shift-index__list a {
  display: grid;
  grid-template-columns: 3.2ch 1fr;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  text-decoration: none;
  color: var(--paper);
  transition: color 0.15s ease;
}
.shift-index__list a:hover,
.shift-index__list a:focus-visible {
  color: var(--red);
}
.shift-index__no {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 700;
}
.shift-index__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .shift-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .shift-arrow {
    transform: rotate(90deg);
    justify-self: start;
  }
  .shift-col--new { justify-self: start; }
  .shift-index__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .shift-index__list { grid-template-columns: 1fr; }
}
