@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap");
:root {
  --ink: #102740;
  --muted: #536c82;
  --blue: #1659a0;
  --navy: #0b213c;
  --gold: #edc54c;
  --line: #dce6ef;
  --paper: #f3f7fb;
  --green: #246e58;
  --amber: #86520d;
  --red: #9b4143;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    14px/1.7 "Open Sans",
    sans-serif;
}
h1,
h2,
h3,
h4 {
  font-family: Poppins, sans-serif;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin: 0 0 13px;
}
h1 {
  font-size: 36px;
  font-weight: 500;
}
h2 {
  font-size: 23px;
  font-weight: 500;
}
h3 {
  font-size: 17px;
  font-weight: 500;
}
p {
  margin: 8px 0 17px;
}
a {
  color: var(--blue);
  overflow-wrap: anywhere;
}
button,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
select:focus-visible {
  outline: 3px solid #4997d0;
  outline-offset: 3px;
}
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 245px;
  background:
    radial-gradient(ellipse at -30% 100%, #225776, transparent 60%),
    radial-gradient(ellipse at 150% 130%, #a58d4155, transparent 45%), #0a1e36;
  color: white;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: white;
  text-decoration: none;
  align-items: stretch;
  max-width: 210px;
}
.brand-product {
  text-align: center;
  font: 500 11px "IBM Plex Mono", monospace;
  letter-spacing: 0.17em;
  color: #c4d8e9;
}
.brand-product sup {
  font: 10px "Open Sans", sans-serif;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 2px;
}
.brand-logo {
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 3;
  object-fit: contain;
}
.brand-mark {
  color: var(--gold);
  font-size: 43px;
  font-family: serif;
}
.client-label {
  margin-top: 46px;
  font: 11px "IBM Plex Mono";
  letter-spacing: 0.1em;
  color: #c0d6e8;
}
#client-name {
  font-size: 17px;
  font-weight: 600;
  margin: 7px 0 26px;
  overflow-wrap: anywhere;
}
nav a {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: #bacfe2;
  padding: 12px 14px;
  font-size: 12px;
  margin: 4px 0;
  border-radius: 7px;
  border-left: 3px solid transparent;
}
nav a:hover {
  background: #173654;
}
nav a.active {
  background: #254865;
  color: white;
  border-color: var(--gold);
}
.nav-number {
  font: 10px "IBM Plex Mono";
  color: #90aec6;
}
.sidebar-note {
  margin-top: auto;
  padding: 24px 10px 0;
}
.sidebar-note span {
  color: #e0c77b;
  font-size: 12px;
}
.sidebar-note p {
  font-size: 12px;
  line-height: 1.9;
  color: #c0d6e8;
}
.shell {
  margin-left: 245px;
}
header {
  padding: 17px 32px;
  border-bottom: 1px solid var(--line);
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 11px;
  color: var(--muted);
}
.divider {
  margin: 0 12px;
  color: #b6c7d6;
}
.edition {
  background: #e9f0f8;
  color: #406382;
  border-bottom: 1px solid #d6e3ef;
  padding: 10px 32px;
  font-size: 12px;
}
.edition.published {
  background: #ecf5f0;
  color: #306348;
}
main {
  max-width: 1550px;
  margin: auto;
  padding: 32px;
}
.eyebrow {
  font: 10px "IBM Plex Mono";
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #507ba0;
  margin-bottom: 12px;
}
.page-intro {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.page-intro p {
  color: var(--muted);
  font-size: 13px;
  max-width: 760px;
}
.tag {
  display: inline-block;
  border: 1px solid #c9d9e7;
  background: #f0f5fa;
  color: #426280;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 500;
  white-space: normal;
}
.tag.aligned {
  color: var(--green);
  background: #edf7f1;
  border-color: #bad8c9;
}
.tag.review {
  color: var(--amber);
  background: #fff5df;
  border-color: #e5ce9f;
}
.tag.unknown {
  color: #596c7b;
  background: #f0f3f5;
  border-color: #cdd8df;
}
.tag.dark {
  color: #ddc574;
  border-color: #9e863d77;
  background: #d3b85312;
}
.btn {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  border: 1px solid #afc4da;
  padding: 10px 15px;
  border-radius: 7px;
  background: white;
  color: #1b538a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}
.btn:hover {
  border-color: #4e82b0;
  background: #f3f8fc;
}
.btn.primary {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}
.btn.small {
  font-size: 11px;
  padding: 7px 11px;
}
.btn.gold {
  background: #edc54c;
  color: #142c43;
  border-color: #edc54c;
}
.btn-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 23px;
  min-width: 0;
}
.card p {
  font-size: 13px;
  color: var(--muted);
}
.card-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: start;
  margin-bottom: 20px;
}
.card-head h2 {
  font-size: 20px;
}
.card-head p {
  margin-bottom: 0;
  font-size: 12px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 23px;
  align-items: stretch;
}
.hero {
  border: 1px solid #244d6c;
  background:
    radial-gradient(ellipse at 10% 125%, #27628499, transparent 60%),
    radial-gradient(ellipse at 115% 15%, #9a8b432b, transparent 60%), #0c2845;
  color: white;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 23px;
  position: relative;
  overflow: hidden;
}
.hero .eyebrow {
  color: #a9cce3;
}
.hero h2 {
  font-size: 30px;
  font-weight: 400;
}
.score-line {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 18px 0 24px;
}
.score {
  font: 500 77px/1 "IBM Plex Mono";
  letter-spacing: -0.04em;
}
.score small {
  font: 12px "IBM Plex Mono";
  letter-spacing: 0;
  color: #b6cce0;
  margin-left: 8px;
}
.score-copy {
  border-left: 1px solid #7697b544;
  padding-left: 22px;
  font-size: 12px;
  color: #bdd0e2;
  max-width: 255px;
}
.hero p {
  color: #bbd1e4;
  font-size: 13px;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #7197b644;
  margin-top: 27px;
  padding-top: 21px;
  gap: 15px;
}
.hero-bottom strong {
  display: block;
  font: 500 26px "IBM Plex Mono";
  color: white;
}
.hero-bottom span {
  font-size: 11px;
  color: #aac7df;
}
.quadrant-card {
  padding-bottom: 15px;
}
.quadrant-card svg {
  width: 100%;
  max-height: 385px;
  display: block;
}
.quad-label {
  font: 600 16px "Open Sans", sans-serif;
  fill: #203c54;
}
.quad-description {
  font: 12px "Open Sans", sans-serif;
  fill: #516b80;
}
.quad-axis {
  font: 12px "Open Sans", sans-serif;
  fill: #49667e;
}
.quad-target {
  font: 600 13px "Open Sans", sans-serif;
  fill: #246e58;
}
.quad-current {
  font: 600 15px "Open Sans", sans-serif;
  fill: #1659a0;
}
.quad-note {
  font-size: 11px !important;
  margin-bottom: 0 !important;
  border-top: 1px solid var(--line);
  padding-top: 13px;
}
.subscore-heading {
  margin: 12px 0 17px;
}
.subscore-heading h2 {
  font-size: 21px;
  margin-bottom: 6px;
}
.subscore-heading p,
.subscore-note {
  font-size: 12px;
  color: var(--muted);
}
.subscore-note {
  margin: -9px 0 29px;
  max-width: 78ch;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}
.metric {
  padding: 19px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.metric .label {
  font-size: 11px;
  color: var(--muted);
}
.metric h3 {
  font: 600 13px "Open Sans", sans-serif;
  margin: 0;
}
.metric-visual {
  min-height: 189px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 13px 0 7px;
}
.score-dial {
  width: 100%;
  max-width: 200px;
  display: block;
  overflow: visible;
}
.score-dial text {
  fill: #526b80;
  font: 11px "IBM Plex Mono", monospace;
}
.dial-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: -2px;
}
.dial-value small {
  color: var(--muted);
  font: 11px "IBM Plex Mono", monospace;
}
.contradiction-count {
  text-align: center;
  padding: 3px 0 15px;
}
.metric .contradiction-count strong {
  font-size: 58px;
  line-height: 1.15;
}
.contradiction-count span {
  color: var(--muted);
  font-size: 11px;
}
.count-target {
  display: flex;
  gap: 3px;
  justify-content: center;
}
.count-target span {
  padding: 3px 13px;
  background: #e8f4ed;
  color: #246e58;
  border-bottom: 3px solid #3f926e;
  font: 12px/1.5 "IBM Plex Mono", monospace;
}
.count-target .count-beyond {
  background: #f1f4f7;
  color: var(--muted);
  border-color: #cfdae4;
}
.metric-target {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 7px;
  font-size: 12px;
}
.metric-target b {
  color: #246e58;
}
.metric-verdict {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  margin: 11px 0 8px;
  color: var(--muted);
}
.verdict-mark {
  width: 17px;
  height: 17px;
  line-height: 16px;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
}
.metric-good .metric-verdict { color: #246e58; }
.metric-warn .metric-verdict { color: #86520d; }
.metric-critical .metric-verdict { color: #9b4143; }
.metric strong {
  display: block;
  font: 500 32px "IBM Plex Mono";
  margin: 5px 0;
}
.metric p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}
.metric .bar {
  height: 4px;
  background: #e6edf5;
  border-radius: 4px;
  margin: 13px 0;
  overflow: hidden;
}
.metric .bar i {
  display: block;
  height: 100%;
  background: #437fae;
}
.metric .bar.risk i {
  background: #b68b34;
}
.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 23px;
}
.focus-card {
  border: 1px solid #c2d2df;
  background: linear-gradient(145deg, #fff, #f4f8fc);
}
.focus-row {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 21px 0;
}
.focus-row:last-child {
  padding-bottom: 0;
}
.focus-num {
  color: #b3943c;
  font: 500 28px "IBM Plex Mono";
  padding-top: 3px;
}
.focus-row h3 {
  font-size: 16px;
}
.focus-row .reference {
  font: 9px "IBM Plex Mono";
  color: #607c94;
  margin-bottom: 6px;
}
.focus-row p {
  font-size: 12px;
}
.focus-row .meta {
  font-size: 10px;
}
.callout {
  padding: 15px 18px;
  background: #edf4fa;
  border-left: 3px solid #4b82b1;
  border-radius: 0 7px 7px 0;
  font-size: 12px;
  color: #415f78;
  margin: 17px 0;
  line-height: 1.8;
}
.callout.gold {
  border-color: #c4a13f;
  background: #fcf7e8;
  color: #76602d;
}
.coverage-row {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 12px;
  align-items: start;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.coverage-row strong.count {
  font: 500 27px "IBM Plex Mono";
  color: #34668b;
}
.coverage-row h3 {
  font-size: 13px;
  margin: 0 0 4px;
}
.coverage-row p {
  font-size: 11px;
  margin: 0;
}
.meta {
  font-size: 11px;
  color: var(--muted);
}
.quiet {
  color: #5e7891;
}
.fact-counts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.fact-counts > div {
  min-width: 150px;
  flex: 1;
  border: 1px solid var(--line);
  padding: 18px;
  background: white;
  border-radius: 9px;
}
.fact-counts strong {
  display: block;
  font: 500 29px "IBM Plex Mono";
  margin: 5px 0;
}
.fact-counts small {
  font-size: 10px;
  color: var(--muted);
}
.comparison {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  margin-bottom: 17px;
  overflow: hidden;
}
.comparison > summary {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto 23px;
  align-items: center;
  gap: 15px;
  padding: 20px 23px;
  cursor: pointer;
}
.comparison > summary::-webkit-details-marker {
  display: none;
}
.comparison > summary strong {
  font: 500 15px Poppins;
}
.comparison > summary:after {
  content: "+";
  color: #6688a6;
  font-size: 22px;
}
.comparison[open] > summary:after {
  content: "−";
}
.comparison-inner {
  border-top: 1px solid var(--line);
  padding: 23px;
}
.side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-bottom: 20px;
}
.evidence-cell {
  border: 1px solid var(--line);
  padding: 19px;
  border-radius: 9px;
  background: #f6f9fc;
}
.evidence-cell.ai {
  background: #eef4fb;
  border-color: #cbdeef;
}
.evidence-label {
  font: 9px "IBM Plex Mono";
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5a7d9c;
  margin-bottom: 10px;
}
.evidence-cell blockquote {
  margin: 0;
  font-size: 13px;
  color: #2a465f;
  white-space: pre-wrap;
}
.interpretation {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  color: #385c7f;
  font-size: 12px;
}
.interpretation p {
  margin-top: 0;
}
.filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin: 22px 0;
}
.filter-row label {
  font-size: 12px;
}
.filter-row select {
  background: white;
  border: 1px solid #c8d7e5;
  border-radius: 6px;
  padding: 8px;
  color: #325572;
  font-size: 12px;
}
.fact-item {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.fact-item h3 {
  font-size: 14px;
}
.fact-item p {
  white-space: pre-wrap;
}
.question-card {
  background: #102f4e;
  color: white;
  border: 1px solid #274f71;
  border-radius: 12px;
  padding: 27px;
  margin-bottom: 23px;
}
.question-card .eyebrow {
  color: #a2c5df;
}
.question-card h2 {
  font-size: 26px;
  font-weight: 400;
}
.question-card p {
  font-size: 11px;
  color: #b2cce1;
}
.answer p {
  font-size: 13px;
  line-height: 1.9;
  white-space: pre-wrap;
}
.source-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.source-list li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.source-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}
.source-list .rank {
  color: #7090ab;
  font: 12px "IBM Plex Mono";
  margin-right: 8px;
}
.source-list a {
  font-size: 11px;
}
.action {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  margin: 16px 0;
}
.action summary {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  padding: 21px;
  cursor: pointer;
  list-style: none;
}
.action summary::-webkit-details-marker {
  display: none;
}
.action .rank {
  font: 500 24px "IBM Plex Mono";
  color: #8ea6ba;
}
.action h3 {
  font-size: 15px;
  margin: 0 0 8px;
}
.action summary small {
  font-size: 10px;
  color: var(--muted);
}
.action-body {
  padding: 0 24px 24px 72px;
  font-size: 13px;
  color: #35536c;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.action-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin: 20px 0 0;
  padding-top: 15px;
  white-space: normal;
}
.action-meta span {
  font-size: 10px;
  color: #658098;
}
.action-meta strong {
  display: block;
  font-size: 12px;
  color: var(--ink);
}
.timeline {
  position: relative;
  margin: 25px 0 0;
  border-left: 2px solid #c4d7e7;
  padding-left: 28px;
}
.timeline article {
  position: relative;
  padding: 0 0 30px;
}
.timeline article:before {
  content: "";
  position: absolute;
  left: -35px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #39729f;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #b5cada;
}
.timeline h3 {
  font-size: 15px;
}
.timeline p {
  font-size: 12px;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.method-grid h3 {
  font-size: 15px;
}
.method-grid p {
  font-size: 12px;
}
.empty {
  padding: 24px;
  border: 1px dashed #b7cadd;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  background: #f8fafc;
}
.icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  vertical-align: middle;
}
.mono {
  font: 11px "IBM Plex Mono";
  overflow-wrap: anywhere;
}
.section-break {
  margin: 35px 0 20px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 23px 32px;
  font-size: 11px;
  color: #536c82;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
dialog {
  border: 1px solid #a5bfd6;
  border-radius: 12px;
  width: 800px;
  max-width: calc(100vw - 25px);
  max-height: 92vh;
  padding: 32px;
  color: var(--ink);
  background: #f7fafc;
}
dialog::backdrop {
  background: #061b37b0;
  backdrop-filter: blur(4px);
}
dialog h2 {
  padding-right: 25px;
}
.close {
  position: absolute;
  right: 17px;
  top: 13px;
  border: 0;
  background: none;
  font-size: 27px;
  color: #567891;
}
.error {
  padding: 30px;
  border: 1px solid #e0b8b1;
  background: #fff4ef;
  border-radius: 9px;
  color: #923c34;
}
.print-all {
  display: none;
}
@media (min-width: 1650px) {
  main {
    padding: 40px 45px;
  }
  .hero {
    padding: 37px;
  }
  .hero h2 {
    font-size: 34px;
  }
}
@media (max-width: 1150px) {
  .hero-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }
  .sidebar {
    width: 220px;
  }
  .shell {
    margin-left: 220px;
  }
  .hero-grid .quadrant-card svg {
    max-height: 350px;
  }
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .sidebar {
    position: relative;
    width: 100%;
    padding: 18px;
  }
  .brand {
    font-size: 24px;
  }
  .brand-mark {
    font-size: 34px;
  }
  .client-label {
    margin-top: 20px;
  }
  #client-name {
    margin-bottom: 15px;
  }
  .sidebar-note {
    display: none;
  }
  nav {
    display: flex;
    overflow: auto;
    gap: 4px;
  }
  nav a {
    white-space: nowrap;
    font-size: 11px;
    padding: 10px;
  }
  .nav-number {
    display: none;
  }
  .shell {
    margin: 0;
  }
  header {
    padding: 14px 18px;
    font-size: 10px;
    flex-wrap: wrap;
  }
  .edition {
    padding: 10px 18px;
  }
  main {
    padding: 25px 17px;
  }
  h1 {
    font-size: 28px;
  }
  .page-intro {
    display: block;
  }
  .hero {
    padding: 23px;
  }
  .hero h2 {
    font-size: 27px;
  }
  .score {
    font-size: 62px;
  }
  .score-copy {
    font-size: 11px;
    padding-left: 16px;
  }
  .card {
    padding: 20px;
  }
  .metric-grid {
    gap: 10px;
  }
  .metric {
    padding: 16px;
  }
  .metric strong {
    font-size: 28px;
  }
  .metric-visual { min-height: 150px; }
  .count-target span { padding: 3px 8px; }
  .metric .contradiction-count strong { font-size: 48px; }
  .metric h3 { font-size: 12px; }
  .metric-verdict, .metric-target { font-size: 11px; }
  .side-by-side,
  .method-grid {
    grid-template-columns: 1fr;
  }
  .comparison > summary {
    padding: 17px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }
  .comparison > summary:after {
    display: none;
  }
  .comparison > summary strong {
    font-size: 13px;
  }
  .comparison-inner {
    padding: 17px;
  }
  .focus-row {
    grid-template-columns: 27px 1fr;
    gap: 12px;
  }
  .action summary {
    grid-template-columns: 24px 1fr;
    padding: 17px;
    gap: 13px;
  }
  .action summary > .tag {
    grid-column: 2;
    justify-self: start;
  }
  .action-body {
    padding: 0 18px 23px;
  }
  .action h3 {
    font-size: 14px;
  }
  .filter-row {
    align-items: start;
  }
  .page-intro p {
    font-size: 12px;
  }
  footer {
    padding: 20px 17px;
    flex-direction: column;
    gap: 5px;
  }
  dialog {
    padding: 23px;
  }
}
@media print {
  body {
    background: white;
    font-size: 11px;
  }
  .sidebar,
  header,
  .edition,
  footer,
  .btn,
  dialog,
  .filter-row {
    display: none !important;
  }
  .shell {
    margin: 0;
  }
  main {
    max-width: none;
    padding: 0;
  }
  .screen-content {
    display: none;
  }
  .print-all {
    display: block;
  }
  .print-section {
    break-before: page;
  }
  .print-section:first-child {
    break-before: auto;
  }
  .hero-grid,
  .two-columns {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    background: #eef3f8 !important;
    color: #173853 !important;
  }
  .hero p,
  .hero .eyebrow,
  .hero .score-copy,
  .hero-bottom span,
  .hero-bottom strong {
    color: #42617d !important;
  }
  .hero h2 {
    font-size: 22px;
  }
  .hero .score {
    font-size: 46px;
  }
  .metric-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .metric { padding: 12px; }
  .metric-visual { min-height: 150px; }
  .metric h3 { font-size: 11px; }
  .metric .contradiction-count strong { font-size: 44px; }
  .count-target span { padding: 2px 7px; }
  h1 {
    font-size: 27px;
  }
  .card,
  .hero,
  .comparison,
  .action,
  .metric {
    break-inside: avoid;
    box-shadow: none;
  }
  .card {
    padding: 18px;
  }
  .action-body {
    display: block !important;
  }
  .comparison-inner {
    display: block !important;
  }
  .page-intro {
    margin-top: 25px;
  }
  .tag {
    white-space: normal;
  }
  .quad-note {
    font-size: 9px !important;
  }
  a {
    color: #234f7a;
  }
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
.evidence-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin:24px 0; }
.evidence-metrics > div { border-left:3px solid #b8d7ec; padding:12px 20px; background:#f1f6fa; }
.evidence-metrics span, .evidence-metrics small { display:block; }
.evidence-metrics strong { display:block; font-size:34px; margin:8px 0; color:#1056a5; }
.evidence-table-wrap { overflow:auto; max-width:100%; }
.evidence-table { width:100%; border-collapse:collapse; font-size:13px; }
.evidence-table th, .evidence-table td { text-align:left; vertical-align:top; padding:18px 14px; border-bottom:1px solid #d8e3ee; min-width:160px; }
.evidence-table th:first-child { min-width:220px; max-width:320px; }
.evidence-table thead { background:#edf4fa; }
.evidence-table small, .comparison summary small, .evidence-cell small { display:block; font-size:12px; font-weight:400; margin:8px 0; }
.evidence-table button { margin-top:10px; }
.full-answer { white-space:pre-wrap; overflow-wrap:anywhere; line-height:1.75; }
.evidence-section-title { margin:34px 0 20px; }
.evidence-response { scroll-margin-top:25px; }
.market-hero { color:#f3f8fc; background:radial-gradient(ellipse at 4% 100%,#15446b 0,transparent 62%),radial-gradient(ellipse at 100% 0,rgba(245,197,24,.16),transparent 56%),#0b213a; padding:32px; }
.market-hero h2 { color:white; max-width:760px; font-size:clamp(22px,2.8vw,32px); }
.market-hero p { color:#d6e4f0; max-width:780px; }
.market-hero .eyebrow { color:#f5c518; }
.market-section-head { display:flex; justify-content:space-between; align-items:flex-start; gap:20px; }
.market-table-wrap { overflow-x:auto; max-width:100%; }
.market-table { width:100%; min-width:600px; border-collapse:collapse; text-align:left; font-size:14px; }
.market-scroll-hint { display:none; font-size:12px; color:#46617a; }
.market-table caption { text-align:left; font-size:12px; color:#46617a; padding:14px 0; }
.market-table th,.market-table td { padding:20px 16px; border-bottom:1px solid #d8e3ee; vertical-align:top; }
.market-table th { font-weight:600; }
.market-table thead th { background:#edf4fa; font-size:12px; color:#355674; }
.market-table small { display:block; font-weight:400; font-size:12px; line-height:1.5; margin-top:5px; color:#486079; }
.market-table tbody th { min-width:180px; }
.market-table .market-owned { background:#edf6fd; }
.market-table .market-owned th { border-left:3px solid #f5c518; }
.market-rate { display:flex; justify-content:space-between; flex-wrap:wrap; gap:6px; min-width:150px; }
.market-rate span { font-size:12px; color:#486079; }
.market-bar { margin-top:10px; height:6px; background:#dfe9f2; border-radius:8px; overflow:hidden; }
.market-bar i { display:block; height:100%; background:#216db0; border-radius:8px; }
.market-detail { margin-top:20px; padding:15px 0; border-top:1px solid #d8e3ee; }
.market-detail summary { cursor:pointer; color:#14558c; font-weight:600; }
.market-detail li { margin:10px 0; }
.demand-spark { width:180px; height:44px; color:#176ba8; }
.identity-label { display:inline-flex; align-items:center; gap:8px; vertical-align:middle; max-width:100%; line-height:1.45; }
.identity-text { min-width:0; overflow-wrap:anywhere; }
.identity-mark { width:26px; height:26px; flex:0 0 26px; display:inline-grid; place-items:center; position:relative; background:#fff; border:1px solid #d8e3ee; border-radius:7px; overflow:hidden; }
.identity-mark .identity-initials { color:#305c7d; font:600 10px/1 'Open Sans',sans-serif; letter-spacing:.02em; }
.identity-image { position:absolute; inset:2px; width:calc(100% - 4px); height:calc(100% - 4px); object-fit:contain; background:#fff; }
.identity-image[hidden] { display:none; }
.identity-mark:not(.is-fallback) .identity-initials { visibility:hidden; }
.identity-mark.is-fallback { background:#eaf1f7; }
.identity-provider .identity-mark { width:18px; height:18px; flex-basis:18px; border:0; border-radius:0; background:transparent; }
.identity-provider .identity-image { inset:0; width:100%; height:100%; background:transparent; }
.identity-provider .identity-initials { font-size:9px; }
.identity-provider .identity-text { white-space:nowrap; }
.identity-separator { color:#8a9aa8; margin:0 4px; }
.page-intro h1 .identity-mark { width:42px; height:42px; flex-basis:42px; border-radius:10px; }
.page-intro h1 .identity-initials { font-size:16px; }
#client-name .identity-label { gap:10px; }
.evidence-table th .identity-label { justify-content:center; }
.buyer-perspective { border-top:3px solid #dfb72b; }
.buyer-perspective-context { max-width:900px; }
.buyer-lenses { display:grid; grid-template-columns:repeat(auto-fit,minmax(min(100%,310px),1fr)); gap:20px; margin-top:26px; }
.buyer-lens { padding:22px; background:#f4f8fc; border:1px solid #d9e5ef; border-radius:12px; min-width:0; }
.buyer-lens-heading { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.buyer-lens-heading h3 { margin:5px 0 0; font-size:19px; line-height:1.4; }
.buyer-lens-number { color:#9d7711; font:500 22px 'IBM Plex Mono',monospace; }
.buyer-lens h4 { margin:20px 0 8px; font-size:13px; line-height:1.5; color:#224e71; }
.buyer-lens p { font-size:14px; line-height:1.75; margin:8px 0 14px; }
.buyer-keywords ul { list-style:none; margin:0; padding:0; }
.buyer-keywords li { display:flex; justify-content:space-between; align-items:flex-start; gap:12px; padding:12px 0; border-bottom:1px solid #dce6ef; font-size:13px; }
.buyer-keywords li > span { min-width:0; overflow-wrap:anywhere; }
.buyer-keywords li > strong { text-align:right; flex:0 0 68px; font:600 16px 'IBM Plex Mono',monospace; }
.buyer-keywords small { display:block; font:400 10px/1.6 'Open Sans',sans-serif; color:#5b7187; margin-top:5px; }
.buyer-conversation { margin-top:22px; border-top:1px solid #cfdfeb; padding-top:18px; }
.buyer-conversation summary { cursor:pointer; font-size:13px; font-weight:600; color:#1d5a8c; }
.buyer-conversation blockquote { margin:16px 0; padding:0 0 0 14px; border-left:3px solid #c5a343; font-size:15px; line-height:1.8; color:#183e5a; }
.buyer-outcome-chain { margin-top:24px; }
.buyer-outcome-chain p { margin-bottom:0; }
@media print { .identity-mark { print-color-adjust:exact; -webkit-print-color-adjust:exact; } .identity-provider .identity-mark { width:13px; height:13px; flex-basis:13px; } .buyer-lenses { display:block; } .buyer-lens { break-inside:avoid; margin:12px 0; } }
.discovery-panel { border-top:3px solid #e2b725; }
.discovery-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,300px),1fr));gap:20px;margin-top:24px; }
.discovery-card { padding:24px;background:#edf4fa;border-radius:12px; }
.discovery-card h3 { font-size:20px;line-height:1.5;margin:18px 0; }
.source-context-list { margin-top:24px; }
.source-context-row { display:grid;grid-template-columns:34px minmax(0,1fr) 90px;gap:18px;align-items:center;padding:16px 0;border-bottom:1px solid #d8e3ee; }
.source-context-row h3 { margin:0;font-size:16px;overflow-wrap:anywhere; }
.source-context-row strong { text-align:right;font-size:20px; }
.source-context-row small { display:block;font-size:11px;font-weight:400; }
.source-context-rank { color:#4c708c;font-family:monospace;font-size:16px; }
@media(max-width:700px) { .market-section-head { flex-direction:column; } .market-hero { padding:24px; } .market-table th,.market-table td { padding:14px 10px; } }
@media(max-width:1100px) { .market-scroll-hint { display:block; } }
@media print { .market-scroll-hint { display:none; } .market-table { font-size:10px; min-width:0; table-layout:fixed; } .market-table th,.market-table td { min-width:0; padding:8px; overflow-wrap:anywhere; } .market-table-wrap { overflow:visible; } .market-rate { min-width:0; } .demand-spark { width:100px; } .market-detail { break-inside:auto; } }
@media(max-width:700px) { .evidence-metrics { grid-template-columns:1fr; gap:10px; } .evidence-metrics > div { padding:14px; } }
@media print { .evidence-table { table-layout:fixed; } .evidence-table th, .evidence-table td { min-width:0; max-width:none; font-size:9px; padding:8px; overflow-wrap:anywhere; } .evidence-table-wrap { overflow:visible; } }
/* PACT keeps evidence-led buying needs distinct from relationship knowledge. */
.pact-executive{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin:28px 0;padding:24px;background:#f3f7fb;border-radius:12px}
.pact-executive h3{margin:8px 0 10px}.pact-executive p{margin-bottom:0}
.pact-framework{border-top:1px solid #dce6ef;padding-top:20px;margin-top:28px}
.pact-framework summary{font-weight:600;color:#173c5a;cursor:pointer;padding:8px 0}
.pact-framework dl{display:grid;grid-template-columns:1fr 1fr;gap:0 28px}
.pact-framework dl>div{padding:14px 0;border-bottom:1px solid #e1e8ef}
.pact-framework dt{font-weight:700;color:#173c5a}.pact-framework dd{margin:6px 0 0;line-height:1.65}
@media(max-width:700px){.pact-executive,.pact-framework dl{grid-template-columns:1fr}.pact-executive{padding:18px}}
