:root {
  color: #172033;
  background: #eef3f8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --text: #172033;
  --muted: #64748b;
  --border: #dbe3ee;
  --accent: #2563eb;
  --axis-governance: #2563eb;
  --axis-training: #0f766e;
  --axis-care: #f97316;
  --axis-facility: #7c3aed;
  --axis-systems: #0891b2;
  --axis-cyber: #be185d;
}

* { box-sizing: border-box; }

html { color-scheme: light; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 30rem),
    linear-gradient(135deg, #f8fbff 0%, #eef3f8 44%, #f6f4ef 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px;
  background: #172033;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brandMark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: #f97316;
  color: white;
  font-weight: 900;
}

.brand p,
.brand strong,
.summaryPanel p,
.summaryPanel span,
.eyebrow {
  margin: 0;
}

.brand p,
.summaryPanel p,
.eyebrow {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand p { color: #9fb0c7; }

.brand strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.steps {
  display: grid;
  gap: 10px;
}

.steps a {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #dbeafe;
  font-weight: 800;
  text-align: left;
  transition: transform 160ms ease, background 160ms ease;
}

.steps a:hover {
  transform: translateX(4px);
  background: #2563eb;
}

.steps a.complete {
  border-color: rgba(34, 197, 94, 0.36);
  background: rgba(22, 163, 74, 0.16);
}

.steps span {
  color: #fbbf24;
  font-weight: 900;
}

.steps small {
  margin-left: auto;
  color: #9fb0c7;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.steps a.complete small {
  color: #bbf7d0;
}

.stepsDivider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: -18px 0 6px;
}

.stepsLabel {
  margin: -14px 0 -8px;
  padding: 0 2px;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.summaryPanel {
  margin-top: auto;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.summaryPanel strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 54px;
  line-height: 1;
}

.summaryPanel span {
  color: #c7d2fe;
  font-weight: 800;
}

.summaryPanel.pending strong { font-size: 34px; }

.summaryPanel.complete {
  border-color: rgba(34, 197, 94, 0.42);
  background: linear-gradient(145deg, rgba(22, 163, 74, 0.26), rgba(255,255,255,0.08));
}

.summaryPanel.complete span {
  color: #bbf7d0;
}

.workspace {
  padding: 52px 56px;
  overflow: hidden;
}

.topbar,
.report-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.introCopy {
  max-width: 920px;
}

.topbar h1,
.report h1 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.introCopy .lead {
  max-width: 820px;
  margin: 14px 0 0;
  color: #334155;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.65;
}

.profileGroup {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.requiredGroup {
  border-color: #bfdbfe;
}

.profileGroupHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.profileGroupHeader h2 {
  margin: 0;
  font-size: 16px;
}

.profileGroupHeader span {
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
}

.profileNote {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

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

.profileFields label {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

.profileFields span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.profileFields b {
  color: #dc2626;
  font-size: 11px;
}

.profileFields input,
.profileFields textarea {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #172033;
  font-weight: 800;
  outline: none;
}

.profileFields textarea {
  min-height: 42px;
  resize: vertical;
}

.form-errors,
.errorlist {
  color: #b91c1c;
  font-size: 13px;
  font-weight: 900;
}

.form-errors {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fef2f2;
}

.errorlist {
  margin: 8px 0 0;
  padding-left: 18px;
}

.section {
  --axis: var(--axis-governance);
  margin-top: 18px;
}

.section-governance { --axis: var(--axis-governance); }
.section-training { --axis: var(--axis-training); }
.section-care { --axis: var(--axis-care); }
.section-facility { --axis: var(--axis-facility); }
.section-systems { --axis: var(--axis-systems); }
.section-cyber { --axis: var(--axis-cyber); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding: 18px;
  border: 1px solid #dbe3ee;
  border-left: 5px solid var(--axis);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(23, 32, 51, 0.06);
}

.section-head h2 {
  margin: 6px 0 6px;
  font-size: 22px;
}

.section-head p {
  margin: 0;
  color: #475569;
  font-weight: 700;
  line-height: 1.6;
}

.section-head .eyebrow {
  color: var(--axis);
}

.section-head > span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--axis) 10%, white);
  color: var(--axis);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.question {
  display: grid;
  min-height: 190px;
  gap: 12px;
  padding: 18px;
  border: 1px solid #dce5ef;
  border-left: 5px solid var(--axis);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(23, 32, 51, 0.06);
}

.question.unanswered {
  border-color: #fecaca;
  border-left-color: #dc2626;
  background: linear-gradient(180deg, rgba(254, 242, 242, 0.96), rgba(255, 255, 255, 0.92));
  box-shadow: 0 18px 45px rgba(220, 38, 38, 0.09);
}

.question.answered {
  background: linear-gradient(180deg, rgba(240, 253, 244, 0.76), rgba(255, 255, 255, 0.92));
}

.questionMeta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.questionMeta span {
  color: var(--axis);
  font-weight: 900;
}

.questionMeta em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #64748b;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.questionStatus {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.question.unanswered .questionStatus {
  background: #fee2e2;
  color: #b91c1c;
}

.question.answered .questionStatus {
  background: #dcfce7;
  color: #166534;
}

.question h3 {
  margin: 0;
  color: #172033;
  font-size: 16px;
  line-height: 1.5;
}

.question p,
.focus-card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.choiceGroup > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 5px;
  border-radius: 8px;
  background: #eef3f8;
  list-style: none;
}

.choiceGroup > div > div {
  min-width: 0;
}

.choiceGroup label {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 6px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.choiceGroup label:hover {
  color: #172033;
  transform: translateY(-1px);
}

.choiceGroup input[type="radio"] {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--axis);
}

.choiceGroup label:has(input:checked) {
  border-color: color-mix(in srgb, var(--axis) 24%, white);
  background: white;
  color: var(--axis);
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.08);
}

.formActionBar {
  position: sticky;
  bottom: 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: rgba(239, 246, 255, 0.96);
  box-shadow: 0 18px 45px rgba(23, 32, 51, 0.14);
}

.formActionBar div {
  display: grid;
  gap: 4px;
}

.formActionBar strong {
  color: #172033;
  font-size: 15px;
}

.formActionBar span {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.primary,
.button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  background: #2563eb;
  color: white;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.25);
  font-weight: 800;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.secondary {
  border: 1px solid #cbd5e1;
  background: white;
  color: #172033;
  box-shadow: none;
}

.report .summaryPanel strong {
  font-size: 54px;
}

.report-head {
  display: block;
}

.reportHero {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1.28fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 22px;
}

.reportScoreCard,
.radarCard,
.scorePill {
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(23, 32, 51, 0.06);
}

.reportScoreCard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 16rem),
    #ffffff;
}

.reportScoreCard strong {
  display: block;
  margin-top: 14px;
  color: #172033;
  font-size: clamp(62px, 9vw, 104px);
  line-height: 0.95;
}

.reportScoreCard span {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 900;
}

.reportScoreCard p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #334155;
  font-weight: 800;
  line-height: 1.7;
}

.radarCard {
  padding: 14px;
  overflow: hidden;
}

.radarCard svg {
  display: block;
  width: 100%;
  height: auto;
}

.scoreStrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.scorePill {
  padding: 14px;
  border-top: 4px solid var(--axis);
}

.scorePill span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.scorePill strong {
  display: block;
  margin-top: 8px;
  color: var(--axis);
  font-size: 28px;
  line-height: 1;
}

.scorePill .bar {
  margin-top: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.scorePill .bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.scorePill p,
.scorePill em {
  display: block;
  margin: 10px 0 0;
  color: #334155;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.scorePill b {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 3px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--axis) 10%, white);
  color: var(--axis);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
}

.scorePill em {
  margin-top: 6px;
  color: var(--axis);
  font-weight: 900;
}

.pdfCategoryAdvice {
  display: none;
}

.score-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.summary-card,
.focus-card,
.table {
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(23, 32, 51, 0.06);
}

.summary-card {
  padding: 18px;
}

.summary-card strong {
  display: block;
  color: #172033;
  font-size: 24px;
  line-height: 1.18;
}

.summary-card span {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.report section {
  margin-top: 22px;
}

.report section h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

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

.focus-card {
  min-width: 0;
  padding: 18px;
  border-left: 5px solid var(--axis, #2563eb);
}

.focus-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.focus-comment { margin-top: 10px !important; }

.focus-card p,
.focus-card b {
  overflow-wrap: anywhere;
  word-break: normal;
}

.focus-action {
  margin-top: 10px !important;
  color: #2563eb !important;
  font-weight: 900;
}

.focus-card ul {
  margin: 6px 0 0;
  padding-left: 1.2em;
}

.focus-card li {
  margin-top: 5px;
  overflow-wrap: anywhere;
  word-break: normal;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.qaTable {
  table-layout: fixed;
}

.qaTable th:first-child,
.qaTable td:first-child {
  width: 68%;
}

.qaTable th:last-child,
.qaTable td:last-child {
  width: 32%;
}

.table th,
.table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.table th {
  color: #172033;
  font-size: 13px;
  font-weight: 900;
}

.table thead th {
  background: #eff6ff;
}

.table tbody tr:last-child th,
.table tbody tr:last-child td {
  border-bottom: 0;
}

.split-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Intro page */
.introHero {
  margin-bottom: 28px;
}

.introHeroBody {
  max-width: 920px;
}

.introHero .eyebrow {
  color: #f97316;
  font-size: 13px;
}

.introHero h1 {
  margin: 8px 0 0;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  color: #172033;
}

.introHero .lead {
  max-width: 820px;
  margin: 16px 0 0;
  color: #334155;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
}

.introHero .notice {
  max-width: 900px;
  margin: 12px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.06);
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
}

.introHero .largeCta {
  margin-top: 20px;
}

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

.introPanel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 12px rgba(23, 32, 51, 0.04);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.introPanel:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(23, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.introPanelIcon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 6px;
  margin-bottom: 2px;
}

.introPanelIcon svg {
  width: 14px;
  height: 14px;
}

.purposeIcon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.requiredIcon {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.assumptionIcon {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.dataIcon {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.introPanel .eyebrow {
  color: #64748b;
}

.introPanel h2 {
  margin: 4px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.introPanel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #334155;
  font-weight: 700;
  line-height: 1.6;
  font-size: 14px;
}

.introPanel ul li::marker {
  color: #2563eb;
}

.introDefinition {
  display: grid;
  gap: 10px;
  margin: 0;
}

.introDefinition div {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f8fafc;
}

.introDefinition dt,
.introDefinition dd {
  margin: 0;
}

.introDefinition dt {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
}

.introDefinition dt::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.introDefinition dd {
  color: #334155;
  font-weight: 700;
  line-height: 1.6;
  font-size: 14px;
}

.introCta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 26px 28px;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  background: linear-gradient(135deg, #eff6ff, #f0f7ff);
}

.introCta h2,
.introCta p {
  margin: 0;
}

.introCta h2 {
  margin-top: 6px;
  font-size: 22px;
}

.introCta p:last-child {
  margin-top: 6px;
  color: #475569;
  font-weight: 700;
}

.largeCta {
  min-width: 220px;
  min-height: 56px;
  padding: 4px 28px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1080px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summaryPanel {
    display: none;
  }

  .workspace {
    padding: 34px 24px 48px;
  }

  .introGrid,
  .introCta {
    grid-template-columns: 1fr;
  }

  .introHero .largeCta,
  .introCta .largeCta {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .profileFields,
  .question-list,
  .score-row,
  .reportHero,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .scoreStrip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choiceGroup > div {
    grid-template-columns: 1fr;
  }

  .section-head,
  .formActionBar,
  .split-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary,
  .button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .sidebar,
  .workspace {
    padding-left: 16px;
    padding-right: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .topbar h1,
  .report h1 {
    font-size: 30px;
  }

  .introCopy .lead {
    font-size: 16px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 14mm 12mm;
  }

  body {
    background: #ffffff;
  }

  .shell {
    display: block;
  }

  .sidebar {
    display: none;
  }

  .workspace {
    padding: 0;
  }

  .report h1 {
    font-size: 28px;
    line-height: 1.18;
  }

  .introCopy .lead {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.6;
  }

  .reportHero {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 10px;
    margin-top: 14px;
    page-break-inside: avoid;
  }

  .reportScoreCard {
    padding: 18px;
    background: #f8fbff;
  }

  .reportScoreCard strong {
    font-size: 68px;
  }

  .reportScoreCard span {
    background: #dbeafe;
  }

  .reportScoreCard p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.55;
  }

  .radarCard {
    padding: 8px;
  }

  .radarCard svg {
    max-height: 330px;
  }

  .reportScoreCard,
  .radarCard,
  .scorePill,
  .summary-card,
  .focus-card,
  .table {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    box-shadow: none;
  }

  .scoreStrip {
    display: none;
  }

  .pdfCategoryAdvice {
    display: block;
    page-break-inside: avoid;
  }

  .score-row {
    gap: 8px;
    margin-top: 10px;
    page-break-inside: avoid;
  }

  .summary-card,
  .focus-card {
    padding: 12px;
  }

  .summary-card strong,
  .summary-card span,
  .focus-card h3,
  .focus-card p,
  .focus-card ul {
    margin-left: 0;
    margin-right: 0;
    text-indent: 0;
  }

  .summary-card strong {
    font-size: 17px;
  }

  .summary-card span,
  .focus-card p,
  .focus-card li,
  .table th,
  .table td {
    font-size: 10.5px;
  }

  .report section {
    margin-top: 16px;
  }

  .report section h2 {
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 2px solid #dbeafe;
    color: #172033;
    font-size: 17px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    page-break-inside: avoid;
  }

  .focus-card h3 {
    font-size: 13px;
  }

  .focus-comment,
  .focus-action {
    margin-top: 6px !important;
  }

  .focus-card ul {
    margin-top: 4px;
    padding-left: 1em;
  }

  .focus-card li {
    margin-top: 3px;
    line-height: 1.45;
  }

  .table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    page-break-inside: auto;
  }

  .table tr {
    page-break-inside: avoid;
  }

  .table th,
  .table td {
    border: 1px solid #cbd5e1;
    padding: 7px 9px;
    line-height: 1.45;
    text-indent: 0;
  }

  .table th {
    width: 24%;
    background: #f8fafc;
  }

  .table thead {
    display: table-header-group;
  }

  .table thead th {
    background: #dbeafe;
    color: #172033;
  }

  .table td:nth-child(2),
  .table td:nth-child(3),
  .table td:nth-child(4) {
    width: auto;
  }

  .adviceTable th:nth-child(1) {
    width: 22%;
  }

  .adviceTable th:nth-child(2),
  .adviceTable td:nth-child(2) {
    width: 10%;
    text-align: center;
  }

  .adviceTable th:nth-child(3),
  .adviceTable td:nth-child(3),
  .adviceTable th:nth-child(4),
  .adviceTable td:nth-child(4) {
    width: 34%;
  }

  .adviceTable tbody th {
    background: #f8fafc;
    color: #172033;
  }

  .actions {
    display: none;
  }
}
