/* ==========================================================================
   Azuro Insights — editorial design system
   Continuity: azurosoft.com (Geist, monochrome dark) + report cover azure.
   Concept: dark institutional chrome, paper reading surface.
   ========================================================================== */

@font-face {
  font-family: "Geist";
  src: url("/fonts/geist/Geist-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("/fonts/geist/Geist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("/fonts/geist/Geist-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("/fonts/newsreader/Newsreader-var.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("/fonts/newsreader/Newsreader-Italic-var.woff2") format("woff2");
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Ink — sampled from the report cover */
  --ink-0: #070b14;
  --ink-1: #0a0f1c;
  --ink-2: #0f1524;
  --ink-3: #161d30;
  --ink-line: rgba(148, 163, 199, 0.16);
  --ink-line-strong: rgba(148, 163, 199, 0.3);

  /* Paper reading surface */
  --paper: #fbfaf7;
  --paper-2: #f3f1ec;
  --paper-line: #e3e0d8;
  --paper-line-strong: #c9c5ba;

  /* Type on ink */
  --t-bright: #f2f4fa;
  --t-body: #c3cadb;
  --t-dim: #8c96ad;

  /* Type on paper */
  --p-head: #10131c;
  --p-body: #262b38;
  --p-dim: #6b7183;

  /* Azure — the cover streak */
  --azure: #2f6bf0;
  --azure-on-ink: #7ba3ff;
  --azure-on-paper: #1d51c9;

  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: "Newsreader", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;

  --w-shell: 1200px;
  --w-prose: 704px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--ink-1);
  color: var(--t-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(47, 107, 240, 0.28); color: inherit; }

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

.shell {
  max-width: var(--w-shell);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ------------------------------------------------------------------ */
/* Kicker / eyebrow                                                    */
/* ------------------------------------------------------------------ */
.kicker {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azure-on-ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--azure);
  flex: none;
}
.kicker--paper { color: var(--azure-on-paper); }
.kicker--bare::before { display: none; }

/* ------------------------------------------------------------------ */
/* Header                                                              */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 11, 20, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line);
}
.site-header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--t-bright);
  min-width: 0;
}
.brand img { width: 34px; height: 34px; border-radius: 50%; flex: none; box-shadow: 0 0 0 1px var(--ink-line-strong); }
.brand__names { line-height: 1.2; white-space: nowrap; }
.brand__company {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: block;
}
.brand__unit {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--azure-on-ink);
  display: block;
  margin-top: 1px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 13.5px;
}
.site-nav a {
  text-decoration: none;
  color: var(--t-dim);
  transition: color 0.18s ease;
}
.site-nav a:hover { color: var(--t-bright); }
.site-nav a.is-ext { color: var(--t-body); }
.site-nav a.is-ext::after { content: " \2197"; color: var(--t-dim); }
@media (max-width: 640px) {
  .site-nav a:not(.is-ext) { display: none; }
}

/* ------------------------------------------------------------------ */
/* Buttons                                                             */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 26px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--azure); color: #fff; }
.btn--solid:hover { background: #2a5fd8; }
.btn--ghost {
  background: transparent;
  color: var(--t-bright);
  border-color: var(--ink-line-strong);
}
.btn--ghost:hover { border-color: var(--t-dim); }
.btn--paper {
  background: var(--ink-1);
  color: #fff;
}
.btn--paper:hover { background: var(--ink-3); }
.btn--paper-ghost {
  background: transparent;
  color: var(--p-head);
  border-color: var(--paper-line-strong);
}
.btn--paper-ghost:hover { border-color: var(--p-dim); }
.btn .btn__meta { font-size: 12px; color: rgba(255, 255, 255, 0.62); font-weight: 400; }

/* ------------------------------------------------------------------ */
/* Hero (shared dark editorial header)                                 */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(47, 107, 240, 0.17), transparent 62%),
    radial-gradient(700px 420px at -8% 110%, rgba(47, 107, 240, 0.08), transparent 60%),
    var(--ink-1);
}
.hero::before {
  /* cover-inspired diagonal streaks */
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 90%;
  height: 160%;
  background:
    linear-gradient(115deg, transparent 42%, rgba(47, 107, 240, 0.13) 42.2%, rgba(47, 107, 240, 0.13) 46%, transparent 46.2%),
    linear-gradient(115deg, transparent 55%, rgba(240, 243, 250, 0.05) 55.2%, rgba(240, 243, 250, 0.05) 57%, transparent 57.2%),
    linear-gradient(115deg, transparent 64%, rgba(47, 107, 240, 0.07) 64.2%, rgba(47, 107, 240, 0.07) 71%, transparent 71.2%);
  pointer-events: none;
}
.hero > .shell { position: relative; }

/* ------------------------------------------------------------------ */
/* Stat band                                                           */
/* ------------------------------------------------------------------ */
.stat-band {
  background: var(--ink-0);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.stat-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 34px 28px 32px;
  border-left: 1px solid var(--ink-line);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat__value {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--t-bright);
  letter-spacing: -0.01em;
}
.stat__value sup { font-size: 0.5em; color: var(--t-dim); }
.stat__label {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-dim);
}
@media (max-width: 860px) {
  .stat-band__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .stat:nth-child(-n + 2) { border-bottom: 1px solid var(--ink-line); }
}
@media (max-width: 480px) {
  .stat { padding: 24px 18px 22px; }
}

/* ------------------------------------------------------------------ */
/* Paper article surface                                               */
/* ------------------------------------------------------------------ */
.paper {
  background: var(--paper);
  color: var(--p-body);
}
.paper--tint { background: var(--paper-2); }

.article-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(48px, 7vw, 88px) 0 clamp(64px, 8vw, 112px);
}
@media (max-width: 980px) {
  .article-layout { grid-template-columns: minmax(0, 1fr); }
  .article-aside { display: none; }
}

/* Sticky table of contents */
.article-aside { font-size: 13px; }
.article-aside__in { position: sticky; top: 96px; }
.toc__title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p-dim);
  margin-bottom: 14px;
}
.toc { list-style: none; border-left: 1px solid var(--paper-line); }
.toc a {
  display: block;
  padding: 6px 0 6px 16px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  text-decoration: none;
  color: var(--p-dim);
  line-height: 1.4;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.toc a:hover { color: var(--p-head); }
.toc a.is-active { color: var(--azure-on-paper); border-left-color: var(--azure); }
.toc__sub a { padding-left: 30px; font-size: 12.5px; }
.article-aside .aside-cta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--paper-line);
}
.article-aside .aside-cta a {
  font-size: 13px;
  font-weight: 500;
  color: var(--azure-on-paper);
  text-decoration: none;
}
.article-aside .aside-cta a:hover { text-decoration: underline; }

/* Prose */
.prose { max-width: var(--w-prose); font-size: 16.5px; }
.prose > * + * { margin-top: 1.25em; }

.prose h2 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 480;
  letter-spacing: -0.012em;
  line-height: 1.18;
  color: var(--p-head);
  margin-top: 2.4em;
  padding-top: 1.6em;
  border-top: 1px solid var(--paper-line);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--p-head);
  margin-top: 2.2em;
}
.prose h3 .h-index { color: var(--azure-on-paper); margin-right: 10px; }
.prose p.lead {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: 21.5px;
  font-weight: 420;
  line-height: 1.5;
  color: var(--p-head);
  letter-spacing: -0.004em;
}
.prose a { color: var(--azure-on-paper); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose strong { font-weight: 500; color: var(--p-head); }
.prose ul { padding-left: 1.15em; }
.prose ul > li { margin-top: 0.6em; padding-left: 0.35em; }
.prose ul > li::marker { color: var(--azure-on-paper); }
.prose sup a { text-decoration: none; font-size: 0.75em; }

/* Figure notes / footnotes */
.prose .note { font-size: 13.5px; color: var(--p-dim); line-height: 1.55; }
.endnotes { font-size: 13.5px; color: var(--p-dim); line-height: 1.6; }
.endnotes li { margin-top: 0.7em; }
.endnotes { padding-left: 1.2em; }

/* Pull-quote / bottom line */
.bottomline {
  margin-top: 2.2em;
  border-left: 3px solid var(--azure);
  background: linear-gradient(90deg, rgba(47, 107, 240, 0.055), transparent 70%);
  padding: 26px 30px 28px;
}
.bottomline p {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: 20px;
  line-height: 1.5;
  color: var(--p-head);
}
.bottomline .bottomline__tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azure-on-paper);
  display: block;
  margin-bottom: 12px;
}

/* ------------------------------------------------------------------ */
/* Data tables                                                         */
/* ------------------------------------------------------------------ */
.tablewrap { overflow-x: auto; margin-top: 1.6em; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  line-height: 1.45;
  min-width: 560px;
}
table.data caption {
  caption-side: top;
  text-align: left;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--p-dim);
  padding-bottom: 12px;
}
table.data th {
  font-weight: 500;
  color: var(--p-head);
  text-align: left;
  border-bottom: 2px solid var(--p-head);
  padding: 10px 14px 10px 0;
  white-space: nowrap;
}
table.data td {
  border-bottom: 1px solid var(--paper-line);
  padding: 11px 14px 11px 0;
  vertical-align: top;
}
table.data th.num, table.data td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
table.data tr.total td {
  font-weight: 500;
  color: var(--p-head);
  border-top: 2px solid var(--p-head);
  border-bottom: none;
  background: rgba(47, 107, 240, 0.045);
}
table.data td.rowlabel { color: var(--p-head); }

/* PV-share bars */
.pvbars { margin-top: 1.6em; display: grid; gap: 14px; }
.pvbar__row {
  display: grid;
  grid-template-columns: minmax(180px, 300px) 1fr 64px;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
}
.pvbar__label { color: var(--p-head); line-height: 1.3; }
.pvbar__track { background: var(--paper-2); border-radius: 3px; height: 12px; overflow: hidden; }
.pvbar__fill {
  height: 100%;
  background: linear-gradient(90deg, #16408f, var(--azure));
  border-radius: 3px;
  transform-origin: left center;
  animation: growbar 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.pvbar__val { text-align: right; font-variant-numeric: tabular-nums; color: var(--p-dim); }
@keyframes growbar { from { transform: scaleX(0); } }
@media (max-width: 560px) {
  .pvbar__row { grid-template-columns: 1fr 56px; }
  .pvbar__label { grid-column: 1 / -1; margin-bottom: -6px; }
}

/* ------------------------------------------------------------------ */
/* Citation block                                                      */
/* ------------------------------------------------------------------ */
.cite-box {
  margin-top: 1.8em;
  border: 1px solid var(--paper-line-strong);
  background: var(--paper-2);
  padding: 22px 24px;
  border-radius: 6px;
}
.cite-box__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p-dim);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cite-box code {
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--p-body);
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
}
.copy-btn {
  font: 500 11px/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azure-on-paper);
  background: none;
  border: 1px solid var(--paper-line-strong);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.copy-btn:hover { border-color: var(--azure-on-paper); }

/* ------------------------------------------------------------------ */
/* Download / CTA band                                                 */
/* ------------------------------------------------------------------ */
.cta-band {
  background:
    radial-gradient(900px 420px at 12% -30%, rgba(47, 107, 240, 0.2), transparent 60%),
    var(--ink-0);
  border-top: 1px solid var(--ink-line);
}
.cta-band__in {
  padding: clamp(56px, 8vw, 96px) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band h2 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 420;
  letter-spacing: -0.012em;
  line-height: 1.15;
  color: var(--t-bright);
  max-width: 560px;
}
.cta-band p { margin-top: 14px; color: var(--t-dim); max-width: 520px; font-size: 15px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */
.site-footer {
  background: var(--ink-0);
  border-top: 1px solid var(--ink-line);
  padding: 48px 0 40px;
  font-size: 13px;
  color: var(--t-dim);
}
.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}
.site-footer .brand img { width: 30px; height: 30px; }
.site-footer nav { display: flex; gap: 26px; flex-wrap: wrap; }
.site-footer nav a { color: var(--t-dim); text-decoration: none; }
.site-footer nav a:hover { color: var(--t-bright); }
.site-footer__legal {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
  font-size: 12px;
  line-height: 1.7;
  color: #67718a;
  max-width: 860px;
}

/* ------------------------------------------------------------------ */
/* Index page: hero + publication cards                                */
/* ------------------------------------------------------------------ */
.home-hero__in { padding: clamp(72px, 10vw, 140px) 0 clamp(56px, 8vw, 104px); }
.home-hero h1 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(42px, 6.4vw, 84px);
  font-weight: 380;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--t-bright);
  max-width: 15ch;
  margin-top: 26px;
}
.home-hero h1 em {
  font-style: italic;
  font-weight: 380;
  color: var(--azure-on-ink);
}
.home-hero .home-hero__sub {
  margin-top: 28px;
  max-width: 56ch;
  font-size: clamp(15.5px, 1.6vw, 17.5px);
  line-height: 1.7;
  color: var(--t-body);
}

.featured {
  padding: clamp(56px, 8vw, 96px) 0;
}
.featured__grid {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  margin-top: 40px;
}
.featured__coverlink { display: block; max-width: 300px; }
@media (max-width: 900px) {
  .featured__grid { grid-template-columns: minmax(0, 1fr); }
  .featured__coverlink { max-width: 280px; }
}
.featured__coverwrap {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(4, 8, 18, 0.5),
    0 24px 64px -20px rgba(4, 8, 18, 0.85);
  border: 1px solid var(--ink-line-strong);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.featured__coverwrap img { width: 100%; height: auto; }
a:hover > .featured__coverwrap { transform: translateY(-6px); }
.featured__body .kicker { margin-bottom: 22px; }
.featured__body h2 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 420;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--t-bright);
}
.featured__body h2 a { text-decoration: none; }
.featured__body h2 a:hover { color: var(--azure-on-ink); }
.featured__standfirst {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--t-body);
  max-width: 58ch;
}
.featured__stats {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
  border-top: 1px solid var(--ink-line);
}
.featured__stat { padding-top: 18px; }
.featured__stat b {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 420;
  color: var(--t-bright);
  line-height: 1.1;
}
.featured__stat span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-dim);
}
.featured__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.pub-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13px;
  color: var(--t-dim);
  margin-top: 22px;
}
.pub-meta span { display: inline-flex; align-items: center; gap: 8px; }
.pub-meta b { color: var(--t-body); font-weight: 500; }

/* Publications index list */
.pubs { padding: clamp(48px, 7vw, 88px) 0 clamp(64px, 9vw, 112px); border-top: 1px solid var(--ink-line); }
.pubs__head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.pubs__head h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 420;
  letter-spacing: -0.01em;
  color: var(--t-bright);
}
.pub-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--ink-line);
  text-decoration: none;
  transition: background 0.18s ease;
}
.pubs .pub-row:last-child { border-bottom: 1px solid var(--ink-line); }
.pub-row:hover { background: rgba(47, 107, 240, 0.05); }
.pub-row__thumb {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--ink-line-strong);
}
.pub-row__thumb img { width: 100%; height: auto; }
.pub-row__kind {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azure-on-ink);
}
.pub-row__title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 450;
  letter-spacing: -0.008em;
  line-height: 1.25;
  color: var(--t-bright);
  margin-top: 6px;
}
.pub-row:hover .pub-row__title {
  display: block; color: var(--azure-on-ink); }
.pub-row__meta {
  display: block; font-size: 12.5px; color: var(--t-dim); margin-top: 8px; }
.pub-row__arrow {
  font-size: 20px;
  color: var(--t-dim);
  transition: transform 0.18s ease, color 0.18s ease;
}
.pub-row:hover .pub-row__arrow { transform: translateX(6px); color: var(--azure-on-ink); }
@media (max-width: 560px) {
  .pub-row { grid-template-columns: 72px minmax(0, 1fr); }
  .pub-row__arrow { display: none; }
}

/* About band (paper) */
.about-band { padding: clamp(56px, 8vw, 96px) 0; }
.about-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  margin-top: 8px;
}
@media (max-width: 820px) { .about-band__grid { grid-template-columns: minmax(0, 1fr); } }
.about-band h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 430;
  letter-spacing: -0.012em;
  line-height: 1.16;
  color: var(--p-head);
  margin-top: 20px;
  max-width: 20ch;
}
.about-band p { font-size: 15.5px; line-height: 1.75; color: var(--p-body); }
.about-band p + p { margin-top: 1.1em; }
.about-band .about-facts {
  margin-top: 26px;
  border-top: 1px solid var(--paper-line);
  font-size: 13.5px;
  color: var(--p-dim);
}
.about-band .about-facts div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--paper-line);
}
.about-band .about-facts b { color: var(--p-head); font-weight: 500; text-align: right; }

/* ------------------------------------------------------------------ */
/* Report hero specifics                                               */
/* ------------------------------------------------------------------ */
.report-hero__in {
  padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 80px);
  max-width: 900px;
}
.report-hero h1 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.08;
  color: var(--t-bright);
  margin-top: 26px;
  text-wrap: balance;
}
.report-hero .standfirst {
  margin-top: 24px;
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--t-body);
  max-width: 62ch;
}
.report-hero__actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Reveal-on-load stagger */
@media (prefers-reduced-motion: no-preference) {
  .reveal > * {
    opacity: 0;
    transform: translateY(14px);
    animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .reveal > *:nth-child(1) { animation-delay: 0.05s; }
  .reveal > *:nth-child(2) { animation-delay: 0.14s; }
  .reveal > *:nth-child(3) { animation-delay: 0.23s; }
  .reveal > *:nth-child(4) { animation-delay: 0.32s; }
  .reveal > *:nth-child(5) { animation-delay: 0.41s; }
  .reveal > *:nth-child(6) { animation-delay: 0.5s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* Print: read the article, hide the chrome */
@media print {
  .site-header, .site-footer, .cta-band, .article-aside { display: none; }
  body, .paper { background: #fff; color: #000; }
}
