:root {
  color-scheme: light;
  --ink: #14201c;
  --muted: #66716b;
  --paper: #f5f3ed;
  --surface: #fffefa;
  --line: #d5d7cd;
  --accent: #1d6048;
  --accent-dark: #104432;
  --signal: #d8f05e;
  --max: 1180px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; }

.site-header,
main,
footer {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.sources-hero {
  padding: 76px 0 64px;
  border-bottom: 1px solid var(--line);
}

.sources-hero h1 {
  max-width: 900px;
}

.sources-boundary {
  margin-top: 32px;
}

.locale-notice {
  max-width: 700px;
  padding: 12px 16px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
}

.release-panel,
.level-guide,
.source-register {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.release-panel {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 28px 70px;
}

.release-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.release-facts div {
  min-width: 0;
  padding: 18px;
  background: var(--surface);
}

.release-facts dt,
.source-dates dt {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .06em;
}

.release-facts dd,
.source-dates dd {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-weight: 750;
}

.source-counts {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.source-counts strong,
.source-counts span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.source-counts strong {
  background: var(--ink);
  color: white;
}

.level-guide {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
}

.level-guide ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.level-guide li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.level-guide strong {
  color: var(--accent);
  font: 600 1.8rem/1 Georgia, serif;
}

.sources-status {
  min-height: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.sources-status p {
  margin: 0;
  color: var(--muted);
}

.source-group {
  padding: 40px 0 64px;
  border-top: 2px solid var(--ink);
}

.source-group-heading {
  display: flex;
  gap: 24px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.source-group-heading p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.source-card h3 {
  margin: 20px 0 8px;
  overflow-wrap: anywhere;
  font-size: 1.25rem;
  line-height: 1.35;
}

.source-meta,
.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-meta span,
.source-tags li {
  max-width: 100%;
  padding: 4px 8px;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .75rem;
}

.source-level {
  min-width: 30px;
  text-align: center;
  color: var(--ink) !important;
  font-weight: 850;
}

.level-a { background: var(--signal); }
.level-b { background: #dce8ff; }
.level-c { background: #eee8de; }

.source-publisher {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.source-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
}

.source-dates div {
  min-width: 92px;
}

.source-summary {
  margin: 20px 0;
  color: #46514b;
}

.source-disclaimer {
  margin: 18px 0;
  color: var(--muted);
  font-size: .85rem;
}

.source-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  overflow-wrap: anywhere;
  color: var(--accent-dark);
  font-weight: 800;
  text-underline-offset: 5px;
}

.sources-page footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media (max-width: 760px) {
  .sources-hero,
  .release-panel,
  .level-guide,
  .source-register {
    padding-block: 46px;
  }

  .release-panel,
  .level-guide {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .release-facts,
  .source-list {
    grid-template-columns: 1fr;
  }

  .source-group-heading {
    display: grid;
    gap: 8px;
  }

  .source-card {
    padding: 24px 18px;
  }
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .1em;
}

.wordmark-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--ink);
  color: var(--signal);
  font-size: .7rem;
}

.quiet-link,
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-underline-offset: 5px;
}

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
  padding: 80px 0 74px;
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
}

h1,
h2,
p { overflow-wrap: anywhere; }

h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.04em;
}

h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.25;
}

.lede {
  max-width: 650px;
  margin: 28px 0;
  color: #46514b;
  font-size: 1.16rem;
}

.boundary-note {
  max-width: 700px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.boundary-note p { margin: 0; color: var(--muted); font-size: .92rem; }
.boundary-note b { color: var(--ink); }

.hero-aside {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--accent);
  color: white;
}

.hero-aside span { font-size: .8rem; letter-spacing: .12em; }
.hero-aside strong { color: var(--signal); font: 600 8rem/.9 Georgia, serif; }
.hero-aside p { margin: 18px 0 0; }

.comparison,
.profile-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.role-card {
  min-height: 260px;
  position: relative;
  padding: clamp(28px, 5vw, 54px);
  background: var(--surface);
  overflow: hidden;
}

.role-card + .role-card { border-left: 1px solid var(--line); }
.role-error:only-child { grid-column: 1 / -1; }
.role-card h2 { max-width: 430px; font-size: clamp(1.45rem, 2.5vw, 2rem); }
.role-card > p:not(.eyebrow) { max-width: 430px; margin-top: 26px; color: var(--muted); }
.role-index { position: absolute; right: 24px; bottom: 12px; color: #e4e5dd; font: 600 5rem/1 Georgia, serif; }
.skeleton { color: var(--muted); }

.evidence {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  padding: 76px clamp(28px, 6vw, 72px);
  background: var(--ink);
  color: white;
}

.evidence > div > p:not(.eyebrow) { color: #c7cec9; }
.evidence .eyebrow { color: var(--signal); }
.evidence-list { margin: 0; padding: 0; list-style: none; }
.evidence-list li { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid #46504b; }
.evidence-list b { color: var(--signal); }
.evidence-list span { color: #e9ece9; }

form {
  padding: clamp(24px, 5vw, 56px);
  background: var(--surface);
  border: 1px solid var(--line);
}

fieldset {
  margin: 0 0 42px;
  padding: 0;
  border: 0;
}

legend { margin-bottom: 14px; font-weight: 800; }

.level-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.level-fieldset legend { grid-column: 1 / -1; }

.level-choice {
  min-height: 90px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 19px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.level-choice:has(input:checked) {
  border-color: var(--accent);
  box-shadow: inset 4px 0 var(--accent);
  background: #f4f9f4;
}

.level-choice input { margin: 5px 0 0; accent-color: var(--accent); }
.level-choice span { display: grid; }
.level-choice small { margin-top: 3px; color: var(--muted); line-height: 1.45; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 18px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  font-size: .9rem;
  font-weight: 750;
}

select {
  width: 100%;
  min-height: 48px;
  padding: 0 38px 0 13px;
  border: 1px solid #b8beb7;
  border-radius: 0;
  background: white;
  color: var(--ink);
  font: inherit;
}

.submit-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 28px;
  align-items: center;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
}

#start-benchmark {
  min-width: 230px;
  min-height: 54px;
  padding: 12px 22px;
  border: 0;
  background: var(--accent);
  color: white;
  font: 750 1rem/1.2 inherit;
  cursor: pointer;
}

#start-benchmark:hover:not(:disabled) { background: var(--accent-dark); }
#start-benchmark:disabled { background: #aeb6b1; cursor: wait; }

.status-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
}

#config-status { margin: 0; color: var(--muted); font-size: .85rem; }
.retry-button { min-height: 44px; padding: 8px 14px; border: 1px solid var(--ink); background: transparent; font: inherit; font-weight: 700; cursor: pointer; }

.assessment-shell {
  max-width: 920px;
  padding-block: 64px 88px;
}

.assessment-heading {
  margin-bottom: 34px;
}

.assessment-heading h1 {
  max-width: none;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.assessment-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
}

.assessment-card {
  min-height: 520px;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.assessment-error {
  max-width: 620px;
}

.assessment-error h2 {
  margin-bottom: 14px;
}

.primary-link,
.primary-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font: 750 1rem/1.25 inherit;
  cursor: pointer;
  text-decoration: none;
}

.primary-link,
.primary-button {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.secondary-button {
  background: transparent;
  color: var(--ink);
}

.primary-button:disabled,
.secondary-button:disabled {
  cursor: wait;
  opacity: .58;
}

.progress-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.progress-heading p {
  margin: 0;
}

#step-label {
  font-weight: 800;
}

#step-kind {
  color: var(--muted);
  font-size: .88rem;
}

.question-progress {
  display: grid;
  grid-template-columns: repeat(12, minmax(22px, 1fr));
  gap: 6px;
  margin: 18px 0 44px;
  padding: 0;
  list-style: none;
}

.question-progress li {
  min-width: 0;
  height: 6px;
  overflow: hidden;
  background: #dfe1d8;
  color: transparent;
  font-size: 0;
}

.question-progress li.is-complete {
  background: #8eaa99;
}

.question-progress li[aria-current="step"] {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--accent);
}

.objective-question legend,
.case-question h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font: 600 clamp(1.35rem, 3vw, 2rem)/1.4 Georgia, "Noto Serif SC", serif;
}

.answer-choice {
  min-height: 58px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.answer-choice:has(input:checked) {
  border-color: var(--accent);
  background: #f1f7f2;
  box-shadow: inset 4px 0 var(--accent);
}

.answer-choice input {
  flex: 0 0 auto;
  margin-top: 5px;
  accent-color: var(--accent);
}

.case-guidance {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  margin: 24px 0 14px;
  padding: 18px;
  background: #eef2e9;
}

.confidentiality-warning {
  margin: 0 0 24px;
  padding-left: 14px;
  border-left: 4px solid #d26a3e;
  color: #703920;
  font-size: .9rem;
}

.case-question label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.case-question textarea {
  width: 100%;
  min-height: 280px;
  resize: vertical;
  padding: 16px;
  border: 1px solid #aeb5ae;
  border-radius: 0;
  background: white;
  color: var(--ink);
  font: inherit;
  line-height: 1.65;
}

.field-help,
.character-count {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .84rem;
}

.character-count {
  text-align: right;
}

.inline-error {
  margin: 24px 0 0;
  color: #a33225;
  font-weight: 750;
}

.submit-status {
  min-height: 28px;
  margin: 20px 0 0;
  color: var(--muted);
}

.assessment-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.stage-result {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--accent);
  background: #f1f7f2;
}

.stage-result p:first-child {
  margin-top: 0;
  font-weight: 800;
}

footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .85rem;
}

footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

:focus-visible {
  outline: 3px solid #ec6e34;
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .site-header,
  main,
  footer { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 64px; }
  .wordmark > span:last-child { display: none; }
  .hero { min-height: 0; grid-template-columns: 1fr; gap: 28px; padding: 52px 0; }
  h1 { font-size: clamp(2.55rem, 13vw, 3.4rem); }
  .lede { font-size: 1.02rem; }
  .boundary-note { grid-template-columns: 1fr; gap: 5px; }
  .hero-aside { min-height: 150px; display: grid; grid-template-columns: auto auto 1fr; gap: 12px; align-items: center; }
  .hero-aside strong { font-size: 5rem; }
  .hero-aside p { margin: 0; }
  .comparison, .profile-section { padding: 52px 0; }
  .section-heading, .evidence { grid-template-columns: 1fr; gap: 24px; }
  .role-grid { grid-template-columns: 1fr; }
  .role-card { min-height: 230px; }
  .role-card + .role-card { border-left: 0; border-top: 1px solid var(--line); }
  .evidence { margin-inline: -14px; padding: 48px 28px; }
  .level-fieldset, .form-grid { grid-template-columns: 1fr; }
  .submit-area { grid-template-columns: 1fr; }
  #start-benchmark { width: 100%; }
  .status-row { grid-column: auto; flex-wrap: wrap; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
  .assessment-shell { padding-block: 42px 64px; }
  .assessment-card { margin-inline: -2px; padding: 24px 18px; }
  .case-guidance { grid-template-columns: 1fr; gap: 5px; }
  .assessment-actions { display: grid; grid-template-columns: 1fr; }
  .assessment-actions button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
}

.report-shell {
  max-width: 1040px;
  padding-block: 64px 96px;
}

.report-status-card {
  min-height: 360px;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  background: var(--surface);
}

#report-status h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.report-recovery,
.share-actions,
.report-next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 24px;
}

.history-label,
.history-banner {
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  border-left: 4px solid #bb632d;
  background: #fff2e8;
  color: #6d3516;
  font-weight: 750;
}

.report-hero {
  padding: 54px 0 46px;
  border-bottom: 1px solid var(--line);
}

.report-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.report-direction {
  max-width: 780px;
  margin: 26px 0 0;
  color: #46514b;
  font-size: 1.15rem;
}

.report-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 48px;
  border: 1px solid var(--line);
}

.report-role-card {
  min-width: 0;
  padding: clamp(28px, 5vw, 48px);
  background: var(--surface);
}

.report-role-card + .report-role-card { border-left: 1px solid var(--line); }
.report-role-card h2 { min-height: 3.1em; font-size: clamp(1.35rem, 2.5vw, 1.9rem); }
.report-role-card h3 { margin: 30px 0 8px; font-size: 1rem; }
.report-role-card ul { margin: 0; padding-left: 20px; color: var(--muted); }

.score-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 24px 0 12px;
}

.score-line strong { color: var(--accent); font: 600 clamp(3.8rem, 8vw, 6rem)/.9 Georgia, serif; }
.score-line span { color: var(--muted); font-weight: 750; }
.confidence { min-height: 76px; margin: 22px 0 0; padding: 14px; border-left: 4px solid var(--accent); background: #eef4ed; font-size: .9rem; }

.confidence-legend,
.report-section,
.report-meta,
.privacy-controls {
  margin-top: 48px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.report-validation,
.pilot-offer {
  border-top: 6px solid var(--ink);
}

.pilot-offer {
  background: #fff8e7;
}

.pilot-price {
  margin: 16px 0;
  font: 700 clamp(2.8rem, 7vw, 5rem)/1 Georgia, "Noto Serif SC", serif;
}

.deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 22px 0;
  padding-left: 22px;
}

.offer-boundary {
  padding: 16px;
  border: 1px solid var(--ink);
  background: white;
}

.validation-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  max-width: 760px;
}

.validation-form fieldset {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
}

.validation-form legend,
.validation-form > label {
  font-weight: 750;
}

.validation-form textarea,
.validation-form input[type="text"],
.validation-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: white;
  color: var(--ink);
  font: inherit;
}

.validation-form textarea {
  min-height: 112px;
  resize: vertical;
}

.rating-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.rating-options label,
.checkbox-label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  cursor: pointer;
}

.rating-options label {
  padding: 8px 12px;
  border: 1px solid var(--line);
}

.rating-options input,
.checkbox-label input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.ready-fields {
  display: grid;
  gap: 10px;
}

.validation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-note,
[data-feedback-status],
[data-interest-status] {
  margin: 0;
  color: var(--muted);
}

.confidence-legend h2,
.report-section h2,
.report-meta h2,
.privacy-controls h2 { font-size: clamp(1.45rem, 3vw, 2rem); }
.confidence-legend ul { display: grid; gap: 8px; margin-bottom: 0; color: var(--muted); }
.section-note { max-width: 760px; color: var(--muted); }
.table-scroll { max-width: 100%; overflow-x: auto; }

.dimension-table {
  width: 100%;
  min-width: 720px;
  margin-top: 24px;
  border-collapse: collapse;
}

.dimension-table caption { margin-bottom: 12px; text-align: left; color: var(--muted); }
.dimension-table th, .dimension-table td { padding: 15px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.dimension-table thead th { background: var(--ink); color: white; }
.dimension-table td { width: 14%; font: 600 1.3rem/1 Georgia, serif; }

.evidence-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 24px; }
.answer-evidence { min-width: 0; padding: 24px; background: #eef2e9; }
.answer-evidence h3 { margin: 0 0 14px; font-size: 1.1rem; }
.answer-evidence blockquote { margin: 0; padding: 0 0 0 16px; border-left: 4px solid var(--accent); font-family: Georgia, "Noto Serif SC", serif; }
.answer-evidence > p:last-child { color: var(--muted); font-size: .9rem; }

.priority-list,
.action-list { margin: 26px 0 0; padding: 0; list-style: none; counter-reset: priority; }
.priority-list > li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; padding: 24px 0; border-top: 1px solid var(--line); counter-increment: priority; }
.priority-list h3 { margin: 0; }
.priority-list h3::before { content: "0" counter(priority) " / "; color: var(--accent); font-size: .8rem; letter-spacing: .08em; }
.priority-list p { margin: 7px 0 0; color: var(--muted); }
.training-link { min-width: 160px; }

.action-list > li { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); }
.action-list p { margin: 0 0 4px; }
.action-list small { color: var(--muted); }

.report-meta dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.report-meta dl > div { padding-top: 12px; border-top: 1px solid var(--line); }
.report-meta dt { color: var(--muted); font-size: .82rem; }
.report-meta dd { margin: 4px 0 0; font-weight: 750; overflow-wrap: anywhere; }
.report-disclaimer { margin: 30px 0 0; padding: 18px; background: var(--ink); color: white; }

.share-card {
  margin-top: 48px;
  padding: clamp(28px, 6vw, 60px);
  border: 8px solid var(--ink);
  background: var(--signal);
}

.share-card h2 { max-width: 700px; font: 600 clamp(2rem, 5vw, 4rem)/1.1 Georgia, "Noto Serif SC", serif; }
.share-scores { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-block: 30px; }
.share-scores > div { display: grid; padding: 20px; background: var(--surface); }
.share-scores strong { margin-block: 8px; font: 600 3.8rem/1 Georgia, serif; }
.share-scores small { color: var(--muted); }
.non-endorsement { font-weight: 800; }
.share-actions p, .privacy-delete-status { margin: 0; color: var(--muted); }
.report-next { padding-block: 34px; border-bottom: 1px solid var(--line); }

@media (max-width: 760px) {
  .report-shell { padding-block: 38px 68px; }
  .report-role-grid, .evidence-grid, .share-scores { grid-template-columns: 1fr; }
  .report-role-card + .report-role-card { border-left: 0; border-top: 1px solid var(--line); }
  .report-role-card h2 { min-height: auto; }
  .confidence { min-height: auto; }
  .confidence-legend, .report-section, .report-meta, .privacy-controls { margin-top: 28px; padding: 24px 18px; }
  .deliverable-list { grid-template-columns: 1fr; }
  .validation-actions { display: grid; grid-template-columns: 1fr; }
  .validation-actions button { width: 100%; }
  .priority-list > li { grid-template-columns: 1fr; }
  .training-link { width: 100%; }
  .action-list > li { grid-template-columns: 70px minmax(0, 1fr); gap: 10px; }
  .report-meta dl { grid-template-columns: 1fr; }
  .share-card { margin-inline: -2px; border-width: 5px; }
  .report-next { display: grid; grid-template-columns: 1fr; }
  .report-next a { width: 100%; }
}

@media print {
  .site-header, footer, .share-actions, .report-next, .privacy-controls,
  .report-hero, .report-role-grid, .confidence-legend, .report-section, .report-meta {
    display: none !important;
  }
  .report-shell { width: 100%; padding: 0; }
  #report-content { display: block !important; }
  .share-card { margin: 0; break-inside: avoid; }
}
