:root {
  --ink: #18243a;
  --muted: #607087;
  --blue: #0057b8;
  --red: #c43d32;
  --green: #18864b;
  --paper: #ffffff;
  --wash: #f4f7fb;
  --rule: #dbe3ee;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.68;
}
header {
  color: white;
  background: linear-gradient(130deg, #082b5f, #0057b8 62%, #198d91);
  padding: 4.7rem 1.5rem 4.2rem;
}
.header-inner, main, footer { max-width: 980px; margin: auto; }
.kicker {
  margin: 0 0 .8rem;
  font: 700 .83rem/1.2 Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #cbe5ff;
}
h1 { max-width: 900px; margin: 0; font-size: clamp(2.3rem, 6vw, 4.6rem); line-height: 1.02; }
.deck { max-width: 810px; margin: 1.4rem 0 0; font-size: 1.28rem; color: #edf7ff; }
main { padding: 3rem 1.5rem 5rem; }
h2 { margin: 3.2rem 0 .8rem; font-size: 2rem; line-height: 1.18; }
h3 { margin: 2.3rem 0 .5rem; font-size: 1.35rem; }
p, li { font-size: 1.08rem; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.lede { font-size: 1.27rem; line-height: 1.6; }
.summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}
.stat {
  border-top: 5px solid var(--blue);
  background: var(--wash);
  padding: 1.2rem;
  min-height: 160px;
}
.stat strong { display: block; font: 750 2rem/1 Arial, sans-serif; color: var(--blue); }
.stat span { display: block; margin-top: .65rem; font: .94rem/1.45 Arial, sans-serif; color: #33435b; }
figure {
  margin: 2.2rem 0 3rem;
  border: 1px solid var(--rule);
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 45, 80, .08);
}
figure img { display: block; width: 100%; height: auto; }
figcaption { padding: .9rem 1.1rem 1rem; font: .9rem/1.45 Arial, sans-serif; color: var(--muted); border-top: 1px solid var(--rule); }
.callout {
  margin: 2.4rem 0;
  border-left: 6px solid var(--red);
  background: #fff3f1;
  padding: 1.1rem 1.35rem;
}
.callout strong { color: #8e251e; }
.results {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2.5rem;
  font-family: Arial, sans-serif;
  font-size: .93rem;
}
.results th, .results td { padding: .75rem .7rem; text-align: right; border-bottom: 1px solid var(--rule); }
.results th:first-child, .results td:first-child { text-align: left; }
.results th { background: #0b3f79; color: white; }
.results tr:nth-child(even) { background: var(--wash); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0; }
.button {
  display: inline-block;
  border-radius: 5px;
  padding: .78rem 1rem;
  color: white;
  background: var(--blue);
  font: 700 .92rem/1 Arial, sans-serif;
  text-decoration: none;
}
.button.secondary { color: var(--blue); background: #eaf3ff; border: 1px solid #b7d5fa; }
.replication-placeholder {
  border: 2px dashed #9eb1c8;
  background: var(--wash);
  color: #495b72;
  padding: 1rem 1.2rem;
  font-family: Arial, sans-serif;
}
.note { font: .92rem/1.55 Arial, sans-serif; color: var(--muted); }
footer { padding: 2rem 1.5rem 4rem; border-top: 1px solid var(--rule); font: .9rem/1.5 Arial, sans-serif; color: var(--muted); }
.appendix-table { overflow-x: auto; }
.appendix-table table { min-width: 760px; width: 100%; border-collapse: collapse; font: .78rem/1.3 Arial, sans-serif; }
.appendix-table th, .appendix-table td { padding: .45rem .55rem; border-bottom: 1px solid var(--rule); }
.appendix-table th { position: sticky; top: 0; background: #0b3f79; color: #fff; text-align: left; }
@media (max-width: 760px) {
  .summary { grid-template-columns: 1fr; }
  header { padding-top: 3.2rem; }
  main { padding-top: 2rem; }
}
