:root {
  color-scheme: light;
  --ink: #43495c;
  --muted: #7b8397;
  --line: #e5e8f0;
  --panel: #ffffff;
  --soft: #f7f9ff;
  --brand: #3c52f6;
  --brand-soft: #7a88ff;
  --brand-pale: #f4f6ff;
  --panel-blue: #f3f6ff;
  --teal: #3c52f6;
  --teal-dark: #293fbf;
  --aqua: #dfe5ff;
  --blue: #3c52f6;
  --green: #87cf2e;
  --yellow: #f2cf39;
  --red: #ff6b5f;
  --amber-soft: #fff6df;
  --green-soft: #edf8dd;
  --red-soft: #fff0ee;
  --blue-soft: #edf1ff;
  --shadow: 0 10px 24px rgba(57, 73, 132, 0.08);
  --display-font: "Segoe UI Semibold", "Aptos Display", "Aptos", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #edf2f3;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

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

.shell.report-mode {
  grid-template-columns: 1fr;
}

.shell.access-mode {
  grid-template-columns: 1fr;
}

.report-mode .sidebar {
  display: none;
}

.access-mode .sidebar {
  display: none;
}

.access-mode .content {
  padding: 0;
}

.report-mode .content {
  padding: 24px;
}

.report-mode .view {
  width: 100%;
  max-width: 960px;
  overflow: hidden;
}

.sidebar {
  background: #17212b;
  color: #fff;
  padding: 28px 24px;
}

.brand {
  display: grid;
  gap: 9px;
  align-items: start;
  width: 100%;
  margin-bottom: 34px;
}

.brand img {
  display: block;
  width: min(178px, 100%);
  height: auto;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
}

.brand span {
  color: #dfe5ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.nav button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-align: left;
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.nav button.active {
  background: #097a78;
  border-color: #097a78;
}

.content {
  min-width: 0;
  padding: 34px;
}

.view {
  min-width: 0;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.toolbar > *,
.toolbar .actions {
  min-width: 0;
}

.toolbar .actions {
  justify-content: flex-end;
}

.admin-section-nav {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -8px 0 18px;
  padding: 8px;
  border: 1px solid #dfe4f4;
  border-radius: 10px;
  background: rgba(247, 249, 255, 0.96);
  box-shadow: 0 8px 20px rgba(27, 43, 99, 0.08);
  backdrop-filter: blur(10px);
}

.admin-section-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 11px;
  border-radius: 7px;
  color: #2d3d6c;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.admin-section-nav a:hover,
.admin-section-nav a:focus-visible {
  background: #e8edff;
  color: var(--brand);
  outline: none;
}

.admin-section-nav a span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  min-height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: #dce4ff;
  color: #263db4;
  font-size: 10px;
}

#upload-reports,
#saved-reports,
#coach-directory,
#world-averages,
#top-manager-na,
#admin-operations {
  scroll-margin-top: 76px;
}

.overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 18px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.panel-head h2 {
  margin-bottom: 0;
}

.world-averages-panel {
  padding: 0;
  overflow: hidden;
}

.world-averages-panel > summary,
.top-manager-na-panel > summary {
  cursor: pointer;
  list-style: none;
}

.world-averages-panel > summary::-webkit-details-marker,
.top-manager-na-panel > summary::-webkit-details-marker {
  display: none;
}

.world-averages-panel > summary:focus-visible,
.top-manager-na-panel > summary:focus-visible {
  outline: 3px solid rgba(60, 82, 246, 0.24);
  outline-offset: -3px;
}

.world-averages-panel:not([open]) .world-averages-heading {
  border-bottom-color: transparent;
}

.world-averages-heading {
  align-items: flex-start;
  margin: 0;
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fff 0%, #f5f7ff 100%);
}

.world-averages-heading h2 {
  margin: 5px 0 6px;
  font-size: 24px;
  text-transform: none;
}

.world-averages-heading p {
  max-width: 720px;
  margin: 0;
}

.world-averages-meta {
  flex: 0 0 auto;
  min-width: 180px;
  padding: 10px 12px;
  border: 1px solid #dce2f4;
  border-radius: 9px;
  background: #fff;
  text-align: right;
}

.world-averages-meta span,
.world-averages-meta strong {
  display: block;
}

.world-averages-meta span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-averages-meta strong {
  color: #26386d;
  font-size: 12px;
}

.world-averages-meta em {
  display: inline-block;
  margin-top: 8px;
  color: var(--brand);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.details-open {
  display: none;
}

details[open] .details-closed {
  display: none;
}

details[open] .details-open {
  display: inline;
}

.top-manager-na-panel {
  padding: 0;
  overflow: hidden;
}

.top-manager-na-heading {
  align-items: flex-start;
  margin: 0;
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fff 0%, #f4fbfb 100%);
}

.top-manager-na-panel:not([open]) .top-manager-na-heading {
  border-bottom-color: transparent;
}

.top-manager-na-heading h2 {
  margin: 5px 0 6px;
  font-size: 24px;
  text-transform: none;
}

.top-manager-na-heading p {
  max-width: 720px;
  margin: 0;
}

.top-manager-na-meta {
  flex: 0 0 auto;
  min-width: 155px;
  padding: 10px 12px;
  border: 1px solid #d9e9e8;
  border-radius: 9px;
  background: #fff;
  text-align: right;
}

.top-manager-na-meta span,
.top-manager-na-meta strong {
  display: block;
}

.top-manager-na-meta span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-manager-na-meta strong {
  color: #245a59;
  font-size: 12px;
}

.top-manager-na-meta em {
  display: inline-block;
  margin-top: 8px;
  color: var(--teal);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

#topManagerNaForm {
  padding: 22px 26px 26px;
}

.top-manager-na-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid #cfe5e4;
  border-radius: 9px;
  background: #f3fbfa;
}

.top-manager-na-notice strong {
  color: #204f4e;
}

.top-manager-na-notice p {
  margin: 4px 0 0;
  font-size: 12px;
}

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

.top-manager-na-group {
  min-width: 0;
  margin: 0;
  padding: 15px;
  border: 1px solid #dfe8e8;
  border-radius: 10px;
  background: #fbfdfd;
}

.top-manager-na-group legend {
  padding: 0 7px;
  color: #244c4b;
  font-size: 13px;
  font-weight: 800;
}

.top-manager-na-group > div {
  display: grid;
  gap: 10px;
}

.top-manager-na-group label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.8fr);
  align-items: center;
  gap: 12px;
}

.top-manager-na-group label > span {
  min-width: 0;
}

.top-manager-na-group label strong,
.top-manager-na-group label small {
  display: block;
}

.top-manager-na-group label strong {
  color: #303b58;
  font-size: 12px;
}

.top-manager-na-group label small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.top-manager-na-group select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid #d8e2e2;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.top-manager-na-group select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(9, 122, 120, 0.13);
}

.top-manager-na-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.top-manager-na-actions #topManagerNaStatus {
  flex: 1 1 100%;
}

#worldAveragesForm {
  padding: 22px 26px 26px;
}

.world-average-year {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
}

.world-average-year label {
  display: grid;
  gap: 6px;
  width: 160px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.world-average-year input,
.world-average-group input {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid #dce1ee;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.world-average-year input:focus,
.world-average-group input:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(60, 82, 246, 0.13);
}

.world-average-year p {
  margin: 0 0 4px;
  font-size: 12px;
}

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

.world-average-group {
  min-width: 0;
  margin: 0;
  padding: 15px;
  border: 1px solid #dfe4f1;
  border-radius: 10px;
  background: #fafbff;
}

.world-average-group legend {
  padding: 0 7px;
  color: #22356c;
  font-size: 13px;
  font-weight: 800;
}

.world-average-group > div {
  display: grid;
  gap: 9px;
}

.world-average-group label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  align-items: center;
  gap: 12px;
  color: #4b556f;
  font-size: 12px;
  font-weight: 650;
}

.world-average-group input {
  min-height: 38px;
  text-align: right;
}

.world-average-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.world-average-actions #worldAverageStatus {
  flex: 1 1 260px;
}

.world-average-actions p {
  margin: 0;
}

.search {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  min-width: 260px;
}

.search.compact {
  min-width: 180px;
}

.admin-filters {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.saved-reports-panel {
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.saved-reports-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 20px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: #fff;
  cursor: pointer;
  list-style: none;
}

.saved-reports-heading::-webkit-details-marker {
  display: none;
}

.saved-reports-heading::after {
  content: "Collapse";
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.saved-reports-panel:not([open]) .saved-reports-heading {
  border-bottom: 1px solid var(--line);
  border-radius: 14px;
}

.saved-reports-panel:not([open]) .saved-reports-heading::after {
  content: "Expand";
}

.saved-reports-heading:focus-visible {
  outline: 3px solid rgba(41, 56, 118, 0.25);
  outline-offset: 3px;
}

.saved-reports-body {
  display: grid;
}

.saved-reports-heading h2 {
  margin: 4px 0 5px;
  font-size: 24px;
  letter-spacing: 0.01em;
  text-transform: none;
}

.saved-reports-heading p {
  margin: 0;
}

.saved-reports-kicker,
.saved-report-label {
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.saved-reports-count {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.report-filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) minmax(180px, 1fr) minmax(130px, 0.7fr) minmax(130px, 0.7fr) auto auto auto;
  gap: 12px;
  align-items: end;
  padding: 18px 26px;
  border: 1px solid var(--line);
  border-radius: 0 0 14px 14px;
  background: #f7f9ff;
  box-shadow: 0 12px 28px rgba(41, 56, 118, 0.06);
}

.report-filter-download {
  white-space: nowrap;
}

.upload-result-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.upload-result-actions .notice {
  margin: 0;
}

.report-filter-bar label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.report-filter-bar input,
.report-filter-bar select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #dce1ee;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}

.report-filter-bar input:focus,
.report-filter-bar select:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(60, 82, 246, 0.13);
}

.report-filter-bar .report-archive-toggle {
  grid-column: 1 / -1;
  display: inline-flex;
  justify-self: start;
  min-height: auto;
  margin-top: 1px;
}

.saved-report-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.saved-report-card {
  overflow: hidden;
  border: 1px solid #dfe4f1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(43, 58, 116, 0.07);
}

.saved-report-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 16px;
}

.saved-report-identity h3 {
  margin: 4px 0 8px;
  color: #172653;
  font-size: 21px;
}

.saved-report-meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.saved-report-meta span {
  padding: 4px 7px;
  border-radius: 999px;
  background: #f2f4fa;
  color: #687187;
  font-size: 11px;
  font-weight: 650;
}

.saved-report-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.saved-report-actions button {
  min-height: 40px;
  padding: 9px 13px;
}

.saved-report-access {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(160px, 0.65fr);
  gap: 14px;
  align-items: center;
  padding: 13px 24px;
  border-top: 1px solid #edf0f7;
  border-bottom: 1px solid #edf0f7;
  background: #fafbff;
}

.saved-report-code span,
.saved-report-expiry span,
.saved-report-tool-group > span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.saved-report-code strong {
  color: #1c2e64;
  font-family: "Consolas", "SFMono-Regular", monospace;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.saved-report-expiry {
  text-align: right;
}

.saved-report-expiry strong {
  color: #28344f;
  font-size: 12px;
}

.access-state {
  padding: 6px 10px;
  border: 1px solid #cbeed8;
  border-radius: 999px;
  background: #edf9f1;
  color: #168447;
  font-size: 11px;
  font-weight: 800;
}

.access-state.restricted {
  border-color: #f3d3ce;
  background: #fff2f0;
  color: #b23b31;
}

.saved-report-assignment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 24px;
}

.saved-report-assignment .assignment-summary {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 7px;
}

.saved-report-assignment .assignment-summary span {
  padding: 4px 8px;
}

.saved-report-tools {
  border-top: 1px solid #edf0f7;
}

.saved-report-tools summary {
  padding: 11px 24px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  list-style-position: inside;
}

.saved-report-tools[open] summary {
  border-bottom: 1px solid #edf0f7;
  background: #fbfcff;
}

.saved-report-tools-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 15px 24px 20px;
}

.saved-report-tool-group {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.saved-report-tool-group > span {
  flex: 0 0 100%;
}

.saved-reports-empty {
  margin-top: 16px;
  padding: 44px 24px;
  border: 1px dashed #cfd6e8;
  border-radius: 14px;
  background: #fafbff;
  text-align: center;
}

.saved-reports-empty p {
  margin-bottom: 0;
}

.panel-copy,
.muted-copy {
  margin: 4px 0 0;
  color: var(--muted);
}

.directory-grid,
.directory-lists,
.assignment-columns,
.coach-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.directory-grid {
  margin-bottom: 22px;
}

.directory-form,
.directory-list {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.directory-form,
.stacked-form {
  display: grid;
  gap: 12px;
}

.directory-form h3,
.directory-list h3 {
  margin-bottom: 4px;
}

.directory-form label,
.stacked-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.directory-form input,
.directory-form select,
.directory-select,
.stacked-form input {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.directory-form small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.password-generator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.password-generator button {
  min-width: 96px;
}

.directory-select {
  min-height: 34px;
  padding: 7px 9px;
  font-size: 12px;
}

.directory-row,
.portfolio-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.directory-row:last-child,
.portfolio-row:last-child {
  border-bottom: 0;
}

.directory-row strong,
.directory-row small,
.portfolio-row strong,
.portfolio-row span,
.portfolio-row small {
  display: block;
}

.directory-row small,
.portfolio-row span,
.portfolio-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.directory-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.assignment-summary {
  display: grid;
  gap: 4px;
  min-width: 130px;
}

.assignment-summary span {
  width: fit-content;
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.assignment-summary small {
  color: var(--muted);
}

.assignment-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(13, 22, 50, 0.56);
  backdrop-filter: blur(4px);
}

.assignment-card {
  width: min(1040px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(13, 22, 50, 0.3);
}

.removal-card {
  width: min(560px, 100%);
}

.removal-password {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.removal-password input {
  width: 100%;
}

.report-na-card {
  width: min(1120px, 100%);
}

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

.assignment-create-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.assignment-create-card h3 {
  margin-bottom: 5px;
}

.assignment-create-card p {
  min-height: 42px;
  margin: 0 0 12px;
  font-size: 12px;
}

.assignment-create-row,
.assignment-coach-fields {
  display: grid;
  gap: 9px;
}

.assignment-create-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

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

.assignment-coach-fields button {
  grid-column: 1 / -1;
}

.assignment-create-card input,
.assignment-create-card select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.credential-card {
  width: min(760px, 100%);
}

.credential-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.credential-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.credential-field > span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.credential-field code {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #1c2e64;
  font-size: 13px;
}

.assignment-columns {
  margin: 18px 0;
}

.assignment-columns fieldset {
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.assignment-columns legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 800;
}

.assignment-option {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 4px;
  border-bottom: 1px solid var(--line);
}

.assignment-option:last-child {
  border-bottom: 0;
}

.assignment-option input {
  margin-top: 3px;
  accent-color: var(--blue);
}

.assignment-option small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

.toggle-row {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.toggle-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.coach-gate {
  min-height: calc(100vh - 68px);
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(167, 216, 212, 0.18) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(167, 216, 212, 0.14) 0 1px, transparent 1px 100%),
    linear-gradient(145deg, #17212b, #134f55);
  background-size: 42px 42px, 42px 42px, auto;
}

.access-gateway-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 24px;
  background:
    radial-gradient(circle at 78% 8%, rgba(63, 83, 246, 0.09), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(63, 83, 246, 0.05), transparent 32%),
    #f2f4fa;
}

.access-card {
  width: min(530px, 100%);
  padding: 45px 48px 42px;
  border: 1px solid rgba(222, 226, 239, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 25px 65px rgba(35, 48, 104, 0.14);
}

.access-card-wide {
  width: min(600px, 100%);
}

.access-logo {
  display: block;
  width: 164px;
  height: auto;
  margin: 0 0 34px;
}

.access-card h1 {
  margin: 0 0 7px;
  color: #1c2848;
  font-size: 29px;
  letter-spacing: -0.025em;
}

.access-intro {
  margin: 0 0 28px;
  color: #80889f;
  font-size: 15px;
  line-height: 1.5;
}

.access-form {
  display: grid;
  gap: 16px;
}

.access-form label {
  display: grid;
  gap: 7px;
  color: #222d4b;
  font-size: 12px;
  font-weight: 750;
}

.access-form input {
  width: 100%;
  min-height: 58px;
  padding: 13px 15px;
  border: 1px solid #d8deeb;
  border-radius: 11px;
  background: #f8faff;
  color: #182340;
  font-size: 16px;
  transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.access-form input:focus {
  border-color: #6072ff;
  outline: 0;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(60, 82, 246, 0.14);
}

.access-form .access-code-input {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 20px;
  font-weight: 750;
}

.access-form .access-submit {
  min-height: 56px;
  margin-top: 2px;
  border-radius: 10px;
  background: linear-gradient(100deg, #4057ff, #293fd7);
  box-shadow: 0 10px 22px rgba(48, 67, 222, 0.22);
  font-size: 16px;
  font-weight: 750;
}

.access-forgot-link {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  margin-top: -8px;
  border: 0;
  padding: 3px 4px;
  background: transparent;
  color: var(--brand);
  font-size: 12px;
  cursor: pointer;
}

.access-forgot-link:hover {
  text-decoration: underline;
}

.access-alternate {
  margin: 25px 0 0;
  color: #8991a6;
  font-size: 13px;
}

.access-alternate button {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 3px 4px;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
}

@media (max-width: 1400px) and (min-width: 821px) {
  .shell:not(.report-mode):not(.access-mode) {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .shell:not(.report-mode):not(.access-mode) .sidebar {
    padding-inline: 18px;
  }

  .shell:not(.report-mode):not(.access-mode) .content {
    padding: 24px;
  }

  .toolbar {
    align-items: flex-start;
  }

  .toolbar .actions {
    flex: 1 1 100%;
    justify-content: flex-start;
  }

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

  .report-filter-search,
  .report-filter-bar .report-archive-toggle {
    grid-column: 1 / -1;
  }
}

.access-alternate button:hover {
  text-decoration: underline;
}

.access-card .error,
.access-card .notice {
  margin: 14px 0 0;
  font-size: 13px;
}

.coach-access-grid {
  width: min(1120px, 100%);
}

.gate-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coach-portfolio {
  padding-top: 12px;
}

.portfolio-list {
  display: grid;
}

.empty-state {
  padding: 32px;
  text-align: center;
}

.gate-mark {
  position: absolute;
  top: 28px;
  left: 34px;
  color: var(--aqua);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.gate-panel {
  width: min(560px, 100%);
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.gate-panel h1 {
  margin-bottom: 10px;
}

.upload-box {
  display: grid;
  gap: 16px;
  align-items: start;
  max-width: 620px;
}

.file-input {
  border: 1px dashed #9db2bf;
  background: var(--soft);
  border-radius: 8px;
  padding: 22px;
  display: grid;
  gap: 10px;
}

.file-input label {
  font-weight: 700;
}

.file-input small {
  color: var(--muted);
}

.primary {
  border: 0;
  background: var(--teal);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  min-height: 44px;
}

.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 10px 13px;
  border-radius: 8px;
  cursor: pointer;
}

.secondary.mini {
  padding: 8px 10px;
  min-height: 34px;
  font-size: 12px;
}

.danger {
  border-color: #c84d4d;
  background: #fff4f4;
  color: #8d2424;
}

.danger:hover {
  background: #ffe5e5;
}

.error-list {
  margin: 8px 0 0 18px;
  color: #8d2424;
  line-height: 1.55;
}

.code-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
}

.code-form input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  text-transform: uppercase;
}

.gate-panel .code-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.gate-panel .code-form label {
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gate-panel .code-form input[type="email"] {
  text-transform: none;
}

@media (max-width: 860px) {
  .directory-grid,
  .directory-lists,
  .assignment-create-grid,
  .assignment-columns,
  .coach-access-grid {
    grid-template-columns: 1fr;
  }

  .assignment-create-card p {
    min-height: 0;
  }

  .credential-field {
    grid-template-columns: 1fr;
  }

  .directory-row,
  .portfolio-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .world-average-groups {
    grid-template-columns: 1fr;
  }

  .world-averages-heading,
  .top-manager-na-heading,
  .world-average-year {
    align-items: flex-start;
    flex-direction: column;
  }

  .world-averages-meta {
    min-width: 0;
    text-align: left;
  }

  .top-manager-na-groups {
    grid-template-columns: 1fr;
  }

  .top-manager-na-meta {
    min-width: 0;
    text-align: left;
  }

  .report-filter-search {
    grid-column: 1 / -1;
  }

  .saved-report-main,
  .saved-report-assignment {
    align-items: flex-start;
    flex-direction: column;
  }

  .saved-report-actions {
    justify-content: flex-start;
  }

  .saved-report-access {
    grid-template-columns: 1fr auto;
  }

  .saved-report-expiry {
    grid-column: 1 / -1;
    text-align: left;
  }

  .saved-report-tools-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .access-gateway-shell {
    padding: 18px;
  }

  .access-card {
    padding: 32px 24px 30px;
    border-radius: 16px;
  }

  .access-logo {
    width: 145px;
    margin-bottom: 28px;
  }

  .access-card h1 {
    font-size: 25px;
  }

  .report-filter-bar {
    grid-template-columns: 1fr;
  }

  .world-average-group label {
    grid-template-columns: 1fr 82px;
  }

  .top-manager-na-group label {
    grid-template-columns: 1fr;
  }

  .report-filter-search,
  .report-filter-bar .report-archive-toggle {
    grid-column: auto;
  }

  .saved-reports-heading,
  .saved-report-main,
  .saved-report-access,
  .saved-report-assignment {
    padding-right: 18px;
    padding-left: 18px;
  }

  .saved-reports-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .saved-report-access {
    grid-template-columns: 1fr;
  }

  .saved-report-code strong {
    overflow-wrap: anywhere;
  }
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
}

.admin-report-table {
  min-width: 1320px;
}

.table th,
.table td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 11px 8px;
  vertical-align: top;
}

.table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.link-code {
  display: inline-block;
  max-width: 180px;
  padding: 5px 7px;
  border-radius: 6px;
  background: #f2f6f7;
  color: var(--teal-dark);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.actions,
.report-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

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

.ops-list {
  display: grid;
  gap: 8px;
}

.ops-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.ops-row strong {
  color: var(--ink);
}

.ops-row span {
  color: var(--muted);
  font-size: 12px;
}

.ops-row small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.ops-link {
  grid-column: 1 / -1;
  width: fit-content;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.ops-link:hover {
  text-decoration: underline;
}

.report {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(23, 33, 43, 0.12);
  width: 100%;
  overflow: hidden;
}

.report-page {
  min-height: 980px;
  padding: 58px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.report-page::after {
  content: "QUINTAUM PRO";
  position: absolute;
  right: 58px;
  bottom: 28px;
  color: #a9b8bf;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.report-page.cover::after {
  display: none;
}

.cover {
  background:
    linear-gradient(90deg, rgba(167, 216, 212, 0.22) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(167, 216, 212, 0.16) 0 1px, transparent 1px 100%),
    linear-gradient(145deg, #17212b 0%, #134f55 100%);
  background-size: 44px 44px, 44px 44px, auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  min-height: 980px;
}

.cover h1 {
  max-width: 720px;
  font-size: 62px;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.cover-mark,
.cover-kicker {
  color: var(--aqua);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cover-main {
  display: grid;
  gap: 28px;
}

.cover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 740px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.cover-grid div {
  padding: 18px 18px 18px 0;
}

.cover-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.cover-grid strong {
  display: block;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.cover .footer {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.metric {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfdfe;
}

.metric .label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric .value {
  font-size: 28px;
  margin-top: 8px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.section-title {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.contents-page {
  background: #f8fbfb;
}

.contents-head {
  max-width: 840px;
  margin-bottom: 28px;
}

.contents-head > span {
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.contents-head h2 {
  font-size: 34px;
  margin: 10px 0 12px;
}

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

.contents-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.contents-item:hover {
  border-color: var(--teal);
  transform: translateY(-1px);
}

.contents-item > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-weight: 800;
}

.contents-item strong {
  display: block;
  margin-bottom: 5px;
}

.contents-item p {
  margin: 0;
  font-size: 14px;
}

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

.section-title > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-weight: 700;
}

.section-title h2 {
  margin-bottom: 7px;
}

.section-title p {
  margin: 0;
  max-width: 760px;
}

.lead {
  font-size: 17px;
  max-width: 920px;
  color: #40505c;
  margin: 22px 0 28px;
}

.subsection {
  margin: 30px 0 14px;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.big-picture {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.big-picture-copy {
  border-left: 4px solid var(--teal);
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-band {
  display: inline-grid;
  gap: 6px;
  width: fit-content;
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #17212b;
  color: #fff;
}

.profile-band span {
  color: var(--aqua);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-band strong {
  font-size: 24px;
}

.summary-stack {
  display: grid;
  gap: 12px;
}

.summary-stack .report-metric {
  min-height: auto;
  padding: 16px;
}

.summary-stack .metric-number {
  font-size: 30px;
}

.gauge {
  --p: 0;
  display: grid;
  place-items: center;
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
}

.gauge-ring {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #fff 0 58%, transparent 59%),
    conic-gradient(var(--teal) calc(var(--p) * 1%), #e4ecef 0);
}

.gauge-ring div {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
  text-align: center;
}

.gauge-ring strong {
  font-size: 34px;
}

.gauge-ring span {
  color: var(--muted);
  font-size: 12px;
}

.report-metric {
  border: 1px solid #cbd8dd;
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.report-metric:first-child {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}

.metric-kicker {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.report-metric:first-child .metric-kicker,
.report-metric:first-child .metric-detail {
  color: rgba(255, 255, 255, 0.75);
}

.metric-number {
  font-size: 42px;
  font-weight: 800;
  margin: 16px 0 8px;
  overflow-wrap: anywhere;
}

.metric-detail {
  color: var(--muted);
  font-size: 13px;
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(170px, 1.15fr) minmax(190px, 2fr) 78px;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eef2f4;
}

.wheel-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: center;
}

.radar-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
  padding: 14px;
}

.radar {
  width: 100%;
  min-height: 300px;
  overflow: visible;
}

.radar-grid circle,
.radar-grid line {
  fill: none;
  stroke: #d7e2e6;
  stroke-width: 0.8;
}

.radar-grid text {
  fill: #51636e;
  font-size: 5.4px;
  text-anchor: middle;
}

.radar-measured {
  fill: rgba(9, 122, 120, 0.32);
  stroke: var(--teal);
  stroke-width: 2;
}

.radar-sentiment {
  fill: rgba(216, 170, 41, 0.22);
  stroke: var(--yellow);
  stroke-width: 1.6;
}

.legend {
  display: flex;
  gap: 14px;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
}

.legend span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.legend-measured {
  background: var(--teal);
}

.legend-sentiment {
  background: var(--yellow);
}

.signal-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.signal-cell {
  min-height: 104px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.signal-cell:nth-child(3n) {
  border-right: 0;
}

.signal-cell strong {
  display: block;
  margin-bottom: 8px;
}

.signal-cell span {
  color: var(--muted);
  font-size: 12px;
}

.signal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 9px;
}

.signal-meta span {
  text-align: right;
}

.signal-value {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 4px 9px;
  background: var(--brand-pale);
  color: var(--brand);
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 800;
}

.mini-meter {
  height: 7px;
  background: #e8eef1;
  border-radius: 999px;
  overflow: hidden;
}

.mini-meter i {
  display: block;
  width: var(--w);
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #45a6a0);
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
}

.report-table th,
.report-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}

.report-table th {
  background: #f2f6f7;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-table td:last-child {
  text-align: right;
}

.report-table.compact td:first-child {
  color: #30434f;
}

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

.pyramid-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
}

.pyramid {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.pyramid-layer {
  width: calc(48% + var(--layer) * 11%);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(90deg, #0f6869, #4d9190);
  border-radius: 8px;
}

.pyramid-layer span {
  font-weight: 700;
}

.pyramid-layer strong {
  font-size: 22px;
}

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

.relation-panel {
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.relation-panel span {
  color: #30434f;
  font-weight: 700;
}

.relation-panel strong {
  display: block;
  font-size: 30px;
  margin: 8px 0 12px;
}

.insight-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.insight-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.insight-panel.dark {
  background: #17212b;
  color: #fff;
  border-color: #17212b;
}

.insight-panel.dark h3 {
  color: #fff;
}

.preference-bars {
  display: grid;
  gap: 10px;
}

.pref-row {
  display: grid;
  gap: 6px;
}

.pref-row > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.pref-row strong {
  font-size: 13px;
}

.pref-row span {
  color: var(--muted);
  font-weight: 700;
}

.pref-track {
  height: 8px;
  border-radius: 999px;
  background: #e8eef1;
  overflow: hidden;
}

.pref-track i {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--teal), #45a6a0);
}

.focus-panel {
  display: grid;
  gap: 10px;
}

.focus-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stressor-layout .focus-item,
.insight-panel:not(.dark) .focus-item {
  color: var(--ink);
  background: #fbfdfe;
  border-color: var(--line);
}

.focus-item > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.focus-item strong {
  display: block;
  font-size: 14px;
}

.focus-item small {
  color: var(--aqua);
  font-weight: 700;
}

.focus-item em,
.priority-item em {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.stressor-layout .focus-item small,
.insight-panel:not(.dark) .focus-item small {
  color: var(--teal-dark);
}

.stressor-layout .focus-item em,
.insight-panel:not(.dark) .focus-item em,
.priority-column.strengths .priority-item em {
  color: var(--muted);
}

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

.risk-card {
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 16px;
  background: #fff;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.risk-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.risk-card strong {
  font-size: 34px;
}

.risk-meter {
  height: 8px;
  border-radius: 999px;
  background: #e8eef1;
  overflow: hidden;
}

.risk-meter i {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, #b84b4b, #d8aa29, #508244);
}

.risk-meter.score-strong i,
.risk-meter.score-good i {
  background: #87cf2e;
}

.risk-meter.score-watch i {
  background: #f2cf39;
}

.risk-meter.score-low i {
  background: #ff6b5f;
}

.risk-card.score-low,
.risk-card.score-watch,
.risk-card.score-good,
.risk-card.score-strong,
.risk-card.score-empty {
  background: #fff;
  color: var(--ink);
}

.risk-card.score-low strong,
.risk-card.score-watch strong,
.risk-card.score-good strong,
.risk-card.score-strong strong {
  color: var(--brand);
}

.stressor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.stress-note {
  border-radius: 8px;
  padding: 20px;
  background: #f6f9fa;
  border: 1px solid var(--line);
}

.stress-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.stress-note p {
  margin: 0;
}

.coach-note {
  margin-top: 22px;
  border: 1px solid #d7e2e6;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  padding: 16px 18px;
  background: #f8fbfb;
}

.coach-note strong {
  display: block;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 8px;
}

.coach-note p {
  margin: 0;
}

.priority-page {
  background: #ffffff;
}

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

.priority-column {
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 20px;
}

.priority-column h3 {
  margin-bottom: 16px;
  color: var(--teal-dark);
}

.priority-column.focus {
  background: #17212b;
  border-color: #17212b;
  color: #fff;
}

.priority-column.focus h3 {
  color: #fff;
}

.priority-list {
  display: grid;
  gap: 10px;
}

.priority-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: #f8fbfb;
  border: 1px solid var(--line);
}

.priority-column.focus .priority-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.priority-item > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 800;
}

.priority-item.strength > span {
  background: var(--green);
}

.priority-item strong {
  display: block;
}

.priority-item small {
  display: block;
  margin-top: 4px;
  color: var(--teal-dark);
  font-weight: 800;
}

.priority-column.focus .priority-item small {
  color: var(--aqua);
}

.prompt-board {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(9, 122, 120, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(9, 122, 120, 0.08) 0 1px, transparent 1px 100%),
    #f8fbfb;
  background-size: 28px 28px;
}

.prompt-board h3 {
  margin-bottom: 14px;
}

.prompt-item {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.prompt-item:first-of-type {
  border-top: 0;
}

.prompt-item p {
  margin: 4px 0 0;
}

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

.work-board > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.work-board h3 {
  margin-bottom: 12px;
  color: var(--teal-dark);
}

.emotion-board {
  min-height: 220px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(9, 122, 120, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(9, 122, 120, 0.08) 0 1px, transparent 1px 100%),
    #fbfdfe;
  background-size: 28px 28px;
  padding: 20px;
}

.emotion-board span {
  display: inline-flex;
  margin: 0 9px 9px 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: #17212b;
  color: #fff;
  font-weight: 700;
}

.bar-row strong {
  font-size: 14px;
  line-height: 1.25;
}

.bar-track {
  height: 10px;
  border-radius: 999px;
  background: #e8eef1;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--teal), #45a6a0);
}

.pill,
.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.score-low {
  background: var(--red-soft);
  color: #8d2424;
}

.score-watch {
  background: var(--amber-soft);
  color: #76530a;
}

.score-good {
  background: var(--blue-soft);
  color: #214f86;
}

.score-strong {
  background: var(--green-soft);
  color: #3f6c35;
}

.score-empty {
  background: #eef2f4;
  color: var(--muted);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  margin-left: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #edf3f5;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  vertical-align: middle;
  white-space: nowrap;
}

html {
  scroll-behavior: smooth;
}

.rank {
  display: inline-flex;
  margin-left: 8px;
  color: #075f5d;
  background: #e8f3f2;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  vertical-align: middle;
}

.emotion {
  display: inline-flex;
  margin: 0 8px 8px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  background: #fbfdfe;
}

.report-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  margin: -4px 0 18px;
}

.report-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fbfdfe;
}

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

.wheel-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 10px;
  min-height: 0;
  background: #fbfdfe;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.wheel-score {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.wheel-score span {
  display: block;
  height: 66px;
  width: 16px;
  border-radius: 999px;
  background: #e6edf0;
  position: relative;
  overflow: hidden;
}

.wheel-score i {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: var(--h);
  background: var(--blue);
}

.wheel-score span:nth-child(2) i {
  background: var(--yellow);
}

.wheel-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  width: 100%;
  margin-top: 0;
}

.wheel-values span {
  display: grid;
  justify-items: center;
  min-width: 0;
  border-radius: 8px;
  background: #edf3f5;
  padding: 5px 3px;
  font-size: 10px;
  font-weight: 700;
  overflow: hidden;
}

.wheel-values b {
  max-width: 100%;
  color: var(--brand);
  font-size: 12px;
  line-height: 1.05;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wheel-values small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.wheel-item p {
  margin: 8px 0 0;
  font-size: 12px;
}

/* Quintaum V3-inspired report skin */
body {
  background: linear-gradient(180deg, #f6f8fc 0%, #edf1f7 100%);
}

.sidebar {
  background: #172138;
}

.brand {
  color: #dfe5ff;
}

.nav button.active,
.primary {
  background: var(--brand);
  border-color: var(--brand);
}

.coach-gate {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, #0c1729 0%, #101b70 44%, #1729ee 100%);
}

.gate-mark {
  color: rgba(255, 255, 255, 0.76);
}

.report {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.report-page {
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.report-page::after {
  content: "QUINTAUM";
  color: #9aa4bf;
}

.cover {
  --cover-blue: #07178f;
  --cover-soft-blue: #2f49ff;
  background:
    radial-gradient(circle at 78% 54%, rgba(60, 82, 246, 0.08), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  color: var(--ink);
  border-top: 0;
  border-color: #dfe4ff;
  padding: 70px 66px 52px;
  isolation: isolate;
}

.cover-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.cover-controlbar {
  position: absolute;
  top: 26px;
  left: 66px;
  right: 66px;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.cover-brand img {
  width: min(305px, 48vw);
  height: auto;
  object-fit: contain;
}

.cover-brand span,
.cover-kicker,
.contents-head > span,
.metric-kicker,
.section-title > span,
.subsection,
.table th,
.cover-grid span {
  font-family: var(--display-font);
  letter-spacing: 0.12em;
}

.cover-brand span {
  color: var(--cover-soft-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.34em;
}

.cover-kicker {
  color: var(--cover-soft-blue);
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 34px;
}

.cover h1 {
  max-width: 780px;
  color: var(--cover-blue);
  font-family: "Bodoni 72", "Bodoni MT", "Didot", "Georgia", serif;
  font-size: 82px;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.02em;
}

html[lang="de"] .cover h1 {
  font-size: 68px;
  overflow-wrap: normal;
}

.cover-main {
  position: relative;
  z-index: 1;
  margin-top: auto;
  margin-bottom: 58px;
  gap: 0;
}

.cover-grid {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin-top: 58px;
  padding: 22px 28px;
  border: 1px solid rgba(47, 73, 255, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 20%, rgba(47, 73, 255, 0.2), transparent 22%),
    linear-gradient(135deg, rgba(7, 23, 143, 0.72), rgba(13, 33, 97, 0.58));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 18px 46px rgba(47, 73, 255, 0.16);
  backdrop-filter: blur(10px);
}

.cover-grid span,
.cover .footer {
  color: var(--muted);
}

.cover-grid span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.cover-grid strong {
  color: #fff;
  font-family: "Bodoni 72", "Bodoni MT", "Didot", "Georgia", serif;
  font-size: 26px;
  font-weight: 400;
  text-align: center;
}

.cover-grid div {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.cover-grid div:not(:first-child) {
  padding-left: 34px;
}

.cover-grid div:last-child {
  border-right: 0;
}

.cover-icon {
  width: 34px;
  height: 34px;
  color: #2f7cff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(47, 124, 255, 0.45));
}

.cover .footer {
  position: relative;
  z-index: 1;
  max-width: none;
  padding-top: 22px;
  border-top: 1px solid #b7c1ff;
  font-size: 11px;
}

.cover-dotfield {
  position: absolute;
  right: -360px;
  top: 80px;
  z-index: 0;
  width: min(791px, 74%);
  aspect-ratio: 1 / 1;
  opacity: 0.055;
  background: url("/branding/quintaum-dotmark.png") center / contain no-repeat;
  filter: saturate(1.25);
  pointer-events: none;
}

.contents-page,
.priority-page {
  background: #fbfcff;
}

.contents-head > span,
.subsection,
.priority-column h3,
.section-title h2 {
  color: var(--brand);
}

.contents-head h2,
.section-title h2 {
  font-family: var(--display-font);
}

.contents-item,
.metric,
.report-metric,
.radar-wrap,
.signal-matrix,
.signal-cell,
.insight-panel,
.stress-note,
.priority-column,
.prompt-board,
.wheel-item,
.relation-card {
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 6px 18px rgba(57, 73, 132, 0.05);
}

.contents-item:hover {
  border-color: var(--brand);
}

.contents-item > span,
.section-title > span,
.priority-item > span {
  background: var(--brand);
}

.big-picture-copy {
  border-left-color: var(--brand);
}

.profile-band,
.priority-column.focus,
.insight-panel.dark {
  background: linear-gradient(135deg, #172138 0%, #2639c7 100%);
  border-color: #2639c7;
}

.profile-band span,
.priority-column.focus .priority-item small {
  color: #dfe5ff;
}

.gauge {
  min-height: 260px;
  align-content: center;
  gap: 10px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 8px 22px rgba(57, 73, 132, 0.07);
}

.gauge-ring {
  width: 205px;
  height: 205px;
  background:
    radial-gradient(circle at center, #fff 0 56%, transparent 57%),
    conic-gradient(var(--brand) calc(var(--p) * 1%), #e8ecff 0);
  box-shadow: 0 12px 32px rgba(60, 82, 246, 0.14);
}

.gauge-ring div {
  box-shadow: inset 0 0 0 1px #e2e6f8;
}

.gauge-ring strong {
  color: var(--brand);
  font-family: var(--display-font);
}

.gauge em {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 12px;
  background: var(--brand-pale);
  color: var(--brand);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-metric:first-child {
  background: linear-gradient(135deg, #3c52f6 0%, #6d7cff 100%);
  border-color: #3c52f6;
}

.metric .value,
.metric-number {
  color: #404659;
  font-family: var(--display-font);
}

.report-metric:first-child .metric-number {
  color: #fff;
}

.radar-grid circle,
.radar-grid line {
  stroke: #dfe4f2;
}

.radar-measured {
  fill: rgba(60, 82, 246, 0.24);
  stroke: var(--brand);
}

.radar-sentiment {
  fill: rgba(243, 173, 39, 0.18);
  stroke: #f3ad27;
}

.legend i {
  background: var(--brand);
}

.legend span:nth-child(2) i {
  background: #f3ad27;
}

.mini-meter i,
.bar-fill,
.pref-fill {
  background: linear-gradient(90deg, #3c52f6 0%, #7a88ff 100%);
}

.signal-cell {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.score-badge,
.status-chip,
.rank,
.wheel-values span {
  background: var(--brand-pale);
  color: var(--brand);
}

.score-low {
  background: #fff0ee;
  color: #b94136;
}

.score-watch {
  background: #fff6df;
  color: #9a6814;
}

.score-good {
  background: #eef2ff;
  color: #3349d2;
}

.score-strong {
  background: #edf8dd;
  color: #4d8121;
}

.risk-card.score-low,
.risk-card.score-watch,
.risk-card.score-good,
.risk-card.score-strong,
.risk-card.score-empty {
  background: #fff;
  color: var(--ink);
}

.risk-card.score-low strong,
.risk-card.score-watch strong,
.risk-card.score-good strong,
.risk-card.score-strong strong {
  color: var(--brand);
}

.pyramid-layer {
  background: linear-gradient(90deg, #3c52f6 0%, #7a88ff 100%) !important;
}

.priority-column.focus .priority-item {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.priority-item.strength > span {
  background: #87cf2e;
  color: #1f3d13;
}

.wheel-score i {
  background: var(--brand);
}

.wheel-score span:nth-child(2) i {
  background: #f3ad27;
}

.report-meta span {
  background: #fbfcff;
}

.work-board {
  overflow: hidden;
}

.work-board > div {
  overflow: hidden;
}

.work-board .bar-row {
  grid-template-columns: minmax(0, 1.05fr) minmax(104px, 0.72fr) 56px;
  gap: 10px;
}

.work-board .bar-track {
  min-width: 0;
}

.work-board .score-badge {
  min-width: 56px;
  padding-inline: 8px;
}

/* Branded first report pages */
.branded-page {
  --cover-blue: #07178f;
  --cover-soft-blue: #2f49ff;
  padding: 58px 64px 78px;
  background:
    radial-gradient(circle at 86% 12%, rgba(47, 73, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.branded-page::after {
  display: none;
}

.page-topline,
.page-footerline {
  position: relative;
  z-index: 1;
  height: 1px;
  background: #b7c1ff;
}

.page-topline {
  margin-bottom: 24px;
}

.page-topline::before,
.page-footerline::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cover-soft-blue);
}

.page-brand-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
}

.page-brand-row img {
  width: 210px;
  height: auto;
}

.page-brand-row span {
  color: var(--cover-soft-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.page-dotmark {
  position: absolute;
  right: -245px;
  top: 54px;
  z-index: 0;
  width: min(520px, 52%);
  aspect-ratio: 1 / 1;
  opacity: 0.04;
  background: url("/branding/quintaum-dotmark.png") center / contain no-repeat;
  pointer-events: none;
}

.page-footerline {
  margin-top: 42px;
}

.page-footer-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 22px;
  color: #667199;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-footer-row b,
.page-footer-row strong {
  color: var(--cover-soft-blue);
  letter-spacing: 0.12em;
}

.page-footer-row strong {
  margin-left: auto;
  font-family: "Bodoni 72", "Bodoni MT", "Didot", "Georgia", serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.branded-page .section-title {
  position: relative;
  z-index: 1;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.branded-page .section-title > span {
  width: 68px;
  height: 68px;
  border: 8px solid #eef2ff;
  box-shadow: 0 8px 18px rgba(47, 73, 255, 0.2);
}

.branded-page .section-title h2 {
  color: #07142f;
  font-family: var(--display-font);
  font-size: 38px;
  letter-spacing: 0.04em;
}

.branded-page .section-title p {
  color: #59648b;
  font-size: 18px;
}

.contents-page .page-brand-row,
.priority-page .page-brand-row {
  margin-bottom: 34px;
}

.contents-head {
  position: relative;
  z-index: 1;
}

.contents-head > span {
  color: var(--cover-soft-blue);
  letter-spacing: 0.26em;
}

.contents-head h2 {
  max-width: 720px;
  color: var(--cover-blue);
  font-family: "Bodoni 72", "Bodoni MT", "Didot", "Georgia", serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.contents-head p {
  max-width: 720px;
  color: #59648b;
  font-size: 18px;
}

.contents-grid {
  position: relative;
  z-index: 1;
  gap: 16px;
  margin-top: 32px;
}

.contents-item {
  position: relative;
  grid-template-columns: 58px 1fr 38px;
  min-height: 112px;
  padding: 18px 20px;
  border-color: #cfd7ff;
  box-shadow: 0 12px 28px rgba(57, 73, 132, 0.07);
}

.contents-item::after {
  display: none;
}

.contents-item i {
  display: grid;
  place-items: center;
  align-self: start;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f3ff;
  color: var(--cover-soft-blue);
  font-size: 22px;
  font-style: normal;
  line-height: 1;
}

.contents-item > span {
  width: 46px;
  height: 46px;
  box-shadow: 0 8px 18px rgba(47, 73, 255, 0.2);
}

.contents-item strong {
  color: var(--cover-blue);
  font-family: var(--display-font);
  font-size: 19px;
  font-weight: 700;
}

.contents-item p {
  margin-top: 8px;
  border-top: 0;
  padding-top: 0;
  color: #626d95;
  font-size: 14px;
}

.priority-page.branded-page .section-title {
  grid-template-columns: 64px 1fr;
}

.priority-page.branded-page .section-title h2 {
  color: var(--cover-blue);
  font-family: "Bodoni 72", "Bodoni MT", "Didot", "Georgia", serif;
  font-size: 54px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.priority-page.branded-page .priority-layout {
  position: relative;
  z-index: 1;
  gap: 26px;
}

.priority-page.branded-page .priority-column {
  min-height: 640px;
  border-color: #c9d2ff;
  padding: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(57, 73, 132, 0.06);
}

.priority-page.branded-page .priority-column.focus {
  background: rgba(255, 255, 255, 0.9);
  border-color: #7181ff;
  color: var(--ink);
}

.priority-page.branded-page .priority-column h3,
.priority-page.branded-page .priority-column.focus h3,
.priority-page.branded-page .prompt-board h3 {
  color: var(--cover-blue);
  font-family: "Bodoni 72", "Bodoni MT", "Didot", "Georgia", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.priority-page.branded-page .priority-list {
  gap: 14px;
}

.priority-page.branded-page .priority-item {
  grid-template-columns: 54px 1fr;
  min-height: 76px;
  border-color: #d8def7;
  padding: 14px 16px;
  background: #fff;
}

.priority-page.branded-page .priority-column.focus .priority-item {
  background: #fff;
  border-color: #cfd7ff;
}

.priority-page.branded-page .priority-item > span {
  width: 44px;
  height: 44px;
  box-shadow: 0 8px 18px rgba(47, 73, 255, 0.16);
}

.priority-page.branded-page .priority-item.strength > span {
  background: #5fbd13;
  color: #fff;
}

.priority-page.branded-page .priority-item strong {
  color: #111a39;
}

.priority-page.branded-page .priority-item small,
.priority-page.branded-page .priority-column.focus .priority-item small {
  color: var(--cover-soft-blue);
}

.priority-page.branded-page .priority-item em,
.priority-page.branded-page .priority-column.focus .priority-item em {
  color: #5c668d;
}

.priority-page.branded-page .prompt-board {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  border-color: #cfd7ff;
  padding: 28px 34px;
  background: rgba(255, 255, 255, 0.88);
}

.priority-page.branded-page .prompt-item {
  position: relative;
  padding: 10px 36px 10px 14px;
  border: 1px solid #dbe1f8;
  border-bottom: 0;
  border-radius: 0;
  background: #fff;
}

.priority-page.branded-page .prompt-item:first-of-type {
  border-radius: 8px 8px 0 0;
}

.priority-page.branded-page .prompt-item:last-child {
  border-bottom: 1px solid #dbe1f8;
  border-radius: 0 0 8px 8px;
}

.priority-page.branded-page .prompt-item::after {
  content: ">";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--cover-soft-blue);
  font-size: 24px;
  transform: translateY(-50%) scaleX(0.55);
}

.priority-page:not(.branded-page) .prompt-board {
  border-color: #cfd7ff;
  padding: 28px 34px;
  background: rgba(255, 255, 255, 0.9);
}

.priority-page:not(.branded-page) .prompt-board h3 {
  color: var(--cover-blue, #07178f);
  font-family: "Bodoni 72", "Bodoni MT", "Didot", "Georgia", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.priority-page:not(.branded-page) .prompt-item {
  position: relative;
  padding: 10px 36px 10px 14px;
  border: 1px solid #dbe1f8;
  border-bottom: 0;
  border-radius: 0;
  background: #fff;
}

.priority-page:not(.branded-page) .prompt-item:first-of-type {
  border-radius: 8px 8px 0 0;
}

.priority-page:not(.branded-page) .prompt-item:last-child {
  border-bottom: 1px solid #dbe1f8;
  border-radius: 0 0 8px 8px;
}

.priority-page:not(.branded-page) .prompt-item::after {
  content: ">";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--cover-soft-blue, #2f49ff);
  font-size: 24px;
  transform: translateY(-50%) scaleX(0.55);
}

.priority-page:not(.branded-page) .prompt-item strong {
  color: #111a39;
}

.priority-page:not(.branded-page) .prompt-item p {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.35;
}

.big-picture-page .report-meta {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
}

.big-picture-page .report-meta span {
  border-color: #cfd7ff;
  color: #2d3766;
  box-shadow: 0 6px 16px rgba(57, 73, 132, 0.05);
}

.big-picture-page .big-picture {
  position: relative;
  z-index: 1;
  grid-template-columns: 360px minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: stretch;
}

.big-picture-page .gauge {
  min-height: 320px;
  border-color: #c9d2ff;
}

.big-picture-page .gauge-ring {
  width: 230px;
  height: 230px;
}

.big-picture-page .big-picture-copy {
  border-left-color: var(--cover-soft-blue);
}

.big-picture-page .profile-band {
  background: linear-gradient(135deg, #07178f 0%, #1429cf 100%);
  box-shadow: 0 12px 26px rgba(7, 23, 143, 0.18);
}

.big-picture-page .summary-stack .report-metric:first-child {
  background:
    radial-gradient(circle at 22% 32%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(135deg, #2f49ff 0%, #1429cf 100%);
  border-color: #2f49ff;
}

.big-picture-page .summary-stack .report-metric {
  border-color: #d2d9ff;
}

.big-picture-page .wheel-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
}

.big-picture-page .radar-wrap {
  border-color: #cfd7ff;
}

.big-picture-page .wheel {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.big-picture-page .wheel-item {
  border-color: #d6dcf5;
}

.big-picture-page .grid.cols-3 {
  position: relative;
  z-index: 1;
  gap: 20px 30px;
}

.big-picture-page .metric {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  min-height: 96px;
  border-color: #d2d9ff;
  background: #fff;
}

.big-picture-page .metric::before {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-pale);
  box-shadow: inset 0 0 0 1px #dbe1ff;
}

.big-picture-page .metric .label,
.big-picture-page .metric .value {
  grid-column: 2;
}

.big-picture-page .metric .value {
  color: #07142f;
  font-size: 32px;
}

.notice {
  color: #7a5b12;
  background: #fff7df;
  border: 1px solid #f1d586;
  padding: 12px 14px;
  border-radius: 8px;
}

.error {
  color: #8d2424;
}

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

  .sidebar {
    padding: 18px;
  }

  .content {
    padding: 14px;
  }

  .admin-section-nav {
    position: static;
    flex-wrap: nowrap;
    margin-top: -4px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }

  .admin-section-nav a {
    flex: 0 0 auto;
    min-height: 44px;
  }

  .toolbar,
  .panel-head,
  .code-form {
    flex-direction: column;
    align-items: stretch;
  }

  .search {
    min-width: 0;
    width: 100%;
  }

  .overview,
  .contents-grid,
  .contents-summary,
  .priority-layout,
  .hero-metrics,
  .big-picture,
  .wheel-layout,
  .signal-matrix,
  .stress-board,
  .risk-strip,
  .stressor-layout,
  .work-board,
  .insight-split,
  .pyramid-layout,
  .relation-grid,
  .grid.cols-2,
  .grid.cols-3,
  .wheel {
    grid-template-columns: 1fr;
  }

  .big-picture-copy {
    border-left: 0;
    border-top: 4px solid var(--teal);
    padding-left: 0;
    padding-top: 18px;
  }

  .signal-cell,
  .signal-cell:nth-child(3n) {
    border-right: 0;
  }

  .pyramid-layer {
    width: 100%;
  }

  .report-page {
    padding: 24px;
    min-height: auto;
  }

  .report-page::after {
    right: 28px;
    bottom: 18px;
  }

  .cover {
    min-height: 760px;
  }

  .cover h1 {
    font-size: 32px;
    line-height: 1.08;
  }

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

  .cover-grid div {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .metric-number {
    font-size: 36px;
  }
}

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

  body {
    background: #fff;
  }

  .sidebar,
  .toolbar,
  .no-print {
    display: none;
  }

  .shell {
    display: block;
  }

  .content {
    padding: 0;
  }

  .view {
    max-width: none;
  }

  .report {
    border: 0;
  }

  .report-page {
    break-after: page;
    min-height: calc(297mm - 24mm);
    border: 1.15px solid var(--brand);
    border-top: 5px solid var(--brand);
    box-shadow: none;
    padding: 18mm;
    margin: 0 0 3mm;
  }

  .report-page::after {
    right: 18mm;
    bottom: 10mm;
  }

  .cover {
    min-height: calc(297mm - 24mm);
  }

  .report {
    box-shadow: none;
  }
}

/* CR2 — colleague-led structure in the established Quintaum report language */
.cr2-report {
  --cr2-navy: #07178f;
  --cr2-ink: #111a39;
  --cr2-copy: #59648b;
  --cr2-border: #d8def3;
  --cr2-blue: #3c52f6;
  --cr2-blue-soft: #f1f4ff;
}

.cr2-report .section-title > span {
  transform: translateY(-12px);
}

.shell.cr2-mode .content {
  min-width: 0;
  padding: 18px 24px 24px 278px;
}

.shell.cr2-mode .view {
  width: 100%;
  max-width: 1180px;
  overflow: visible;
}

.cr2-side-toc {
  position: fixed;
  left: 18px;
  top: 18px;
  bottom: 18px;
  z-index: 30;
  width: 236px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #cbd4ff;
  border-top: 5px solid var(--brand);
  background:
    radial-gradient(circle at 105% 8%, rgba(60, 82, 246, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f6ff 100%);
  box-shadow: 0 18px 42px rgba(20, 35, 105, 0.16);
}

.cr2-toc-brand {
  position: relative;
  padding: 20px 18px 15px;
  border-bottom: 1px solid #dbe1ff;
}

.cr2-toc-logo {
  display: block;
  width: 154px;
  height: auto;
  margin-bottom: 16px;
}

.cr2-toc-dot {
  display: none;
}

.cr2-toc-brand span,
.cr2-toc-brand strong {
  display: block;
}

.cr2-toc-brand span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cr2-toc-brand strong {
  margin-top: 4px;
  color: #07178f;
  font-family: var(--display-font);
  font-size: 21px;
  letter-spacing: 0.03em;
}

.cr2-side-toc nav {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 4px;
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  scrollbar-width: thin;
  scrollbar-color: #b8c2f5 transparent;
}

.cr2-side-toc nav a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 5px 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #394260;
  text-decoration: none;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.cr2-side-toc nav a:hover {
  border-color: #ccd5ff;
  background: #fff;
  color: var(--brand);
  transform: translateX(2px);
}

.cr2-side-toc nav a i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf0ff;
  color: var(--brand);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px #d7ddff;
}

.cr2-side-toc nav a span {
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
}

.cr2-side-toc nav a.active {
  border-color: var(--brand);
  background: linear-gradient(135deg, #2438d1, #5369ff);
  color: #fff;
  box-shadow: 0 8px 16px rgba(60, 82, 246, 0.2);
}

.cr2-side-toc nav a.active i {
  background: #fff;
  color: var(--brand);
  box-shadow: none;
}

.cr2-toc-actions {
  display: grid;
  gap: 7px;
  padding: 10px;
  border-top: 1px solid #dbe1ff;
  background: rgba(247, 249, 255, 0.94);
}

.cr2-language-control {
  display: grid;
  gap: 5px;
  color: #526080;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cr2-language-control select {
  width: 100%;
  min-height: 36px;
  padding: 7px 28px 7px 9px;
  border: 1px solid #cbd4ff;
  border-radius: 8px;
  background: #fff;
  color: #14245e;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.cr2-language-control select:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(60, 82, 246, 0.13);
}

.cr2-toc-action {
  width: 100%;
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.cr2-toc-action:hover,
.cr2-toc-action:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(60, 82, 246, 0.15);
  outline-offset: 2px;
}

.cr2-toc-action.secondary:hover {
  border-color: #b8c3ff;
  box-shadow: 0 7px 14px rgba(60, 82, 246, 0.1);
}

.cr2-toc-action.primary {
  background: linear-gradient(135deg, #2438d1, #5369ff);
  box-shadow: 0 8px 16px rgba(60, 82, 246, 0.2);
}

.cr2-toc-action svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cr2-toc-progress {
  height: 5px;
  background: #e5e9fa;
}

.cr2-toc-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #2438d1, #6e80ff);
  transition: width 0.15s linear;
}

.cr2-r1 {
  --tone: #d63a2f;
  --tone-dark: #a32019;
  --tone-soft: #fdeeec;
  --tone-gradient: linear-gradient(135deg, #e64b3f, #c92622);
}

.cr2-r2 {
  --tone: #ff9a3b;
  --tone-dark: #a9560c;
  --tone-soft: #fff3e2;
  --tone-gradient: linear-gradient(135deg, #ffb241, #ff8f35);
}

.cr2-r3 {
  --tone: #f7cb31;
  --tone-dark: #80660e;
  --tone-soft: #fdf7dd;
  --tone-gradient: linear-gradient(135deg, #ffd83f, #f4bf24);
}

.cr2-r4 {
  --tone: #8ad42d;
  --tone-dark: #4c7d15;
  --tone-soft: #f0f9e2;
  --tone-gradient: linear-gradient(135deg, #a4df37, #6fca22);
}

.cr2-r5 {
  --tone: #25a341;
  --tone-dark: #137030;
  --tone-soft: #e6f6ea;
  --tone-gradient: linear-gradient(135deg, #32b84d, #178f35);
}

.cr2-na {
  --tone: #c3c8d4;
  --tone-dark: #6b7085;
  --tone-soft: #f1f2f6;
  --tone-gradient: linear-gradient(135deg, #d4d8e2, #b9bfce);
}

.cr2-cover-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand);
  font-family: var(--display-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cr2-cover-subtitle {
  max-width: 700px;
  margin: 24px 0 0;
  color: #59648b;
  font-size: 19px;
  line-height: 1.55;
}

.cr2-report .cover-grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(180px, 0.75fr);
  max-width: 700px;
}

.cr2-report .cover-grid strong {
  overflow-wrap: normal;
  white-space: nowrap;
}

.cr2-tm-notice {
  width: min(700px, 100%);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid #ccd5ff;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(47, 73, 255, 0.1);
  backdrop-filter: blur(8px);
}

.cr2-tm-notice > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef1f7;
  color: #707891;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px #d7dce8;
}

.cr2-tm-notice strong {
  display: block;
  color: var(--cr2-navy);
  font-family: var(--display-font);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cr2-tm-notice p {
  margin: 4px 0 0;
  color: #59648b;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .cr2-report .section-title {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
  }

  .cr2-report .cover .cr2-tm-notice {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 11px;
    padding: 12px 13px;
  }

  .cr2-report .cover .cr2-tm-notice > span {
    width: 38px;
    height: 38px;
  }
}

@media print {
  .cr2-report .section-title > span {
    transform: translateY(-9px);
  }

  .cr2-report .cover .cr2-tm-notice {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    box-shadow: none;
    backdrop-filter: none;
    break-inside: avoid;
  }

  .cr2-report .cover .cr2-tm-notice > span {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .cr2-report .cover .cr2-tm-notice strong,
  .cr2-report .cover .cr2-tm-notice p {
    font-size: 10px;
  }

  .cr2-report .cover .cr2-tm-notice p {
    margin-top: 2px;
    line-height: 1.3;
  }
}

.cr2-section-intro {
  position: relative;
  margin: 4px 0 24px;
  padding: 24px 26px;
  overflow: visible;
  border: 1px solid #d5dcff;
  border-left: 5px solid var(--brand);
  background:
    radial-gradient(circle at 92% 24%, rgba(60, 82, 246, 0.09), transparent 26%),
    linear-gradient(135deg, #ffffff, #f7f9ff);
}

.cr2-section-intro > span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cr2-section-intro h3 {
  display: flex;
  align-items: center;
  color: var(--cr2-navy);
  font-family: var(--display-font);
  font-size: 24px;
}

.cr2-section-intro p {
  max-width: 850px;
  margin: 9px 0 0;
  color: var(--cr2-copy);
}

.cr2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 17px;
  align-items: stretch;
}

.cr2-feature-card,
.cr2-panel,
.cr2-detail-block,
.cr2-priority-group {
  border: 1px solid var(--cr2-border);
  background: #fff;
  box-shadow: 0 10px 26px rgba(57, 73, 132, 0.07);
}

.cr2-feature-card {
  min-width: 0;
  min-height: 456px;
  padding: 16px 18px 17px;
  border-radius: 14px;
  text-align: center;
}

.cr2-feature-head {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  width: 100%;
  min-height: 42px;
  margin-bottom: 13px;
  text-align: left;
}

.cr2-feature-head h2 {
  margin: 0;
  color: var(--brand);
  font-family: var(--display-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cr2-info {
  position: relative;
  z-index: 12;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  margin-left: 14px;
  vertical-align: 0.12em;
  text-align: left;
  text-transform: none;
}

.cr2-feature-head > .cr2-info,
.cr2-panel-heading > .cr2-info,
.cr2-detail-heading > .cr2-info {
  margin-left: 7px;
}

.cr2-feature-head > .cr2-info + .cr2-info {
  margin-left: 1px;
}

.cr2-info-trigger {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1.5px solid #4058ff;
  border-radius: 50%;
  background: #f2f5ff;
  color: #2842ed;
  box-shadow: 0 2px 7px rgba(44, 65, 224, 0.12);
  font: 800 12px/1 "Segoe UI", Arial, Helvetica, sans-serif;
  text-transform: lowercase;
  cursor: help;
}

.cr2-info-tip .cr2-info-trigger {
  border-color: #df9a10;
  background: #fff7d9;
  color: #a96f00;
}

.cr2-info-trigger:hover,
.cr2-info-trigger:focus-visible {
  color: #fff;
  background: #4058ff;
  outline: 3px solid rgba(64, 88, 255, 0.18);
  outline-offset: 2px;
}

.cr2-info-tip .cr2-info-trigger:hover,
.cr2-info-tip .cr2-info-trigger:focus-visible {
  background: #c68100;
}

.cr2-info-popover {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  z-index: 100;
  width: min(430px, calc(100vw - 56px));
  max-height: min(520px, 70vh);
  overflow: auto;
  padding: 14px 16px;
  border: 1px solid #cfd7ff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  color: #1d294c;
  box-shadow: 0 18px 45px rgba(20, 35, 105, 0.2);
  font: 400 13px/1.5 "Segoe UI", Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  text-align: left;
  text-transform: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.cr2-info-popover::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #cfd7ff;
  border-left: 1px solid #cfd7ff;
  background: #fff;
  transform: rotate(45deg);
}

.cr2-info:hover .cr2-info-popover,
.cr2-info:focus-within .cr2-info-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cr2-info-title {
  display: block;
  margin-bottom: 7px;
  color: #07178f;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cr2-info-popover p {
  margin: 0;
  color: #34415f;
  font: inherit;
  letter-spacing: normal;
  text-align: left;
  text-transform: none;
}

.cr2-info-popover p + p {
  margin-top: 8px;
}

.cr2-info-popover p strong {
  color: #101c43;
  font-weight: 850;
}

.cr2-panel-heading,
.cr2-detail-heading {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cr2-panel-heading > h3,
.cr2-detail-heading > h3 {
  margin-right: 0;
}

.cr2-feature-card h3 {
  margin: 0 0 5px;
  color: #4a4f60;
  font-family: var(--display-font);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.08;
  text-transform: uppercase;
}

.cr2-feature-card p {
  color: var(--cr2-copy);
}

.cr2-feature-card.resilience {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cr2-resilience-art {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 184px;
  margin: 6px 0 4px;
}

.cr2-resilience-art img {
  display: block;
  width: min(100%, 210px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 15px 24px rgba(59, 82, 246, 0.12));
}

.cr2-feature-card.resilience > p {
  margin: 0 0 13px;
  max-width: 350px;
  font-size: 13px;
  line-height: 1.42;
}

.cr2-resilience-legend {
  width: 100%;
  margin-top: auto;
  color: #59617a;
  text-align: center;
}

.cr2-resilience-legend > strong,
.cr2-wheel-legend > strong {
  display: block;
  margin-bottom: 5px;
  color: #4d5570;
  font-family: var(--display-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cr2-resilience-track {
  display: flex;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(75, 91, 255, 0.08);
}

.cr2-resilience-track i { flex: 1; }
.cr2-resilience-track .unexplored { background: linear-gradient(90deg, #eef2ff, #d9e1ff); }
.cr2-resilience-track .explorer { background: linear-gradient(90deg, #b9c6ff, #9eb0ff); }
.cr2-resilience-track .warrior { background: linear-gradient(90deg, #7f97ff, #5d7cff); }
.cr2-resilience-track .knight { background: linear-gradient(90deg, #4668ff, #314ff0); }
.cr2-resilience-track .master { background: linear-gradient(90deg, #263fd8, #1830b6); }

.cr2-resilience-labels {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 3px;
  margin-top: 5px;
}

.cr2-resilience-labels span {
  min-width: 0;
  overflow: hidden;
  color: #4d5570;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cr2-feature-card.wheel-card {
  display: flex;
  flex-direction: column;
}

.cr2-wheel-visual {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
}

.cr2-wheel-svg {
  width: min(100%, 420px);
  overflow: visible;
}

.cr2-wheel-svg circle,
.cr2-wheel-svg line {
  fill: none;
  stroke: rgba(23, 33, 56, 0.1);
  stroke-width: 1;
}

.cr2-wheel-svg text {
  fill: #7f879a;
  font-size: 15.4px;
  letter-spacing: 0.015em;
  text-anchor: middle;
  text-transform: uppercase;
}

.cr2-wheel-svg .poly-level {
  fill: rgba(92, 111, 245, 0.12);
  stroke: #5d6ef2;
  stroke-width: 1.65;
}

.cr2-wheel-svg .poly-sentiment {
  fill: rgba(237, 118, 149, 0.22);
  stroke: #d7678b;
  stroke-width: 1.9;
}

.cr2-wheel-svg .level-point {
  fill: #5d6ef2;
  stroke: #fff;
  stroke-width: 1.2;
}

.cr2-wheel-svg .sentiment-point {
  fill: #d7678b;
  stroke: #fff;
  stroke-width: 1.4;
}

.cr2-wheel-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 20px;
  width: 100%;
  margin-top: 4px;
  color: #7f879a;
  font-size: 11px;
}

.cr2-wheel-legend > strong { width: 100%; margin-bottom: 0; }
.cr2-wheel-legend span { display: inline-flex; align-items: center; }
.cr2-wheel-legend i { width: 11px; height: 11px; margin-right: 6px; border-radius: 50%; }
.cr2-wheel-legend i.level { background: #5d6ef2; }
.cr2-wheel-legend i.sentiment { background: #d7678b; }

.cr2-feature-card.energy-card {
  --battery-color: #f4c42d;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.cr2-feature-card.energy-card.supercharged { --battery-color: #35c56a; }
.cr2-feature-card.energy-card.well-charged { --battery-color: #a8db45; }
.cr2-feature-card.energy-card.running-low { --battery-color: #f4c42d; }
.cr2-feature-card.energy-card.low-battery { --battery-color: #ff9c4a; }
.cr2-feature-card.energy-card.recharge-now { --battery-color: #ee6b62; }

.cr2-energy-main {
  display: grid;
  flex: 1;
  align-content: start;
  justify-items: center;
  gap: 10px;
  padding-top: 6px;
}

.cr2-energy-medallion {
  display: grid;
  place-items: center;
  width: min(100%, 185px);
  aspect-ratio: 1 / 1;
  border: 3px solid #5d67ff;
  border-radius: 50%;
}

.cr2-battery {
  --battery-color: inherit;
  position: relative;
  display: grid;
  justify-items: center;
}

.cr2-battery.large {
  width: 82px;
  padding-top: 9px;
  filter: drop-shadow(0 12px 18px rgba(16, 24, 72, 0.2));
}

.cr2-battery.mini {
  width: 27px;
  padding-top: 3px;
  opacity: 0.48;
}

.cr2-battery-cap {
  position: absolute;
  left: 50%;
  top: 0;
  width: 24px;
  height: 8px;
  border-radius: 5px 5px 0 0;
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(-50%);
}

.cr2-battery.mini .cr2-battery-cap {
  width: 13px;
  height: 4px;
  background: #c9d1e2;
}

.cr2-battery-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  min-height: 112px;
  padding: 12px 10px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 15px;
  background: rgba(249, 251, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.cr2-battery.mini .cr2-battery-shell {
  min-height: 40px;
  gap: 2px;
  padding: 4px 3px;
  border: 2px solid #c9d1e2;
  border-radius: 6px;
  background: #f9fbff;
}

.cr2-battery-shell i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #e8ecf4;
}

.cr2-battery.mini .cr2-battery-shell i { height: 4px; }
.cr2-battery-shell i.is-filled { background: var(--battery-color); }

.cr2-energy-copy {
  display: grid;
  justify-items: center;
  gap: 3px;
  text-align: center;
}

.cr2-energy-copy b {
  color: var(--cr2-copy);
  font-size: 13px;
  font-weight: 400;
}

.cr2-energy-copy p {
  min-height: 35px;
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.35;
}

.cr2-energy-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 9px;
}

.cr2-energy-option {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  padding: 5px 1px 6px;
  color: #8d96aa;
  text-align: center;
}

.cr2-energy-option.supercharged { --battery-color: #35c56a; }
.cr2-energy-option.well-charged { --battery-color: #a8db45; }
.cr2-energy-option.running-low { --battery-color: #f4c42d; }
.cr2-energy-option.low-battery { --battery-color: #ff9c4a; }
.cr2-energy-option.recharge-now { --battery-color: #ee6b62; }

.cr2-energy-option span {
  font-size: 8px;
  line-height: 1.12;
}

.cr2-energy-option.is-active { color: #30384f; }
.cr2-energy-option.is-active .cr2-battery { z-index: 0; opacity: 1; }
.cr2-energy-option.is-active .cr2-battery::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -5px;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 1.5px solid #4560f5;
  border-radius: 50%;
  transform: translateX(-50%);
}

.cr2-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cr2-space-top {
  margin-top: 20px;
}

.cr2-panel {
  padding: 22px;
}

.cr2-panel > h3,
.cr2-panel-heading > h3,
.cr2-detail-block > h3,
.cr2-detail-heading > h3,
.cr2-priority-group > h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--cr2-navy);
  font-family: var(--display-font);
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cr2-panel-heading,
.cr2-detail-heading {
  margin-bottom: 16px;
}

.cr2-panel-heading > h3,
.cr2-detail-heading > h3 {
  margin: 0;
}

.cr2-pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.cr2-pyramid-layer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: calc(48% + var(--level) * 12%);
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  border: 1px solid color-mix(in srgb, var(--tone), #fff 34%);
  border-radius: 14px;
  background: var(--tone-gradient);
  color: #fff;
  box-shadow:
    0 14px 26px color-mix(in srgb, var(--tone), transparent 78%),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(18, 32, 96, 0.12);
}

button.cr2-pyramid-layer {
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

button.cr2-pyramid-layer:hover,
button.cr2-pyramid-layer:focus-visible {
  filter: saturate(1.08) brightness(1.02);
  transform: translateY(-2px);
  outline: 3px solid rgba(60, 82, 246, 0.18);
  outline-offset: 3px;
}

button.cr2-pyramid-layer.active {
  transform: translateY(-2px) scale(1.012);
  box-shadow:
    0 18px 34px color-mix(in srgb, var(--tone), transparent 68%),
    inset 0 0 0 2px rgba(255, 255, 255, 0.78);
}

.cr2-pyramid-layer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.28), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.34), transparent 28%);
}

.cr2-pyramid-layer span {
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.cr2-pyramid-layer strong {
  position: relative;
  z-index: 1;
  font-family: var(--display-font);
  font-size: 22px;
  text-shadow: 0 2px 8px rgba(25, 37, 91, 0.18);
}

.cr2-pyramid.compact .cr2-pyramid-layer {
  min-height: 52px;
  padding-block: 9px;
}

.cr2-pyramid.compact .cr2-pyramid-layer strong {
  font-size: 18px;
}

.cr2-pyramid-feature {
  max-width: 820px;
  margin: 8px auto 26px;
  padding: 26px;
  border: 1px solid #d4dbfa;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0, rgba(60, 82, 246, 0.1), transparent 42%),
    linear-gradient(180deg, #fff, #f7f9ff);
  box-shadow: 0 18px 38px rgba(57, 73, 132, 0.1);
}

.cr2-pyramid-feature.compact-feature {
  max-width: 670px;
  margin-bottom: 18px;
  padding: 18px 22px;
}

.cr2-life-needs-details {
  display: grid;
  gap: 22px;
}

.cr2-life-pulse-group,
.cr2-signal-pulse-group {
  overflow: visible;
  padding: 24px;
  border: 1px solid #d6ddf7;
  border-left: 5px solid var(--brand);
  border-radius: 22px;
  background:
    radial-gradient(circle at 98% 4%, rgba(60, 82, 246, 0.08), transparent 24%),
    linear-gradient(135deg, #fff 0%, #f8faff 100%);
  box-shadow: 0 16px 34px rgba(57, 73, 132, 0.09);
  break-inside: avoid;
}

.cr2-signal-pulse-group {
  margin-top: 22px;
}

.cr2-life-pulse-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dfe4f2;
}

.cr2-life-pulse-heading h3 {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--cr2-navy);
  font-family: var(--display-font);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cr2-life-pulse-layout {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.cr2-life-pulse-main {
  min-height: 196px;
  display: grid;
  place-items: center;
  padding: 18px 12px;
  border: 1px solid #d9e0fb;
  border-radius: 17px;
  background: linear-gradient(180deg, #f4f6ff, #eef2ff);
}

.cr2-main-gauge {
  position: relative;
  width: 100%;
  max-width: 220px;
  min-height: 148px;
}

.cr2-main-gauge svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.cr2-main-gauge-track,
.cr2-main-gauge-fill {
  fill: none;
  stroke-linecap: round;
  stroke-width: 16;
}

.cr2-main-gauge-track {
  stroke: #dfe3ed;
}

.cr2-main-gauge-fill {
  filter: drop-shadow(0 5px 8px color-mix(in srgb, var(--tone), transparent 78%));
}

.cr2-main-gauge > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  display: grid;
  justify-items: center;
  gap: 4px;
}

.cr2-main-gauge > div > strong {
  color: #4a526b;
  font-family: var(--display-font);
  font-size: 26px;
  font-weight: 700;
}

.cr2-pulse-metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.cr2-pulse-card {
  min-width: 0;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 7px;
  border: 1px solid #e0e4f2;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.cr2-pulse-icon {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #e8ebff;
}

.cr2-pulse-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cr2-pulse-icon-vector {
  border: 1px solid #c9d2ff;
  color: #273cdb;
}

.cr2-pulse-vector {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.cr2-pulse-initial {
  border: 1px solid #c9d2ff;
  color: var(--brand);
  font-family: var(--display-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cr2-pulse-card h4 {
  min-height: 32px;
  margin: 0;
  color: #29324f;
  font-size: 11px;
  line-height: 1.35;
}

.cr2-pulse-card .cr2-donut {
  width: 72px;
  height: 72px;
  margin-top: auto;
}

.cr2-pulse-card .cr2-chip {
  max-width: 100%;
  white-space: normal;
}

.cr2-signal-pulse-layout {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.cr2-signal-metric-grid {
  display: grid;
  gap: 10px;
}

.cr2-signal-metric-grid.columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cr2-signal-metric-grid.columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cr2-signal-metric-grid.columns-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.cr2-signal-card {
  min-width: 0;
  min-height: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 13px 8px;
  border: 1px solid #e0e4f2;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  text-align: center;
}

.cr2-signal-card .cr2-donut {
  width: 70px;
  height: 70px;
}

.cr2-signal-card h4 {
  display: grid;
  flex: 1;
  place-items: center;
  width: 100%;
  min-height: 32px;
  margin: 0;
  color: #29324f;
  font-size: 11px;
  line-height: 1.35;
}

.cr2-signal-card .cr2-chip {
  margin-top: auto;
  max-width: 100%;
  white-space: normal;
}

.cr2-employee-pyramid-feature {
  max-width: 900px;
}

.cr2-life-pyramid-feature {
  max-width: 900px;
}

.cr2-pyramid-instruction {
  margin: 20px 0 0;
  color: #68728f;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.cr2-employee-need-details {
  max-width: 1040px;
  margin: 0 auto;
}

.cr2-employee-need-detail {
  padding: 24px;
  border: 1px solid #d6ddf7;
  border-top: 5px solid var(--tone);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 8%, var(--tone-soft), transparent 26%),
    linear-gradient(135deg, #fff, #f8faff);
  box-shadow: 0 16px 34px rgba(57, 73, 132, 0.09);
}

.cr2-need-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dfe4f2;
}

.cr2-need-main-copy {
  display: grid;
  gap: 6px;
}

.cr2-need-main-copy h3 {
  display: flex;
  align-items: center;
}

.cr2-need-main-copy > span {
  color: #7c85a0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cr2-need-detail-head h3 {
  margin: 0;
  color: var(--cr2-navy);
  font-family: var(--display-font);
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cr2-need-main-score {
  min-width: 142px;
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 14px 20px;
  border: 1px solid var(--tone);
  border-radius: 18px;
  background: var(--tone-soft);
  box-shadow: 0 10px 24px rgba(57, 73, 132, 0.1);
}

.cr2-need-main-score > strong {
  color: var(--tone-dark);
  font-family: var(--display-font);
  font-size: 40px;
  line-height: 1;
}

.cr2-employee-need-detail > p {
  margin: 0 0 18px;
  color: #59648b;
  font-size: 13px;
  line-height: 1.55;
}

.cr2-employee-need-detail + .cr2-employee-need-detail {
  margin-top: 22px;
}

.cr2-life-need-detail + .cr2-life-need-detail {
  margin-top: 22px;
}

.cr2-report #life-preferences {
  min-height: auto;
}

.cr2-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--tone-soft);
  color: var(--tone-dark);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.cr2-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 34px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--tone-soft);
  color: var(--tone-dark);
  font-family: var(--display-font);
}

.cr2-preferences {
  display: grid;
  gap: 7px;
}

.cr2-preferences.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
}

.cr2-pref-row {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) 62px minmax(90px, auto);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 7px 10px;
  border: 1px solid #e0e4f2;
  border-radius: 9px;
  background: #fff;
}

.cr2-pref-row > strong {
  color: #29324f;
  font-size: 13px;
}

.cr2-pref-row.has-tooltip {
  position: relative;
  cursor: help;
}

.cr2-pref-row.has-tooltip::after {
  position: absolute;
  z-index: 12;
  left: 36px;
  bottom: calc(100% + 9px);
  width: max-content;
  max-width: min(270px, 70vw);
  padding: 9px 11px;
  border: 1px solid #cdd5ff;
  border-radius: 9px;
  background: #07178f;
  box-shadow: 0 10px 24px rgba(7, 23, 143, 0.22);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(5px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.cr2-pref-row.has-tooltip:hover::after,
.cr2-pref-row.has-tooltip:focus::after,
.cr2-pref-row.has-tooltip:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.cr2-pref-row.selected > strong {
  color: #fff;
}

.cr2-pref-row.selected {
  border-color: var(--brand);
  background: linear-gradient(110deg, #2438d1 0%, #4058ff 100%);
  box-shadow: 0 9px 20px rgba(42, 60, 218, 0.2);
}

.cr2-pref-check {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid #d7dced;
  border-radius: 50%;
  color: transparent;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.cr2-pref-row.selected .cr2-pref-check {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cr2-pref-row.selected .cr2-score,
.cr2-pref-row.selected .cr2-chip {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.cr2-preferences.compact .cr2-pref-row {
  grid-template-columns: 24px minmax(0, 1fr) 54px;
  min-height: 40px;
  padding-block: 4px;
}

.cr2-preferences.compact .cr2-pref-row .cr2-chip {
  display: none;
}

.cr2-preferences.compact .cr2-score {
  min-width: 48px;
  min-height: 28px;
  font-size: 11px;
}

.cr2-preference-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #d8def3;
  border-radius: 11px;
  background: linear-gradient(135deg, #f8faff, #eef2ff);
}

.cr2-preference-legend .cr2-pref-check {
  flex: 0 0 auto;
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.cr2-preference-legend p {
  margin: 0;
  color: #59648b;
  font-size: 11px;
  line-height: 1.45;
}

.cr2-private-preference-panel {
  display: flex;
  flex-direction: column;
}

.cr2-private-preference-panel .cr2-preference-legend {
  margin-top: auto;
}

.cr2-bars {
  display: grid;
  gap: 6px;
}

.cr2-bar-row {
  display: grid;
  grid-template-columns: minmax(170px, 1.05fr) minmax(180px, 1.5fr) 58px 136px;
  gap: 12px;
  align-items: center;
  min-height: 49px;
  padding: 6px 10px;
  border-bottom: 1px solid #e8ebf4;
}

.cr2-bar-row > strong {
  color: #29324f;
  font-size: 13px;
}

.cr2-bar-row > b {
  color: var(--cr2-navy);
  font-family: var(--display-font);
  text-align: right;
}

.cr2-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #eceff7;
}

.cr2-track i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--tone-gradient);
}

.cr2-detail-block {
  margin-top: 22px;
  padding: 22px;
  break-inside: avoid;
}

.cr2-detail-block > p {
  margin: -5px 0 18px;
}

.cr2-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dfe4f2;
}

.cr2-detail-head > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.cr2-detail-head span {
  color: var(--cr2-navy);
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.cr2-detail-head strong {
  color: var(--brand);
  font-family: var(--display-font);
  font-size: 30px;
}

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

.cr2-donut-cell {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 9px;
  min-height: 170px;
  padding: 14px 8px;
  border: 1px solid #e0e4f2;
  background: #fbfcff;
  text-align: center;
}

.cr2-donut-cell > b {
  min-height: 34px;
  color: #29324f;
  font-size: 11px;
  line-height: 1.35;
}

.cr2-donut {
  --p: 0;
  position: relative;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--tone) calc(var(--p) * 1%), #e7eaf3 0);
}

.cr2-donut::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff;
}

.cr2-donut strong {
  position: relative;
  z-index: 1;
  color: var(--tone-dark);
  font-size: 12px;
}

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

.cr2-stat-card {
  min-height: 144px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--tone), #fff 68%);
  border-top: 5px solid var(--tone);
  background: linear-gradient(180deg, #fff, var(--tone-soft));
  box-shadow: 0 8px 20px rgba(57, 73, 132, 0.06);
}

.cr2-stat-card > span {
  color: #525b78;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

.cr2-stat-card > strong {
  grid-column: 1 / -1;
  color: var(--tone-dark);
  font-family: var(--display-font);
  font-size: 34px;
}

.cr2-stat-card .cr2-chip {
  grid-column: 1 / -1;
  justify-self: start;
  padding-left: 0;
}

.cr2-priority-snapshot {
  padding: 22px;
  border: 1px solid var(--cr2-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  box-shadow: 0 14px 32px rgba(57, 73, 132, 0.09);
}

.cr2-priority-snapshot > h3 {
  margin-bottom: 6px;
  color: var(--cr2-navy);
  font-family: var(--display-font);
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cr2-priority-group {
  margin-top: 20px;
  padding: 22px;
  break-inside: avoid;
}

.cr2-priority-group.compact {
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cr2-priority-group.compact > h3 {
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid #dce2fb;
  font-size: 14px;
}

.cr2-priority-list {
  display: grid;
  align-content: start;
  gap: 7px;
}

.cr2-priority-caption {
  display: block;
  margin-bottom: 5px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cr2-priority-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 56px 120px;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 7px 10px;
  border: 1px solid #e0e4f2;
  background: #fbfcff;
}

.cr2-priority-row > i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.cr2-priority-row > strong {
  color: #29324f;
  font-size: 12px;
}

.cr2-priority-row > b {
  color: var(--cr2-navy);
  text-align: right;
}

.cr2-table-wrap {
  overflow-x: auto;
}

.cr2-average-table {
  table-layout: fixed;
}

.cr2-average-table th:first-child,
.cr2-average-table td:first-child {
  width: 38%;
}

.cr2-average-table th:not(:first-child),
.cr2-average-table td:not(:first-child) {
  text-align: center;
}

.cr2-average-table td:first-child {
  color: #29324f;
  font-weight: 700;
}

.cr2-average-table td:last-child {
  text-align: center;
}

.cr2-better {
  color: var(--brand);
  font-weight: 800;
}

.cr2-workplace-preferences .cr2-pref-row {
  min-height: 46px;
  padding-block: 5px;
}

.cr2-emotions-block > p {
  margin: -4px 0 20px;
  color: #59648b;
  font-size: 12px;
  line-height: 1.55;
}

.cr2-emotion-zones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cr2-emotion-zone {
  --zone: #d63a2f;
  --zone-dark: #9f201a;
  --zone-soft: #fdeeec;
  --zone-on: #fff;
  min-width: 0;
  padding: 14px;
  border: 1.5px solid var(--zone);
  border-radius: 15px;
  background: var(--zone-soft);
}

.cr2-emotion-zone.red {
  --zone: #d63a2f;
  --zone-dark: #9f201a;
  --zone-soft: #fdeeec;
}

.cr2-emotion-zone.yellow {
  --zone: #e7b921;
  --zone-dark: #735b08;
  --zone-soft: #fdf7dd;
  --zone-on: #3c3308;
}

.cr2-emotion-zone.light-green {
  --zone: #8ad42d;
  --zone-dark: #4c7d15;
  --zone-soft: #f0f9e2;
}

.cr2-emotion-zone.dark-green {
  --zone: #25a341;
  --zone-dark: #137030;
  --zone-soft: #e6f6ea;
}

.cr2-emotion-zone h4 {
  margin: 0 0 11px;
  color: var(--zone-dark);
  font-family: var(--display-font);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cr2-emotion-zone > div {
  display: grid;
  gap: 7px;
}

.cr2-emotion-zone span {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid var(--zone);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--zone-dark);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}

.cr2-emotion-zone span.on {
  background: var(--zone);
  color: var(--zone-on);
  box-shadow: 0 6px 14px color-mix(in srgb, var(--zone), transparent 78%);
}

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

.cr2-check-grid > div {
  min-height: 48px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid #e0e4f2;
  background: #fbfcff;
  color: #6f778f;
  font-size: 12px;
  line-height: 1.35;
}

.cr2-check-grid i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid #c8cedd;
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.cr2-check-grid > div.checked {
  border-color: #aebaff;
  background: #f1f4ff;
  color: #273157;
  font-weight: 700;
}

.cr2-check-grid > div.checked i {
  border-color: var(--brand);
  background: var(--brand);
}

.cr2-report-footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #b7c1ff;
  color: #7b8397;
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 980px) and (min-width: 821px) {
  .cr2-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cr2-feature-card.energy-card {
    grid-column: 1 / -1;
  }

  .cr2-preferences.two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) and (min-width: 821px) {
  .shell.cr2-mode .content {
    padding-left: 100px;
  }

  .cr2-side-toc {
    width: 68px;
  }

  .cr2-toc-brand {
    display: grid;
    justify-items: center;
    padding: 12px 8px;
  }

  .cr2-toc-logo,
  .cr2-toc-brand span,
  .cr2-toc-brand strong {
    display: none;
  }

  .cr2-toc-dot {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .cr2-side-toc nav {
    padding: 8px;
  }

  .cr2-side-toc nav a {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 4px;
  }

  .cr2-side-toc nav a span {
    display: none;
  }

  .cr2-toc-actions {
    gap: 6px;
    padding: 8px;
  }

  .cr2-toc-action {
    min-height: 42px;
    padding: 8px;
  }

  .cr2-toc-action span {
    display: none;
  }
}

@media (max-width: 820px) {
  .shell.cr2-mode .content {
    padding: 14px 14px 96px;
  }

  .shell.cr2-mode .view {
    max-width: none;
  }

  .cr2-side-toc {
    left: 8px;
    right: 8px;
    top: auto;
    bottom: 8px;
    width: auto;
    height: 70px;
    border-top-width: 3px;
    flex-direction: row;
  }

  .cr2-toc-brand {
    display: none;
  }

  .cr2-side-toc nav {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 9px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .cr2-side-toc nav a {
    min-width: 42px;
    min-height: 42px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 4px;
  }

  .cr2-side-toc nav a span {
    display: none;
  }

  .cr2-toc-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 5px;
    padding: 7px 8px;
    border-top: 0;
    border-left: 1px solid #dbe1ff;
  }

  .cr2-toc-action {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .cr2-toc-action span {
    display: none;
  }

  .cr2-toc-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .cr2-hero-grid,
  .cr2-two-up,
  .cr2-stat-grid,
  .cr2-check-grid,
  .cr2-donut-grid {
    grid-template-columns: 1fr;
  }

  .cr2-report .cover-grid,
  .cr2-life-pulse-layout,
  .cr2-signal-pulse-layout {
    grid-template-columns: 1fr;
  }

  .cr2-report .cover-grid div {
    padding-inline: 0;
    border-right: 0;
  }

  .cr2-report .cover-grid strong {
    white-space: normal;
  }

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

  .cr2-signal-metric-grid.columns-3,
  .cr2-signal-metric-grid.columns-4,
  .cr2-signal-metric-grid.columns-5,
  .cr2-emotion-zones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cr2-life-pulse-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .cr2-need-detail-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cr2-need-main-score {
    width: 100%;
  }

  .cr2-feature-card {
    min-height: auto;
  }

  .cr2-bar-row,
  .cr2-priority-row {
    grid-template-columns: 1fr;
  }

  .cr2-pref-row.selected {
    background: linear-gradient(110deg, #2438d1 0%, #4058ff 100%);
  }

  .cr2-preferences.two-column {
    grid-template-columns: 1fr;
  }

  .cr2-pyramid-layer {
    width: 100%;
  }

  .cr2-detail-head,
  .cr2-detail-head > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .cr2-info-popover {
    position: fixed;
    top: auto;
    right: 18px;
    bottom: 84px;
    left: 18px;
    width: auto;
    max-height: 58vh;
    transform: translateY(8px);
  }

  .cr2-info-popover::before {
    display: none;
  }

  .cr2-info:hover .cr2-info-popover,
  .cr2-info:focus-within .cr2-info-popover {
    transform: translateY(0);
  }
}

@media screen and (max-width: 820px) {
  body {
    overflow-x: clip;
  }

  .shell.cr2-mode .content {
    min-width: 0;
    padding: 8px;
  }

  .shell.cr2-mode .view,
  .cr2-report,
  .cr2-report .report-page {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .cr2-report {
    overflow: visible;
  }

  .cr2-side-toc {
    position: sticky;
    inset: 0 auto auto;
    z-index: 40;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 8px;
    border: 1px solid #cbd4ff;
    border-top: 3px solid var(--brand);
    box-shadow: 0 8px 22px rgba(20, 35, 105, 0.14);
  }

  .cr2-side-toc nav {
    width: 100%;
    min-height: 54px;
    display: flex;
    gap: 6px;
    padding: 6px 8px;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }

  .cr2-side-toc nav a {
    flex: 0 0 44px;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .cr2-toc-actions {
    display: grid;
    grid-template-columns: minmax(128px, 1fr) 44px 44px;
    align-items: end;
    gap: 7px;
    padding: 7px 8px 9px;
    border-top: 1px solid #dbe1ff;
    border-left: 0;
  }

  .cr2-language-control {
    min-width: 0;
  }

  .cr2-language-control select {
    min-height: 44px;
  }

  .cr2-toc-action {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .cr2-toc-progress {
    bottom: 0;
  }

  .cr2-report .report-page {
    overflow: hidden;
    margin-bottom: 10px;
    padding: 28px 18px 34px;
  }

  .cr2-report .cover {
    min-height: 720px;
    padding: 30px 22px 34px;
  }

  .cr2-report .cover-controlbar {
    display: none;
  }

  .cr2-report .cover-brand img {
    width: min(230px, 78vw);
  }

  .cr2-report .cover-main {
    margin-top: 72px;
    margin-bottom: 36px;
  }

  .cr2-report .cover h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.02;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  html[lang="de"] .cr2-report .cover h1 {
    font-size: clamp(31px, 8.5vw, 40px);
  }

  .cr2-cover-subtitle {
    margin-top: 18px;
    font-size: 16px;
  }

  .cr2-report .cover-grid {
    width: 100%;
    margin-top: 36px;
    padding: 18px;
  }

  .cr2-report .cover-grid strong {
    max-width: 100%;
    font-size: clamp(18px, 6vw, 24px);
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .cover-dotfield,
  .page-dotmark {
    right: -80px;
    width: 230px;
  }

  .contents-head h2 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .contents-head p {
    font-size: 15px;
  }

  .contents-grid {
    margin-top: 22px;
  }

  .contents-item {
    grid-template-columns: 48px minmax(0, 1fr) 32px;
    min-height: 96px;
    padding: 14px;
  }

  .cr2-report .section-title {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .cr2-report .section-title > span {
    width: 48px;
    height: 48px;
    transform: none;
  }

  .cr2-report .section-title h2,
  .branded-page .section-title h2 {
    font-size: clamp(25px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .cr2-section-intro h3 {
    font-size: 20px;
  }

  .cr2-feature-card,
  .cr2-panel,
  .cr2-detail-block,
  .cr2-priority-group {
    min-width: 0;
    max-width: 100%;
  }

  .cr2-feature-card {
    padding-inline: 14px;
  }

  .cr2-two-up,
  .cr2-priority-layout,
  .cr2-priority-domain,
  .cr2-emotion-zones {
    min-width: 0;
  }

  .cr2-info-trigger {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .cr2-table-wrap {
    max-width: 100%;
  }

  .cr2-average-table {
    min-width: 640px;
  }

  .cr2-report-footer {
    overflow-wrap: anywhere;
  }
}

@media print {
  .shell.cr2-mode .content {
    padding: 0;
  }

  .cr2-side-toc {
    display: none !important;
  }

  .cr2-info {
    display: none !important;
  }

  .cr2-report .report-page {
    height: auto;
    min-height: calc(297mm - 24mm);
    padding: 10mm 12mm;
    break-after: page;
  }

  .cr2-report #life-preferences {
    min-height: calc(297mm - 24mm);
  }

  .cr2-report .cr2-long-page {
    break-after: page;
  }

  .cr2-report #big-picture .cr2-priority-snapshot,
  .cr2-report #workplace-signals .cr2-emotions-block,
  .cr2-report #relations-work .cr2-detail-block,
  .cr2-report #stress-burnout .cr2-signal-pulse-group + .cr2-signal-pulse-group,
  .cr2-report #career-signals .cr2-signal-pulse-group + .cr2-signal-pulse-group {
    break-before: page;
  }

  .cr2-feature-card,
  .cr2-panel,
  .cr2-detail-block,
  .cr2-priority-group,
  .cr2-stat-card,
  .cr2-pyramid-feature,
  .cr2-life-pulse-group,
  .cr2-signal-pulse-group,
  .cr2-employee-need-detail {
    box-shadow: none;
  }

  .cr2-detail-block,
  .cr2-priority-group,
  .cr2-stat-grid,
  .cr2-section-intro,
  .cr2-pyramid-feature,
  .cr2-life-pulse-group,
  .cr2-signal-pulse-group,
  .cr2-employee-need-detail {
    break-inside: avoid;
  }

  .cr2-pyramid-detail[hidden] {
    display: block !important;
  }

  .cr2-report #life-needs .cr2-pyramid-feature,
  .cr2-report #employee-needs .cr2-pyramid-feature {
    max-width: 620px;
    margin: 4px auto 10px;
    padding: 10px 14px;
  }

  .cr2-report #life-needs .cr2-pyramid,
  .cr2-report #employee-needs .cr2-pyramid {
    gap: 5px;
  }

  .cr2-report #life-needs .cr2-pyramid-layer,
  .cr2-report #employee-needs .cr2-pyramid-layer {
    min-height: 34px;
    padding: 5px 12px;
    border-radius: 9px;
  }

  .cr2-report #life-needs .cr2-pyramid-layer strong,
  .cr2-report #employee-needs .cr2-pyramid-layer strong {
    font-size: 15px;
  }

  .cr2-report .cr2-pyramid-instruction {
    margin-top: 7px;
    font-size: 10px;
  }

  .cr2-report .cr2-life-need-detail + .cr2-life-need-detail,
  .cr2-report .cr2-employee-need-detail + .cr2-employee-need-detail {
    margin-top: 8px;
  }

  .cr2-report .cr2-life-pulse-group {
    padding: 10px;
    border-left-width: 3px;
    border-radius: 12px;
  }

  .cr2-report .cr2-life-pulse-heading {
    margin-bottom: 8px;
    padding-bottom: 6px;
  }

  .cr2-report .cr2-life-pulse-heading h3 {
    font-size: 14px;
  }

  .cr2-report .cr2-life-pulse-layout {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 8px;
  }

  .cr2-report .cr2-life-pulse-main {
    min-height: 124px;
    padding: 8px;
  }

  .cr2-report .cr2-main-gauge {
    max-width: 130px;
    min-height: 105px;
  }

  .cr2-report .cr2-main-gauge > div > strong {
    font-size: 19px;
  }

  .cr2-report .cr2-main-gauge > div {
    bottom: 17px;
    gap: 4px;
  }

  .cr2-report .cr2-pulse-metric-grid {
    gap: 5px;
  }

  .cr2-report .cr2-pulse-card {
    min-height: 124px;
    gap: 4px;
    padding: 6px 4px;
    border-radius: 8px;
  }

  .cr2-report .cr2-pulse-icon {
    width: 27px;
    height: 27px;
  }

  .cr2-report .cr2-pulse-vector {
    width: 18px;
    height: 18px;
  }

  .cr2-report .cr2-pulse-card h4 {
    min-height: 24px;
    font-size: 10px;
    line-height: 1.25;
  }

  .cr2-report .cr2-pulse-card .cr2-donut {
    width: 46px;
    height: 46px;
  }

  .cr2-report .cr2-donut::before {
    inset: 6px;
  }

  .cr2-report .cr2-donut strong {
    font-size: 10px;
  }

  .cr2-report .cr2-chip {
    min-height: 18px;
    padding: 2px 6px;
    font-size: 10px;
  }

  .cr2-report .cr2-employee-need-detail {
    padding: 11px 13px;
    border-top-width: 3px;
    border-radius: 12px;
  }

  .cr2-report .cr2-need-detail-head {
    flex-direction: row;
    align-items: center;
    margin-bottom: 6px;
    padding-bottom: 6px;
  }

  .cr2-report .cr2-need-main-copy {
    gap: 2px;
  }

  .cr2-report .cr2-need-main-copy > span {
    font-size: 10px;
  }

  .cr2-report .cr2-need-detail-head h3 {
    font-size: 17px;
  }

  .cr2-report .cr2-need-main-score {
    min-width: 92px;
    width: auto;
    gap: 3px;
    padding: 6px 10px;
    border-radius: 10px;
  }

  .cr2-report .cr2-need-main-score > strong {
    font-size: 25px;
  }

  .cr2-report .cr2-employee-need-detail > p {
    margin-bottom: 6px;
    font-size: 10px;
    line-height: 1.3;
  }

  .cr2-report .cr2-average-table {
    font-size: 10px;
  }

  .cr2-report .cr2-average-table th,
  .cr2-report .cr2-average-table td {
    padding: 4px 6px;
  }

  .cr2-report .cr2-average-table th {
    font-size: 10px;
  }

  .cr2-report .cr2-average-table .cr2-score {
    min-width: 38px;
    min-height: 22px;
    padding: 2px 5px;
    font-size: 10px;
  }

  .cr2-feature-card {
    min-height: 360px;
  }

  .cr2-wheel-svg {
    max-height: 250px;
  }

  .cr2-energy-medallion {
    width: 145px;
  }

  .cr2-battery.large {
    width: 68px;
  }

  .cr2-pref-row,
  .cr2-bar-row,
  .cr2-priority-row {
    min-height: 36px;
    padding-block: 4px;
  }
}

/* CR2 print pagination: each report section is a deliberate 1-3 page unit. */
@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }

  @page :first {
    size: A4 portrait;
    margin: 10mm;
    background: #f7f9ff;
  }

  html,
  body {
    width: 100%;
    margin: 0;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .cr2-report {
    width: 100%;
    font-size: 11px;
  }

  .cr2-report .report-page {
    min-height: 0;
    height: auto;
    margin: 0;
    padding: 8mm 9mm;
    border-width: 1px;
    border-bottom-width: 0;
    border-top-width: 4px;
    break-before: page;
    break-after: page;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .cr2-report .cover,
  .cr2-report .contents-page {
    min-height: 277mm;
  }

  .cr2-report .cover {
    overflow: visible;
    border-top-width: 0;
  }

  .cr2-report .contents-page {
    display: flex;
    flex-direction: column;
  }

  .cr2-report .contents-page .page-footerline {
    margin-top: auto;
  }

  .cr2-report .report-page::after {
    display: none;
  }

  .cr2-report::after {
    display: none;
  }

  body::after {
    content: "QUINTAUM";
    position: fixed;
    right: 19mm;
    bottom: 6mm;
    z-index: 20;
    color: #9aa4bf;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  body::before {
    content: "";
    position: fixed;
    right: 0;
    bottom: 2mm;
    left: 0;
    z-index: 20;
    height: 1px;
    background: var(--brand);
  }

  /* Print at A4 is narrower than the mobile breakpoint; restore report grids. */
  .cr2-report .contents-grid,
  .cr2-report .cr2-two-up,
  .cr2-report .cr2-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cr2-report .cr2-hero-grid,
  .cr2-report .cr2-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cr2-report .cr2-life-pulse-layout,
  .cr2-report .cr2-signal-pulse-layout {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .cr2-report .cr2-pulse-metric-grid,
  .cr2-report .cr2-donut-grid,
  .cr2-report .cr2-signal-metric-grid.columns-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .cr2-report .cr2-signal-metric-grid.columns-4,
  .cr2-report .cr2-emotion-zones {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cr2-report .cr2-signal-metric-grid.columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cr2-report .cr2-preferences.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cr2-report .section-title {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 12px;
    break-after: avoid;
    break-inside: avoid;
  }

  .cr2-report .section-title > span {
    width: 42px;
    height: 42px;
    border-width: 5px;
    font-size: 14px;
  }

  .cr2-report .section-title h2,
  .cr2-report .branded-page .section-title h2 {
    font-size: 23px;
    line-height: 1.08;
  }

  .cr2-report .section-title p,
  .cr2-report .branded-page .section-title p {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.3;
  }

  /* Contents is always one page. */
  .cr2-report .contents-page .page-brand-row {
    margin-bottom: 14px;
  }

  .cr2-report .contents-head h2 {
    max-width: 620px;
    font-size: 42px;
    line-height: 0.94;
  }

  .cr2-report .contents-head p {
    max-width: 650px;
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.4;
  }

  .cr2-report .contents-grid {
    gap: 8px;
    margin-top: 16px;
  }

  .cr2-report .contents-item {
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    min-height: 70px;
    padding: 8px 10px;
    break-inside: avoid;
    box-shadow: none;
  }

  .cr2-report .contents-item > span {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .cr2-report .contents-item i {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .cr2-report .contents-item strong {
    font-size: 12px;
  }

  .cr2-report .contents-item p {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.25;
  }

  /* Shared compact print rhythm. */
  .cr2-report .cr2-section-intro {
    margin: 2px 0 10px;
    padding: 10px 12px;
    border-left-width: 3px;
    break-inside: avoid;
  }

  .cr2-report .cr2-section-intro > span {
    margin-bottom: 3px;
    font-size: 10px;
  }

  .cr2-report .cr2-section-intro h3 {
    font-size: 16px;
  }

  .cr2-report .cr2-section-intro p {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.35;
  }

  .cr2-report .coach-note {
    margin-top: 10px;
    padding: 9px 11px;
    break-inside: avoid;
  }

  .cr2-report .coach-note strong {
    font-size: 10px;
  }

  .cr2-report .coach-note p {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.3;
  }

  .cr2-report .cr2-space-top {
    margin-top: 10px;
  }

  .cr2-report .cr2-panel,
  .cr2-report .cr2-detail-block,
  .cr2-report .cr2-priority-group {
    box-shadow: none;
  }

  .cr2-report .cr2-panel {
    padding: 10px;
  }

  .cr2-report .cr2-panel > h3,
  .cr2-report .cr2-panel-heading > h3,
  .cr2-report .cr2-detail-block > h3,
  .cr2-report .cr2-detail-heading > h3,
  .cr2-report .cr2-priority-group > h3 {
    margin-bottom: 7px;
    font-size: 12px;
  }

  .cr2-report .cr2-panel-heading,
  .cr2-report .cr2-detail-heading {
    margin-bottom: 7px;
  }

  .cr2-report .cr2-panel-heading > h3,
  .cr2-report .cr2-detail-heading > h3 {
    margin-bottom: 0;
  }

  /* Big Picture: overview, reference maps, and priorities form three pages. */
  .cr2-report #big-picture {
    padding-block: 3mm;
  }

  .cr2-report #big-picture .section-title {
    margin-bottom: 6px;
  }

  .cr2-report #big-picture .cr2-hero-grid {
    gap: 8px;
    break-inside: avoid;
  }

  .cr2-report #big-picture .cr2-feature-card {
    min-height: 290px;
    padding: 4px 11px;
    border-radius: 9px;
  }

  .cr2-report #big-picture .cr2-feature-head {
    min-height: 18px;
    margin-bottom: 2px;
  }

  .cr2-report #big-picture .cr2-feature-head h2 {
    font-size: 10px;
  }

  .cr2-report #big-picture .cr2-resilience-art {
    min-height: 140px;
    margin: 0;
  }

  .cr2-report #big-picture .cr2-resilience-art img {
    width: 152px;
  }

  .cr2-report #big-picture .cr2-feature-card h3 {
    font-size: 13px;
  }

  .cr2-report #big-picture .cr2-feature-card.resilience > p {
    margin-bottom: 6px;
    font-size: 10px;
    line-height: 1.3;
  }

  .cr2-report #big-picture .cr2-wheel-svg {
    max-height: 205px;
  }

  .cr2-report #big-picture .cr2-wheel-legend,
  .cr2-report #big-picture .cr2-resilience-legend {
    font-size: 10px;
  }

  .cr2-report #big-picture .cr2-energy-main {
    gap: 3px;
    padding-top: 0;
  }

  .cr2-report #big-picture .cr2-energy-medallion {
    width: 124px;
  }

  .cr2-report #big-picture .cr2-battery.large {
    width: 56px;
    transform: scale(0.9);
  }

  .cr2-report #big-picture .cr2-energy-copy {
    gap: 2px;
  }

  .cr2-report #big-picture .cr2-energy-copy b,
  .cr2-report #big-picture .cr2-energy-copy p {
    font-size: 10px;
  }

  .cr2-report #big-picture .cr2-energy-copy p {
    min-height: 0;
    margin-top: 1px;
  }

  .cr2-report #big-picture .cr2-energy-scale {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px 4px;
    margin-top: 2px;
  }

  .cr2-report #big-picture .cr2-energy-option {
    gap: 2px;
    padding: 1px;
  }

  .cr2-report #big-picture .cr2-energy-option span {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

  .cr2-report #big-picture .cr2-energy-option span {
    font-size: 10px;
  }

  .cr2-report #big-picture .cr2-hero-grid + .cr2-two-up,
  .cr2-report #big-picture .cr2-priority-snapshot {
    break-before: page;
  }

  .cr2-report #big-picture .cr2-hero-grid + .cr2-two-up {
    break-before: auto;
  }

  .cr2-report #big-picture .cr2-two-up + .cr2-two-up {
    margin-top: 8px;
    break-before: auto;
    break-inside: avoid;
  }

  .cr2-report #big-picture .cr2-priority-snapshot {
    break-before: page;
  }

  .cr2-report #big-picture .cr2-two-up {
    gap: 10px;
    break-inside: avoid;
  }

  .cr2-report #big-picture .cr2-space-top {
    margin-top: 4px;
  }

  .cr2-report #big-picture .cr2-pyramid {
    gap: 4px;
    padding: 2px 0;
  }

  .cr2-report #big-picture .cr2-pyramid-layer {
    min-height: 31px;
    padding: 4px 9px;
    border-radius: 7px;
  }

  .cr2-report #big-picture .cr2-pyramid-layer span {
    font-size: 10px;
  }

  .cr2-report #big-picture .cr2-pyramid-layer strong {
    font-size: 13px;
  }

  .cr2-report #big-picture .cr2-preferences.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px 5px;
  }

  .cr2-report #big-picture .cr2-two-up + .cr2-two-up .cr2-panel {
    padding: 2px 6px;
  }

  .cr2-report #big-picture .cr2-two-up + .cr2-two-up .cr2-panel > h3,
  .cr2-report #big-picture .cr2-two-up + .cr2-two-up .cr2-panel-heading > h3 {
    margin-bottom: 1px;
  }

  .cr2-report #big-picture .cr2-preferences.compact .cr2-pref-row {
    grid-template-columns: 15px minmax(0, 1fr) 31px;
    gap: 3px;
    min-height: 26px;
    padding: 2px 3px;
  }

  .cr2-report #big-picture .cr2-preferences.compact .cr2-pref-check {
    width: 13px;
    height: 13px;
    font-size: 10px;
  }

  .cr2-report #big-picture .cr2-preferences.compact .cr2-pref-row > strong {
    font-size: 10px;
    line-height: 1.16;
  }

  .cr2-report #big-picture .cr2-preferences.compact .cr2-score {
    min-width: 29px;
    min-height: 17px;
    padding: 1px 3px;
    font-size: 10px;
  }

  .cr2-report #big-picture .cr2-preference-legend {
    margin-top: 1px;
    padding: 1px 6px;
  }

  .cr2-report #big-picture .cr2-preference-legend p {
    font-size: 10px;
    line-height: 1.2;
  }

  .cr2-report #big-picture .cr2-priority-snapshot {
    padding: 18px;
    border-radius: 12px;
  }

  .cr2-report #big-picture .cr2-priority-snapshot > h3 {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .cr2-report #big-picture .cr2-priority-group.compact {
    margin-top: 12px;
    break-inside: avoid;
  }

  .cr2-report #big-picture .cr2-priority-group.compact > h3 {
    margin-bottom: 5px;
    padding-bottom: 4px;
    font-size: 11px;
  }

  .cr2-report #big-picture .cr2-priority-caption {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .cr2-report #big-picture .cr2-priority-list {
    gap: 4px;
  }

  .cr2-report #big-picture .cr2-priority-row {
    grid-template-columns: 20px minmax(0, 1fr) 30px 90px;
    gap: 5px;
    min-height: 30px;
    padding: 4px 6px;
  }

  .cr2-report #big-picture .cr2-priority-row > i {
    width: 19px;
    height: 19px;
    font-size: 10px;
  }

  .cr2-report #big-picture .cr2-priority-row > strong,
  .cr2-report #big-picture .cr2-priority-row > b {
    font-size: 10px;
  }

  .cr2-report #big-picture .cr2-priority-row .cr2-chip {
    min-height: 18px;
    padding: 2px 5px;
    font-size: 10px;
    line-height: 1.1;
    white-space: normal;
  }

  /* One-page signal and preference sections. */
  .cr2-report .cr2-bars {
    gap: 2px;
  }

  .cr2-report .cr2-bar-row {
    grid-template-columns: minmax(130px, 1fr) minmax(150px, 1.5fr) 42px 96px;
    gap: 7px;
    min-height: 38px;
    padding: 4px 7px;
  }

  .cr2-report .cr2-bar-row > strong,
  .cr2-report .cr2-bar-row > b {
    font-size: 10px;
  }

  .cr2-report .cr2-track {
    height: 7px;
  }

  .cr2-report .cr2-bar-row .cr2-chip {
    min-height: 17px;
    padding: 2px 5px;
    font-size: 10px;
  }

  .cr2-report #life-preferences .cr2-preferences,
  .cr2-report #workplace-signals .cr2-preferences {
    gap: 4px 8px;
  }

  .cr2-report #life-preferences .cr2-pref-row,
  .cr2-report #workplace-signals .cr2-pref-row {
    grid-template-columns: 18px minmax(0, 1fr) 40px 74px;
    gap: 5px;
    min-height: 31px;
    padding: 3px 5px;
  }

  .cr2-report #life-preferences .cr2-pref-check,
  .cr2-report #workplace-signals .cr2-pref-check {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }

  .cr2-report #life-preferences .cr2-pref-row > strong,
  .cr2-report #workplace-signals .cr2-pref-row > strong {
    font-size: 10px;
    line-height: 1.2;
  }

  .cr2-report #life-preferences .cr2-score,
  .cr2-report #workplace-signals .cr2-score {
    min-width: 37px;
    min-height: 20px;
    padding: 2px 4px;
    font-size: 10px;
  }

  .cr2-report #life-preferences .cr2-chip,
  .cr2-report #workplace-signals .cr2-chip {
    min-height: 18px;
    padding: 2px 5px;
    font-size: 10px;
  }

  .cr2-report #life-preferences .cr2-pref-row {
    min-height: 40px;
    padding: 5px 7px;
  }

  .cr2-report #life-preferences .cr2-pref-row > strong {
    font-size: 10px;
  }

  .cr2-report #life-preferences .cr2-score {
    min-height: 22px;
    font-size: 10px;
  }

  .cr2-report #life-preferences .cr2-chip {
    min-height: 20px;
    font-size: 10px;
  }

  /* Stress and career: summary plus first detail page, second detail on page two. */
  .cr2-report .cr2-stat-grid {
    gap: 7px;
    break-inside: avoid;
  }

  .cr2-report .cr2-stat-card {
    min-height: 82px;
    gap: 5px;
    padding: 8px;
    border-top-width: 3px;
  }

  .cr2-report .cr2-stat-card > span {
    font-size: 10px;
  }

  .cr2-report .cr2-stat-card > strong {
    font-size: 19px;
  }

  .cr2-report .cr2-stat-card .cr2-chip {
    min-height: 16px;
    padding: 2px 5px;
    font-size: 10px;
  }

  .cr2-report #stress-burnout .cr2-signal-pulse-group + .cr2-signal-pulse-group,
  .cr2-report #career-signals .cr2-signal-pulse-group + .cr2-signal-pulse-group,
  .cr2-report #workplace-signals .cr2-emotions-block {
    break-before: auto;
  }

  /* Stress and burn-out: recover vertical space from padding and gaps, not content. */
  .cr2-report #stress-burnout .section-title {
    margin-bottom: 7px;
  }

  .cr2-report #stress-burnout .cr2-section-intro {
    margin-bottom: 7px;
    padding: 7px 10px;
  }

  .cr2-report #stress-burnout .cr2-stat-grid {
    gap: 5px;
  }

  .cr2-report #stress-burnout .cr2-stat-card {
    min-height: 70px;
    gap: 2px;
    padding: 4px 6px;
  }

  .cr2-report #stress-burnout .cr2-stat-card .cr2-chip,
  .cr2-report #career-signals .cr2-stat-card .cr2-chip {
    padding-left: 0;
  }

  .cr2-report #stress-burnout .cr2-signal-card .cr2-donut strong,
  .cr2-report #career-signals .cr2-signal-card .cr2-donut strong {
    font-size: 12px;
  }

  .cr2-report #stress-burnout .cr2-signal-pulse-group {
    margin-top: 5px;
    padding: 5px;
    border-left-width: 3px;
    border-radius: 10px;
  }

  .cr2-report #stress-burnout .cr2-life-pulse-heading {
    margin-bottom: 3px;
    padding-bottom: 3px;
  }

  .cr2-report #stress-burnout .cr2-signal-pulse-layout {
    gap: 5px;
  }

  .cr2-report #stress-burnout .cr2-signal-metric-grid {
    gap: 4px;
  }

  .cr2-report #stress-burnout .cr2-signal-card {
    min-height: 124px;
    gap: 3px;
    padding: 4px;
    border-radius: 7px;
  }

  .cr2-report #stress-burnout .cr2-signal-card h4 {
    min-height: 26px;
    line-height: 1.22;
  }

  /* Workplace emotions remain together on their own continuation page. */
  .cr2-report .cr2-detail-block {
    margin-top: 10px;
    padding: 10px;
  }

  .cr2-report .cr2-detail-block > p,
  .cr2-report .cr2-emotions-block > p {
    margin: -2px 0 8px;
    font-size: 10px;
    line-height: 1.35;
  }

  .cr2-report .cr2-emotion-zones {
    gap: 6px;
  }

  .cr2-report .cr2-emotion-zone {
    padding: 7px;
    border-radius: 8px;
  }

  .cr2-report .cr2-emotion-zone h4 {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .cr2-report .cr2-emotion-zone > div {
    gap: 3px;
  }

  .cr2-report .cr2-emotion-zone span {
    min-height: 22px;
    padding: 3px 5px;
    border-radius: 5px;
    font-size: 10px;
  }

  /* Tables and checklists stay readable while fitting their section page. */
  .cr2-report .cr2-average-table {
    font-size: 10px;
  }

  .cr2-report .cr2-average-table th,
  .cr2-report .cr2-average-table td {
    padding: 3px 5px;
  }

  .cr2-report .cr2-average-table th {
    font-size: 10px;
  }

  .cr2-report .cr2-average-table .cr2-score {
    min-width: 34px;
    min-height: 19px;
    padding: 1px 4px;
    font-size: 10px;
  }

  .cr2-report .cr2-check-grid {
    gap: 4px;
  }

  .cr2-report .cr2-check-grid > div {
    grid-template-columns: 19px 1fr;
    gap: 6px;
    min-height: 30px;
    padding: 4px 6px;
    font-size: 10px;
  }

  .cr2-report .cr2-check-grid i {
    width: 17px;
    height: 17px;
    border-width: 1px;
    font-size: 10px;
  }

  .cr2-report .cr2-report-footer {
    margin-top: 6px;
    padding-top: 4px;
    font-size: 10px;
    line-height: 1.35;
  }

  .cr2-report #relations-work .cr2-detail-block {
    break-before: auto;
  }

  /* Preserve the stepped pyramid silhouette after the mobile breakpoint fires. */
  .cr2-report .cr2-pyramid-layer {
    width: calc(48% + var(--level) * 12%);
  }

  /* The overview already contains both pyramids; dedicated print sections begin with detail. */
  .cr2-report #life-needs .cr2-pyramid-feature,
  .cr2-report #employee-needs .cr2-pyramid-feature {
    display: none !important;
  }

  .cr2-report #life-needs .cr2-life-needs-details {
    gap: 4px;
  }

  .cr2-report #life-needs .cr2-life-need-detail + .cr2-life-need-detail {
    margin-top: 4px;
  }

  .cr2-report #life-needs .cr2-life-pulse-group {
    padding: 7px;
  }

  .cr2-report #life-needs .cr2-life-pulse-heading {
    margin-bottom: 4px;
    padding-bottom: 3px;
  }

  .cr2-report #life-needs .cr2-life-pulse-layout {
    gap: 6px;
  }

  .cr2-report #life-needs .cr2-life-pulse-main {
    min-height: 120px;
    padding: 6px;
  }

  .cr2-report #life-needs .cr2-pulse-card {
    min-height: 120px;
    justify-content: space-between;
    gap: 3px;
    padding: 6px;
  }

  /* Career Signals is designed as one compact A4 coaching dashboard. */
  .cr2-report #career-signals .section-title {
    margin-bottom: 11px;
  }

  .cr2-report #career-signals .cr2-section-intro {
    margin-bottom: 11px;
    padding: 11px 14px;
  }

  .cr2-report #career-signals .cr2-section-intro h3 {
    font-size: 14px;
  }

  .cr2-report #career-signals .cr2-section-intro p {
    font-size: 9px;
    line-height: 1.25;
  }

  .cr2-report #career-signals .cr2-stat-grid {
    gap: 8px;
  }

  .cr2-report #career-signals .cr2-stat-card {
    min-height: 82px;
    gap: 4px;
    padding: 8px 10px;
  }

  .cr2-report #career-signals .cr2-stat-card > strong {
    font-size: 17px;
  }

  .cr2-report #career-signals .cr2-main-gauge > div {
    bottom: 17px;
  }

  .cr2-report #career-signals .cr2-signal-pulse-group {
    margin-top: 10px;
    padding: 9px;
    border-left-width: 3px;
    border-radius: 10px;
  }

  .cr2-report #career-signals .cr2-life-pulse-heading {
    margin-bottom: 6px;
    padding-bottom: 5px;
  }

  .cr2-report #career-signals .cr2-life-pulse-heading h3 {
    font-size: 10px;
  }

  .cr2-report #career-signals .cr2-signal-pulse-layout {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 8px;
  }

  .cr2-report #career-signals .cr2-life-pulse-main {
    min-height: 138px;
    padding: 8px;
    border-radius: 8px;
  }

  .cr2-report #career-signals .cr2-main-gauge {
    max-width: 130px;
    min-height: 105px;
  }

  .cr2-report #career-signals .cr2-main-gauge > div {
    gap: 4px;
  }

  .cr2-report #career-signals .cr2-main-gauge > div > strong {
    font-size: 17px;
  }

  .cr2-report #career-signals .cr2-signal-metric-grid {
    gap: 6px;
  }

  .cr2-report #career-signals .cr2-signal-card {
    min-height: 130px;
    gap: 5px;
    padding: 7px 6px;
    border-radius: 7px;
  }

  .cr2-report #career-signals .cr2-signal-card .cr2-donut {
    width: 54px;
    height: 54px;
  }

  .cr2-report #career-signals .cr2-signal-card h4 {
    min-height: 26px;
    font-size: 9px;
    line-height: 1.22;
  }

  .cr2-report #career-signals .cr2-signal-card .cr2-chip {
    min-height: 18px;
    padding: 2px 5px;
    font-size: 9px;
    line-height: 1.15;
  }

  /* Do not let the final report section generate a trailing blank sheet. */
  .cr2-report > .report-page:last-child {
    break-after: auto !important;
    page-break-after: auto !important;
  }
}
