

  :root {
    --bg:        #FFFFFF;
    --paper:     #F8F6F1;
    --ink:       #0D0D0C;
    --ink-2:     #2E2C2A;  /* was #4A4845 — darker for body */
    --ink-3:     #545149;  /* was #8C8A86 — MUCH darker for mono labels */
    --rule:      #D6D3CD;  /* slightly darker rules for clarity */
    --rule-lt:   #E5E2DC;

    --dot-red:   #B63728;
    --dot-amber: #D4920A;
    --dot-green: #3AA44E;

    --fl: 'DM Serif Display', Georgia, serif;    /* logo only */
    --fd: 'Instrument Serif', Georgia, serif;    /* editorial + questions + quotes */
    --fb: 'DM Sans', system-ui, sans-serif;      /* body + UI */
    --fm: 'DM Mono', 'Courier New', monospace;   /* metadata */

    --gsvg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { -webkit-text-size-adjust: 100%; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--fb);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    font-weight: 400;
    text-rendering: optimizeLegibility;
  }

  /* film grain — very subtle, matches identity */
  body::before {
    content: '';
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: var(--gsvg);
    background-size: 220px;
    opacity: .025;
    pointer-events: none;
    z-index: 999;
  }

  /* ─── Logo component (canonical) ─── */
  .acta-logo {
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
    font-family: var(--fl);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-decoration: none;
  }
  .acta-logo .wm { font-family: var(--fl); font-weight: 400; line-height: 1; }
  .acta-logo .dot {
    display: inline-block;
    background: var(--dot-red);
    flex-shrink: 0;
  }
  .acta-logo.sz-sm { font-size: 22px; }
  .acta-logo.sz-sm .dot { width: 4px; height: 4px; border-radius: 1px; margin-left: 2px; }

  .acta-logo.animated .dot { animation: dotCycle 6s ease-in-out infinite; }
  @keyframes dotCycle {
    0%, 25%   { background: var(--dot-red); }
    33%, 58%  { background: var(--dot-amber); }
    66%, 92%  { background: var(--dot-green); }
    100%      { background: var(--dot-red); }
  }
  @media (prefers-reduced-motion: reduce) {
    .acta-logo.animated .dot { animation: none; }
  }

  /* ─── Layout ─── */
  .page {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 24px;
  }  /* ─── Topbar ─── */
  .topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
  }
  .topbar-inner {
    max-width: 620px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }  .topbar-meta {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 500;
  }

  /* ─── Meta / eyebrows — one canonical style ─── */
  .meta {
    font-family: var(--fm);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-2);
    line-height: 1.6;
    font-weight: 500;
  }
  .meta strong { color: var(--ink); font-weight: 500; }

  /* ─── Header ─── */
  header.doc-head {
    padding: 40px 0 32px;
  }
  .doc-head .meta + .meta { margin-top: 4px; }
  .doc-head .meta-rule {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--ink);
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-3);
  }

  h1 {
    font-family: var(--fb);
    font-weight: 700;
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-top: 24px;
    color: var(--ink);
  }
  h1 em {
    font-family: var(--fl);
    font-weight: 400;
    font-style: normal;
    color: var(--ink);
    letter-spacing: -0.02em;
  }

  /* ─── Verdict block ─── */
  .verdict {
    margin-top: 40px;
    padding: 28px 0 32px;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
  }
  .verdict-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    font-family: var(--fm);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 28px;
    flex-wrap: wrap;
    font-weight: 500;
  }
  .verdict-head .vh-left { color: var(--ink-2); }
  .verdict-head .vh-right { color: var(--dot-red); font-weight: 600; }
  .verdict-word {
    font-family: var(--fd);
    font-weight: 400;
    font-size: 96px;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--ink);
    display: flex;
    align-items: flex-end;
    gap: 8px;
    text-transform: lowercase;
  }
  .verdict-word .dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 3.5px;
    background: var(--dot-red);
    margin-bottom: 14px;
    flex-shrink: 0;
  }
  .verdict-summary {
    margin-top: 20px;
    font-family: var(--fb);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 32ch;
  }
  .verdict-summary em {
    font-family: var(--fl);
    font-weight: 400;
    font-style: normal;
    color: var(--ink);
  }

  /* ─── Spectrum bar — the signature trademark ─── */
  .spectrum-bar-wrap {
    margin-top: 32px;
  }
  .spectrum-strip {
    height: 10px;
    display: grid;
    grid-template-columns: calc(4 / 14 * 100%) calc(2 / 14 * 100%) calc(8 / 14 * 100%);
    border-radius: 2px;
    overflow: visible;
    position: relative;
  }
  .spectrum-strip .seg-green { background: var(--dot-green); border-radius: 2px 0 0 2px; }
  .spectrum-strip .seg-amber { background: var(--dot-amber); }
  .spectrum-strip .seg-red   { background: var(--dot-red); border-radius: 0 2px 2px 0; position: relative; }
  .spectrum-strip .marker {
    position: absolute;
    /* marker sits on red segment, near the right but not at the edge */
    right: 8%;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ink);
    border: 3px solid var(--paper);
    transform: translateY(-50%);
    box-shadow: 0 0 0 1px var(--ink), 0 1px 3px rgba(0,0,0,0.2);
  }
  .spectrum-labels {
    margin-top: 14px;
    display: grid;
    grid-template-columns: calc(4 / 14 * 100%) calc(2 / 14 * 100%) calc(8 / 14 * 100%);
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
    font-weight: 500;
  }
  .spectrum-labels .lbl-green { color: var(--dot-green); padding-right: 8px; }
  .spectrum-labels .lbl-amber { color: #9A6B08; padding: 0 6px; text-align: center; }
  .spectrum-labels .lbl-red   { color: var(--dot-red); padding-left: 8px; text-align: right; }

  /* ─── Sections ─── */
  section {
    padding: 56px 0;
    border-top: 1.5px solid var(--ink);
  }
  section:first-of-type { border-top: none; }

  .sec-head {
    margin-bottom: 32px;
  }
  .sec-num {
    font-family: var(--fm);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ink);
    display: block;
    margin-bottom: 20px;
  }
  .sec-head h2 {
    font-family: var(--fb);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-top: 0;
    color: var(--ink);
  }
  .sec-head h2 em {
    font-family: var(--fl);
    font-weight: 400;
    font-style: normal;
    color: var(--ink);
    letter-spacing: -0.02em;
  }

  /* ─── Prose (body text) ─── */
  .prose p {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
  }
  .prose p:first-child { margin-top: 0; }
  .prose strong { font-weight: 600; color: var(--ink); }
  .prose em { font-family: var(--fd); font-style: italic; font-size: 1.05em; color: var(--ink); }
  /* Inline source citations — minimal */
  .cite {
    color: var(--ink-2);
    text-decoration: none;
    border-bottom: 1px solid var(--ink-2);
    font-family: var(--fm);
    font-size: 0.78em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding-bottom: 1px;
    transition: border-color .15s, color .15s;
    white-space: nowrap;
    font-weight: 500;
  }
  .cite:hover { color: var(--ink); border-color: var(--ink); }

  /* ─── Figures / key data — single style, mono, no boxes ─── */
  .figures {
    margin-top: 24px;
    border-top: 1px solid var(--ink);
  }
  .figure-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
  }
  .figure-label {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-2);
    line-height: 1.4;
    font-weight: 500;
  }
  .figure-value {
    font-family: var(--fm);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  /* ─── The three questions — simple list, no cards ─── */
  .questions {
    margin-top: 8px;
  }
  .question {
    padding: 28px 0;
    border-top: 1px solid var(--rule);
  }
  .question:first-child { border-top: none; padding-top: 0; }
  .question-num {
    font-family: var(--fm);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 10px;
    font-weight: 600;
  }
  .question-text {
    font-family: var(--fb);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .question-text em {
    font-family: var(--fl);
    font-weight: 400;
    font-style: normal;
    color: var(--ink);
  }
  .question-answer {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fb);
    font-size: 18px;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--dot-red);
    font-weight: 700;
    line-height: 1.3;
  }
  .question-answer .q-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2.5px;
    background: var(--dot-red);
    flex-shrink: 0;
  }
  .question-answer.amber { color: #8C5E08; }
  .question-answer.amber .q-dot { background: var(--dot-amber); }
  .question-answer.green { color: #227236; }
  .question-answer.green .q-dot { background: var(--dot-green); }
  .question-body {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
  }
  .question-body a.cite { margin-left: 6px; }

  /* ─── Evidence list — clean hierarchy ─── */
  .evidence-group {
    margin-top: 0;
  }
  .evidence-group + .evidence-group { margin-top: 48px; }
  .evidence-group-head {
    font-family: var(--fb);
    font-size: 17px;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--dot-red);
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--dot-red);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    line-height: 1.3;
  }
  .evidence-group-head .g-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2.5px;
    background: var(--dot-red);
    flex-shrink: 0;
  }
  .evidence-group.supporting .evidence-group-head {
    color: #227236;
    border-bottom-color: var(--dot-green);
  }
  .evidence-group.supporting .evidence-group-head .g-dot { background: var(--dot-green); }
  .evidence-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--rule);
  }
  .evidence-item:last-child { border-bottom: none; }
  .evidence-topic {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .evidence-claim {
    font-family: var(--fb);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.35;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .evidence-claim em {
    font-family: var(--fl);
    font-weight: 400;
    font-style: normal;
    color: var(--ink);
  }
  .evidence-detail {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
  }
  .evidence-sources {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
  }

  /* ─── Pull quote ─── */
  blockquote {
    margin: 56px 0;
    padding: 0;
    border: none;
  }
  blockquote p {
    font-family: var(--fd);
    font-style: italic;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  blockquote footer {
    margin-top: 16px;
    padding: 0;
    border: none;
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 500;
  }

  /* ─── Region breakdown — simple rows ─── */
  .regions .region {
    padding: 24px 0;
    border-top: 1px solid var(--rule);
  }
  .regions .region:first-child { border-top: none; padding-top: 8px; }
  .region-name {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .region-name .r-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
    background: var(--ink-2);
  }
  .region-name.stance-red .r-dot { background: var(--dot-red); }
  .region-name.stance-amber .r-dot { background: var(--dot-amber); }
  .region-name.stance-green .r-dot { background: var(--dot-green); }
  .region-stance {
    font-family: var(--fb);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.35;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .region-stance em {
    font-family: var(--fd);
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
  }
  .region-stance.stance-red   { color: var(--dot-red); }
  .region-stance.stance-amber { color: #8C5E08; }
  .region-stance.stance-green { color: #227236; }
  .region-body {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
  }
  .region-sources {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
  }

  /* ─── Publications table — mono rows ─── */
  .pubs {
    margin-top: 8px;
  }
  .pub-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid var(--rule);
    align-items: baseline;
  }
  .pub-row:first-child { border-top: none; }
  .pub-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
  }
  .pub-lean {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-top: 4px;
    font-weight: 500;
  }
  .pub-verdict {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fb);
    font-size: 15px;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--dot-red);
    white-space: nowrap;
    font-weight: 700;
  }
  .pub-verdict .v-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2.5px;
    background: var(--dot-red);
    flex-shrink: 0;
  }
  .pub-verdict.amber { color: #8C5E08; }
  .pub-verdict.amber .v-dot { background: var(--dot-amber); }
  .pub-verdict.green { color: #227236; }
  .pub-verdict.green .v-dot { background: var(--dot-green); }
  .pub-framing {
    grid-column: 1 / -1;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink);
    margin-top: 6px;
  }

  /* ─── Political lean spectrum at end of publications ─── */
  .lean-spectrum {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1.5px solid var(--ink);
  }
  .lean-spectrum-head {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 14px;
  }
  .lean-spectrum-bar {
    height: 8px;
    display: grid;
    grid-template-columns: calc(2 / 14 * 100%) calc(2 / 14 * 100%) calc(10 / 14 * 100%);
    overflow: hidden;
    border-radius: 2px;
  }
  .lean-spectrum-bar .ls-right  { background: #B8A175; }
  .lean-spectrum-bar .ls-centre { background: var(--ink-3); }
  .lean-spectrum-bar .ls-left   { background: #5D7A9A; }
  .lean-spectrum-labels {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 500;
  }
  .lean-spectrum-labels span:nth-child(2) { text-align: center; }
  .lean-spectrum-labels span:nth-child(3) { text-align: right; }

  /* ─── Footer ─── */
  footer.doc-foot {
    padding: 64px 0 80px;
    border-top: 1px solid var(--rule);
    text-align: center;
  }
  .foot-logo {
    font-family: var(--fl);
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    text-decoration: none;
    color: var(--ink);
  }
  .foot-logo .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--dot-red);
    margin-left: 3px;
  }
  .foot-tag {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink);
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }
  .foot-meta {
    margin-top: 28px;
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-2);
    line-height: 1.8;
    font-weight: 500;
  }
  .foot-links {
    margin-top: 24px;
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 24px;
    font-weight: 500;
  }
  .foot-links a {
    color: var(--ink);
    text-decoration: none;
    transition: color .15s;
  }
  .foot-links a:hover { color: var(--ink-2); }

  /* ─── Tablet (720px+) — moderate widening, larger type ─── */
  @media (min-width: 720px) {
    .page, .topbar-inner {
      max-width: 760px;
      padding-left: 40px;
      padding-right: 40px;
    }
    h1 { font-size: 56px; letter-spacing: -0.03em; }
    .verdict-word { font-size: 128px; }
    .verdict-word .dot { width: 22px; height: 22px; border-radius: 5px; margin-bottom: 20px; }
    .verdict-summary { font-size: 28px; }
    .sec-head h2 { font-size: 36px; }
    .question-text { font-size: 22px; }
    .evidence-claim, .region-stance { font-size: 19px; }
    blockquote p { font-size: 30px; }
    header.doc-head { padding: 64px 0 48px; }
    section { padding: 72px 0; }
    .spectrum-strip { height: 12px; }

    /* Key figures flow horizontally on tablet+ */
    .figures {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      margin-top: 32px;
    }
    .figure-row {
      display: flex;
      flex-direction: column-reverse;
      align-items: flex-start;
      gap: 4px;
      padding: 18px 20px 18px 0;
      border-bottom: none;
      border-right: 1px solid var(--rule-lt);
    }
    .figure-row:nth-child(3n) { border-right: none; }
    .figure-row:nth-child(n+4) { border-top: 1px solid var(--rule-lt); }
    .figure-value { font-size: 22px; }
  }

  /* ─── Desktop (1080px+) — generous horizontal space ─── */
  @media (min-width: 1080px) {
    .page, .topbar-inner {
      max-width: 1040px;
      padding-left: 64px;
      padding-right: 64px;
    }
    h1 { font-size: 68px; }
    .verdict-word { font-size: 160px; }
    .verdict-word .dot { width: 28px; height: 28px; border-radius: 6px; margin-bottom: 26px; }
    .sec-head h2 { font-size: 42px; }
    blockquote p { font-size: 34px; max-width: 28ch; }

    header.doc-head { padding: 80px 0 56px; }
    header.doc-head h1 { max-width: 20ch; }
    section { padding: 88px 0; }

    /* Verdict — spectrum bar becomes a beautiful wide band */
    .verdict { padding: 36px 0 44px; }
    .verdict-layout {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 64px;
      align-items: end;
    }
    .verdict-summary { font-size: 30px; max-width: 24ch; padding-bottom: 12px; }
    .spectrum-bar-wrap { margin-top: 40px; }

    /* Prose — body text can use the wider column comfortably up to ~68ch */
    .prose { max-width: 62ch; }

    /* Questions as three columns on desktop */
    .questions {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }
    .question {
      padding: 0;
      border-top: none;
      border-left: 1px solid var(--rule);
      padding-left: 28px;
    }
    .question:first-child { border-left: none; padding-left: 0; }

    /* Evidence as two columns on desktop */
    .evidence-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
    }
    .evidence-group + .evidence-group { margin-top: 0; }

    /* Regions as two columns on desktop */
    .regions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 48px;
    }
    .regions .region { padding: 24px 0; border-top: 1px solid var(--rule); }
    .regions .region:nth-child(1),
    .regions .region:nth-child(2) { border-top: none; padding-top: 0; }

    /* Publications table-like layout */
    .pub-row {
      grid-template-columns: 220px 180px 1fr;
      align-items: baseline;
      gap: 32px;
    }
    .pub-framing { grid-column: unset; margin-top: 0; font-size: 15px; }

    /* Key figures - all 6 in one row on desktop */
    .figures {
      grid-template-columns: repeat(6, 1fr);
    }
    .figure-row {
      border-right: 1px solid var(--rule-lt);
      border-top: none !important;
    }
    .figure-row:nth-child(n) { border-right: 1px solid var(--rule-lt); }
    .figure-row:last-child { border-right: none; }

    /* Lean spectrum wider */
    .lean-spectrum-bar { height: 10px; }
  }

  /* ─── Wide desktop (1280px+) ─── */
  @media (min-width: 1280px) {
    .page, .topbar-inner {
      max-width: 1200px;
    }
    h1 { font-size: 80px; }
    header.doc-head h1 { max-width: 18ch; }
    .verdict-word { font-size: 192px; }
    .verdict-word .dot { width: 32px; height: 32px; border-radius: 7px; margin-bottom: 32px; }
  }


/* ── Dynamic spectrum bar via CSS custom properties ─────────────────────────
   Set --spec-green, --spec-amber, --spec-red on .spectrum-bar-wrap via JS
   or inline style. Defaults to old fixed proportions if not set. */
.spectrum-strip {
  grid-template-columns: var(--spec-green, calc(4/14*100%)) var(--spec-amber, calc(2/14*100%)) var(--spec-red, calc(8/14*100%));
}
.spectrum-labels {
  grid-template-columns: var(--spec-green, calc(4/14*100%)) var(--spec-amber, calc(2/14*100%)) var(--spec-red, calc(8/14*100%));
}
.spectrum-labels .lbl-green,
.spectrum-labels .lbl-amber,
.spectrum-labels .lbl-red {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


/* ── Homepage card components ──────────────────────────── */

  :root {
    --bg:        #FFFFFF;
    --paper:     #F4F1EB;
    --paper-2:   #EDE9E1;
    --ink:       #0D0D0C;
    --ink-2:     #2E2C2A;
    --ink-3:     #545149;
    --rule:      #D6D3CD;
    --rule-lt:   #E5E2DC;

    --dot-red:   #B63728;
    --dot-amber: #D4920A;
    --dot-green: #3AA44E;

    --card-red:    #B63728;
    --card-amber:  #D4920A;
    --card-green:  #3AA44E;
    --card-dark:   #1A1816;
    --card-cream:  #F4F1EB;

    --fl: 'DM Serif Display', Georgia, serif;
    --fd: 'Instrument Serif', Georgia, serif;
    --fb: 'DM Sans', system-ui, sans-serif;
    --fm: 'DM Mono', 'Courier New', monospace;

    --gsvg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--fb);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    position: relative;
  }
  body::before {
    content:''; position: fixed; inset:-50%; width:200%; height:200%;
    background-image: var(--gsvg); background-size: 220px;
    opacity:.025; pointer-events:none; z-index:999;
  }

  a { color: inherit; text-decoration: none; }

  /* ─── Logo component ─── */
  .acta-logo {
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
    font-family: var(--fl);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: currentColor;
  }
  .acta-logo .wm { font-family: var(--fl); font-weight: 400; line-height: 1; }
  .acta-logo .dot {
    display: inline-block;
    background: var(--dot-red);
    flex-shrink: 0;
  }
  .acta-logo.sz-sm { font-size: 22px; }
  .acta-logo.sz-sm .dot { width: 4px; height: 4px; border-radius: 1px; margin-left: 2px; }
  .acta-logo.sz-md { font-size: 34px; }
  .acta-logo.sz-md .dot { width: 6px; height: 6px; border-radius: 1.5px; margin-left: 2px; }
  .acta-logo.sz-lg { font-size: 56px; }
  .acta-logo.sz-lg .dot { width: 10px; height: 10px; border-radius: 2.5px; margin-left: 4px; }

  .acta-logo.animated .dot { animation: dotCycle 6s ease-in-out infinite; }
  @keyframes dotCycle {
    0%, 25%   { background: var(--dot-red); }
    33%, 58%  { background: var(--dot-amber); }
    66%, 92%  { background: var(--dot-green); }
    100%      { background: var(--dot-red); }
  }
  @media (prefers-reduced-motion: reduce) { .acta-logo.animated .dot { animation: none; } }

  /* ─── Topbar ─── */
  .topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
  }
  .topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .topbar-meta {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 500;
  }
  .topbar-nav {
    display: flex;
    gap: 20px;
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 500;
  }
  .topbar-nav a { transition: color .15s; }
  .topbar-nav a:hover { color: var(--ink); }

  /* ─── Page ─── */
  .page { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  /* ─── Hero ─── */
  .hero {
    padding: 64px 0 40px;
  }
  .hero-eyebrow {
    font-family: var(--fm);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-eyebrow .e-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ink);
    animation: livePulse 2s ease-in-out infinite;
  }
  @keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  .hero h1 {
    font-family: var(--fb);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 14ch;
  }
  .hero h1 em {
    font-family: var(--fl);
    font-weight: 400;
    font-style: normal;
    color: var(--ink);
    letter-spacing: -0.02em;
  }
  .hero-sub {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 48ch;
  }

  /* ─── Section divider + list header ─── */
  .list-head {
    margin-top: 48px;
    padding: 20px 0 16px;
    border-top: 1.5px solid var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
  }
  .list-head-title {
    font-family: var(--fm);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
  }
  .list-head-link {
    font-family: var(--fm);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s, color .15s;
  }
  .list-head-link:hover { color: var(--ink); gap: 10px; }

  /* ─── Cards grid / swipe container ─── */
  .cards {
    padding-bottom: 80px;
  }

  /* MOBILE: horizontal-snapping swipe stack */
  .cards-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 0 20px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    scroll-padding-left: 24px;
  }
  .cards-track::-webkit-scrollbar { display: none; }

  /* ─── Card (single) ─── */
  .card {
    flex: 0 0 88%;
    max-width: 420px;
    scroll-snap-align: start;
    /* Mobile: tall card, nearly full viewport height like an IG post */
    min-height: min(620px, 78vh);
    border-radius: 20px;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(13,13,12,0.06);
  }
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,13,12,0.10);
  }
  .card:active { transform: translateY(0); }

  /* ─── Card — variant: cream (default stroked) ─── */
  .card.var-cream {
    background: var(--card-cream);
    color: var(--ink);
    border: 1px solid var(--rule);
  }
  /* ─── Card — variant: red verdict ─── */
  .card.var-red {
    background: var(--card-red);
    color: #F4F1EB;
  }
  .card.var-red .card-rule { border-color: rgba(244,241,235,0.28); }
  .card.var-red .card-verdict-word { color: #F4F1EB; }
  .card.var-red .card-meta-label { color: rgba(244,241,235,0.72); }
  .card.var-red .acta-logo .dot { background: #F4F1EB; }

  /* ─── Card — variant: green verdict ─── */
  .card.var-green {
    background: var(--card-green);
    color: #F4F1EB;
  }
  .card.var-green .card-rule { border-color: rgba(244,241,235,0.28); }
  .card.var-green .card-verdict-word { color: #F4F1EB; }
  .card.var-green .card-meta-label { color: rgba(244,241,235,0.72); }
  .card.var-green .acta-logo .dot { background: #F4F1EB; }

  /* ─── Card — variant: amber contested ─── */
  .card.var-amber {
    background: var(--card-amber);
    color: #1A1816;
  }
  .card.var-amber .card-rule { border-color: rgba(26,24,22,0.18); }
  .card.var-amber .card-verdict-word { color: #1A1816; }
  .card.var-amber .card-meta-label { color: rgba(26,24,22,0.62); }
  .card.var-amber .acta-logo .dot { background: #1A1816; }

  /* ─── Card — variant: dark / split ─── */
  .card.var-dark {
    background: var(--card-dark);
    color: #F4F1EB;
  }
  .card.var-dark .card-rule { border-color: rgba(244,241,235,0.22); }
  .card.var-dark .card-verdict-word { color: #F4F1EB; }
  .card.var-dark .card-meta-label { color: rgba(244,241,235,0.55); }
  .card.var-dark .acta-logo .dot { background: var(--dot-red); }

  /* ─── Card parts ─── */
  .card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }
  .card-tag {
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    text-align: right;
    line-height: 1.4;
  }

  /* Middle region holds verdict + question + summary, grows to fill */
  .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 16px;
  }
  /* In variant A order (question → verdict → summary), the verdict sits BELOW
     the question, so we need different margins than the original layout. */
  .card-body .card-question { margin-top: 0; }
  .card-body .card-verdict-word,
  .card-body .card-verdict-glyph,
  .card-body .card-verdict-phrase { margin-top: 20px; }
  .card-body .card-summary { margin-top: 14px; }

  .card-verdict-word {
    font-family: var(--fd);
    font-weight: 400;
    font-size: 120px;
    line-height: 0.88;
    letter-spacing: -0.04em;
    display: flex;
    align-items: flex-end;
    gap: 4px;
  }
  .card-verdict-word .v-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 3.5px;
    background: currentColor;
    margin-bottom: 16px;
    opacity: 0.9;
  }
  .card-verdict-glyph {
    font-family: var(--fd);
    font-weight: 400;
    font-size: 148px;
    line-height: 0.85;
    letter-spacing: -0.04em;
  }

  /* "it depends." two-line phrase — upright "it" + italic "depends." */
  .card-verdict-phrase {
    font-family: var(--fd);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.03em;
  }
  .card-verdict-phrase .vp-line-1 {
    display: block;
    font-style: normal;
    font-size: 68px;
  }
  .card-verdict-phrase .vp-line-2 {
    display: block;
    font-style: italic;
    font-size: 72px;
    margin-left: 0.35em;
    margin-top: -0.02em;
  }

  .card-question {
    font-family: var(--fb);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-top: 14px;
  }
  .card-question em {
    font-family: var(--fl);
    font-weight: 400;
    font-style: normal;
  }

  .card-summary {
    margin-top: 14px;
    font-family: var(--fb);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.45;
    opacity: 0.88;
  }
  .card.var-cream .card-summary { color: var(--ink-2); opacity: 1; }

  .card-foot {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-family: var(--fm);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .card-rule { /* border-color set per variant */ }
  .card-meta-label { font-weight: 600; }
  .card-sources {
    font-weight: 500;
    text-align: right;
    max-width: 60%;
    line-height: 1.5;
    opacity: 0.85;
  }

  /* ─── Swipe indicator dots (mobile only) ─── */
  .swipe-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    padding: 0 24px;
  }
  .swipe-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--rule);
    transition: background .2s, width .2s;
  }
  .swipe-dots span.active { background: var(--ink); width: 16px; border-radius: 3px; }

  /* ─── How it works strip ─── */
  .how {
    padding: 56px 0;
    border-top: 1.5px solid var(--ink);
  }
  .how-head {
    font-family: var(--fm);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .how h2 {
    font-family: var(--fb);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    max-width: 20ch;
  }
  .how h2 em {
    font-family: var(--fl);
    font-weight: 400;
    font-style: normal;
  }
  .how-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .how-item-num {
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dot-red);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .how-item h3 {
    font-family: var(--fb);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }
  .how-item p {
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink-2);
  }

  /* ─── Footer ─── */
  footer.site-foot {
    padding: 56px 0 64px;
    border-top: 1.5px solid var(--ink);
    text-align: center;
  }
  .foot-logo {
    font-family: var(--fl);
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    color: var(--ink);
  }
  .foot-logo .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--dot-red);
    margin-left: 3px;
  }
  .foot-tag {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink);
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
  }
  .foot-links {
    margin-top: 28px;
    font-family: var(--fm);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 24px;
    font-weight: 500;
    flex-wrap: wrap;
  }
  .foot-links a {
    color: var(--ink);
    transition: color .15s;
  }
  .foot-links a:hover { color: var(--ink-2); }
  .foot-credit {
    margin-top: 24px;
    font-family: var(--fm);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 500;
  }

  /* ─── Tablet ─── */
  @media (min-width: 720px) {
    .hero { padding: 88px 0 48px; }
    .hero h1 { font-size: 56px; }
    .hero-sub { font-size: 19px; max-width: 54ch; }
    .list-head { margin-top: 56px; }

    /* On tablet, break out of the swipe and show 2 cards per row in a grid */
    .cards-track {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      overflow: visible;
      scroll-snap-type: none;
      margin: 0;
      padding: 20px 0 0;
    }
    .card {
      flex: none;
      max-width: none;
      min-height: 0;
      aspect-ratio: 1 / 1;
    }
    .swipe-dots { display: none; }

    .how-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .how h2 { font-size: 34px; }
  }

  /* ─── Desktop ─── */
  @media (min-width: 1080px) {
    .topbar-inner { padding: 16px 40px; }
    .page { padding: 0 40px; }
    .hero { padding: 120px 0 64px; }
    .hero h1 { font-size: 84px; letter-spacing: -0.035em; max-width: 18ch; }
    .hero-sub { font-size: 20px; }
    .list-head { margin-top: 72px; padding: 24px 0 20px; }

    .cards-track {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      padding-top: 28px;
    }
    .card {
      padding: 32px 30px;
    }
    .card-verdict-word { font-size: 120px; }
    .card-verdict-glyph { font-size: 144px; }
    .card-verdict-phrase .vp-line-1 { font-size: 72px; }
    .card-verdict-phrase .vp-line-2 { font-size: 76px; }
    .card-question { font-size: 26px; }
    .card-summary { font-size: 15px; }

    .how { padding: 80px 0; }
    .how h2 { font-size: 44px; max-width: 22ch; }
    .how-grid { margin-top: 40px; }
  }

  /* Utility: hide on mobile */
  .hide-mobile { display: none; }
  @media (min-width: 720px) {
    .hide-mobile { display: flex; }
  }


/* ── Desktop card fixes ──────────────────────────────────────────────────── */
@media (min-width: 720px) {
  /* Cards become a CSS grid, not a horizontal scroll */
  .cards-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    overflow-x: visible;
    scroll-snap-type: none;
    margin: 0;
    padding: 20px 0;
  }
  .card {
    flex: unset;
    max-width: unset;
    min-height: 480px;
    scroll-snap-align: unset;
  }
  /* Scale verdict word down so it fits card width */
  .card-verdict-word {
    font-size: clamp(48px, 9vw, 96px);
  }
  /* Verdict phrase — also scale */
  .card-verdict-phrase .vp-line-1,
  .card-verdict-phrase .vp-line-2 {
    font-size: clamp(44px, 8vw, 88px);
  }
  /* Hide swipe dots on desktop */
  .swipe-dots { display: none; }
}

@media (min-width: 1080px) {
  .cards-track {
    grid-template-columns: repeat(4, 1fr);
  }
  .card-verdict-word {
    font-size: clamp(52px, 7vw, 96px);
  }
}
