@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-latin.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/open-sans-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f7f7;
  --surface-blue: #eaf2f7;
  --surface-green: #eef8f5;
  --ink: #121d23;
  --text: #111417;
  --muted: #4e565d;
  --line: #dfe6ec;
  --brand: #245c7c;
  --brand-strong: #121d23;
  --brand-soft: #eaf2f7;
  --brand-teal: #45c7ba;
  --brand-gold: #d6bd10;
  --brand-gold-soft: #fff8d6;
  --accent: #b9272f;
  --brand-gradient: linear-gradient(135deg, #121d23 0%, #29495b 58%, #35708c 100%);
  --brand-gradient-deep: linear-gradient(155deg, #10191f 0%, #223c4c 56%, #29495b 100%);
  --button-gradient: linear-gradient(135deg, #14232c 0%, #29495b 54%, #35708c 100%);
  --button-gradient-hover: linear-gradient(135deg, #19303c 0%, #315b70 54%, #3d7f9d 100%);
  --accent-soft: #fae8ea;
  --driver: #ce202f;
  --socializer: #d6bd10;
  --analyzer: #2057a8;
  --empathizer: #138f55;
  --shadow: 0 14px 34px rgba(18, 37, 49, 0.1);
  --shadow-strong: 0 22px 54px rgba(18, 37, 49, 0.16);
  --radius: 8px;
  --max: 1152px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  overflow-x: clip;
  font-family: "DM Sans", Helvetica, Arial, Lucida, sans-serif;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0 18px;
  background: var(--button-gradient);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(18, 37, 49, 0.12);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

button:hover,
.button:hover {
  background: var(--button-gradient-hover);
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
  text-decoration: none;
}

button.secondary,
.button.secondary {
  background: #ffffff;
  color: var(--brand);
  border-color: rgba(36, 92, 124, 0.22);
  box-shadow: 0 10px 22px rgba(18, 37, 49, 0.08);
}

button.secondary:hover,
.button.secondary:hover {
  background: var(--brand-soft);
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 10px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 104px;
  line-height: 1.45;
  resize: vertical;
}

input[type="range"] {
  min-height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

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

th {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 230, 236, 0.82);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(18, 37, 49, 0.08);
  backdrop-filter: blur(14px);
}

.topline {
  min-height: 60px;
  padding: 8px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--brand-gradient-deep);
}

.topline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--max);
  min-height: 44px;
  margin: 0 auto;
}

.brand-logo,
.mobile-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.brand-logo img {
  width: 154px;
  height: 46px;
  object-fit: contain;
}

.mobile-brand {
  display: none;
}

.mobile-brand img {
  width: 127px;
  height: 38px;
  object-fit: contain;
}

.topline-claim {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: right;
  text-transform: uppercase;
}

.top-nav,
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--max);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-nav {
  justify-content: flex-start;
}

.top-nav form {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
  background: #ffffff;
}

.top-nav .nav-links > a,
.main-nav a,
.topbar nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.top-nav .nav-links > a:hover,
.main-nav a:hover,
.topbar nav a:hover,
.main-nav a.is-active {
  background: var(--surface-blue);
  color: var(--brand);
  text-decoration: none;
  transform: translateY(-1px);
}

.main-nav,
.topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  margin-left: auto;
  padding: 6px;
  border: 1px solid rgba(223, 230, 236, 0.92);
  border-radius: 8px;
  background: rgba(247, 249, 251, 0.82);
}

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.page-head,
.tool-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}

.page-head,
.tool-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.page-head {
  border-top: 5px solid var(--brand);
}

.tool-hero,
.tool-hero.compact {
  border: 0;
  background: var(--brand-gradient-deep);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.tool-hero.compact {
  margin-bottom: 18px;
}

.guide-start {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.model-intro,
.guide-brief,
.book-cover,
.how-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.model-intro,
.guide-brief {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 38px);
}

.guide-copy,
.how-panel,
.research-section,
.research-heading,
.source-note {
  display: grid;
  gap: 10px;
}

.guide-copy p,
.research-heading p,
.research-section p,
.source-note p {
  color: var(--muted);
}

.how-panel {
  padding: 18px;
  border-left: 4px solid var(--brand-teal);
  background: var(--surface-soft);
  box-shadow: none;
}

.research-section {
  margin-top: 26px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(223, 230, 236, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 251, 0.96));
  box-shadow: var(--shadow);
}

.research-heading {
  max-width: 820px;
  gap: 8px;
}

.research-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.research-heading p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

.principle-grid {
  display: grid;
  gap: 12px;
}

.principle-card {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(223, 230, 236, 0.92);
  border-radius: 8px;
  background: #ffffff;
}

.principle-card strong {
  color: var(--ink);
  font-size: 1rem;
}

.principle-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.52;
}

.source-note {
  padding: 14px 16px;
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm);
  background: rgba(7, 95, 143, 0.07);
}

.source-note strong {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.source-note p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.guide-start {
  gap: 24px;
}

.model-intro {
  border: 0;
  background: var(--brand-gradient-deep);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.model-intro h1,
.model-intro h2,
.model-intro h3,
.model-intro .eyebrow,
.tool-hero h1,
.tool-hero h2,
.tool-hero h3,
.tool-hero .eyebrow,
.tool-hero .lead {
  color: #ffffff;
}

.model-intro p,
.tool-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.model-intro .diagram-frame {
  box-shadow: none;
}

.guide-brief {
  border: 1px solid rgba(223, 230, 236, 0.92);
}

.book-cover {
  position: relative;
  display: grid;
  min-height: 240px;
  align-content: end;
  gap: 7px;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(18, 29, 35, 0.96), rgba(41, 73, 91, 0.96) 58%, rgba(69, 199, 186, 0.88));
  color: #ffffff;
}

.book-cover::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
}

.book-cover img {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 58px;
  height: 58px;
  border-radius: 6px;
  object-fit: contain;
  background: #ffffff;
  padding: 4px;
}

.book-cover span,
.book-cover strong,
.book-cover em {
  position: relative;
  z-index: 1;
}

.book-cover span {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.book-cover strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(1.45rem, 6.4vw, 2.45rem);
  line-height: 0.98;
}

.book-cover em {
  font-style: normal;
  font-weight: 800;
}

.page-head h1,
.tool-hero h1,
.auth-panel h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.tool-hero h1 {
  color: #ffffff;
}

.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.band {
  margin-top: 28px;
}

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

.cards {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.metric-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.two-col,
.three-col,
.result-layout,
.model-band,
.style-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.item-card,
.auth-panel,
.detail-panel,
.metric-card,
.result-facts {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.item-card,
.detail-panel,
.metric-card,
.result-facts {
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.item-card:hover,
.detail-panel:hover {
  border-color: rgba(36, 92, 124, 0.28);
  box-shadow: 0 18px 42px rgba(18, 37, 49, 0.12);
  transform: translateY(-2px);
}

.item-card h2,
.item-card h3,
.detail-panel h3,
.band h2 {
  margin-top: 0;
  color: var(--ink);
}

.auth-panel {
  width: min(500px, 100%);
  margin: clamp(24px, 6vh, 68px) auto;
  border: 1px solid rgba(36, 92, 124, 0.18);
  border-top: 5px solid var(--brand);
  padding: clamp(24px, 5vw, 42px);
  box-shadow: 0 28px 80px rgba(18, 37, 49, 0.16);
}

.auth-header + .shell {
  position: relative;
  min-height: calc(100vh - 140px);
}

.auth-header + .shell::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 60px 0 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(69, 199, 186, 0.14), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(36, 92, 124, 0.15), transparent 32%),
    linear-gradient(180deg, #f8fbfc 0%, #ffffff 62%);
}

.auth-logo {
  display: block;
  width: 98px;
  height: 98px;
  margin-bottom: 12px;
  border-radius: 12px;
  object-fit: contain;
  background: #ffffff;
}

.brand-kicker {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-intro {
  margin: 10px 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

.products-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
  padding: clamp(24px, 4.5vw, 48px);
  border-radius: 12px;
  background: var(--brand-gradient-deep);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.products-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.products-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  line-height: 1.55;
}

.products-hero .eyebrow {
  color: var(--brand-teal);
}

.product-count {
  align-self: flex-start;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 850;
}

.products-section {
  margin-bottom: 30px;
}

.products-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  display: grid;
  min-height: 248px;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--brand-teal);
}

.product-card--type3-study::before {
  background: var(--brand);
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(36, 92, 124, 0.28);
  box-shadow: 0 24px 56px rgba(18, 37, 49, 0.15);
  transform: translateY(-3px);
  text-decoration: none;
}

.product-card__top,
.product-card__body {
  padding-right: clamp(20px, 4vw, 34px);
  padding-left: clamp(20px, 4vw, 34px);
}

.product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
}

.product-card:focus-visible {
  outline: 3px solid rgba(36, 92, 124, 0.28);
  outline-offset: 3px;
}

.product-mark {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-gradient-deep);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 24px rgba(18, 37, 49, 0.18);
}

.product-card--communication-style .product-mark {
  background: linear-gradient(145deg, #0f6d64, #45c7ba);
}

.product-mark--large {
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #387060;
  font-size: 0.78rem;
  font-weight: 850;
}

.availability i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #45b98a;
  box-shadow: 0 0 0 4px rgba(69, 185, 138, 0.14);
}

.product-card__body {
  align-self: end;
  padding-top: clamp(38px, 7vw, 68px);
  padding-bottom: 30px;
}

.product-card__body h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.035em;
}

.product-card__body > p:last-child {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-type {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--brand);
  font-weight: 900;
}

.product-link span:last-child {
  transition: transform 180ms ease;
}

.product-card:hover .product-link span:last-child,
.product-card:focus-visible .product-link span:last-child {
  transform: translateX(3px);
}

.history-band {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.product-detail-hero {
  display: grid;
  gap: 18px;
}

.product-detail-copy,
.product-detail-steps {
  border-radius: 12px;
  padding: clamp(24px, 5vw, 48px);
}

.product-detail-copy {
  background: var(--brand-gradient-deep);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.product-detail-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.045em;
}

.product-detail-copy .lead,
.product-detail-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.product-detail-copy .eyebrow {
  color: var(--brand-teal);
}

.product-detail-copy .button-row {
  margin-top: 26px;
}

.product-detail-copy .button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: #ffffff;
  color: var(--brand-strong);
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.single-sign-on-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.single-sign-on-note span {
  color: var(--brand-teal);
  font-weight: 950;
}

.product-detail-steps {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-detail-steps ol {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.product-detail-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.product-detail-steps li:last-child {
  border-bottom: 0;
}

.product-detail-steps li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 950;
}

.product-detail-steps strong {
  color: var(--ink);
}

.product-detail-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.access-options {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.access-options legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.inline-form input,
.inline-form select {
  width: auto;
}

.spaced {
  margin-bottom: 12px;
}

.check {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 600;
}

.check input {
  width: auto;
  min-height: auto;
}

.notice,
.error {
  border-radius: 6px;
  padding: 12px 14px;
  font-weight: 800;
}

.notice {
  border: 1px solid #a9dbc3;
  background: #e9f7f0;
  color: #0f6840;
}

.error {
  border: 1px solid #efb1bb;
  background: #fff0f2;
  color: #8f1020;
}

.muted {
  color: var(--muted);
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 3px 9px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-inactive {
  background: var(--accent-soft);
  color: var(--accent);
}

.clean-list,
.detail-panel ul,
.item-card ul {
  padding-left: 1.1rem;
  line-height: 1.5;
}

.clean-list li + li,
.detail-panel li + li,
.item-card li + li {
  margin-top: 7px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.metric-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.metric-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--button-gradient);
  color: #ffffff;
  font-weight: 900;
}

.metric-card p {
  margin: 4px 0 0;
}

.model-band {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.survey-help {
  border-left: 4px solid var(--brand);
  padding: 12px 14px;
  background: var(--brand-soft);
}

.participant-card {
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-teal);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface-soft);
}

.survey-row {
  display: grid;
  gap: 12px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(14px, 2vw, 18px);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(18, 37, 49, 0.06);
}

.survey-question-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
}

.survey-content {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.weight-visual-block {
  display: flex;
  grid-column: 2;
  justify-content: center;
  align-items: center;
  min-height: 92px;
  color: var(--brand);
}

.statement-pair {
  display: grid;
  gap: 10px;
}

.slider-choice-row {
  display: grid;
  gap: 12px;
  align-items: center;
}

.question-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--button-gradient);
  color: #ffffff;
  font-weight: 900;
}

.statement {
  margin: 0;
  line-height: 1.45;
}

.statement-first,
.statement-second,
.statement.first,
.statement.second {
  color: var(--ink);
  font-weight: 800;
}

.score-slider {
  --percent: 33.333%;
  --weight-tilt: -3.5deg;
  --left-pan-y: 1.5px;
  --right-pan-y: -1.5px;
  --left-weight-scale: 1.073;
  --right-weight-scale: 0.947;
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-blue) 100%);
}

.score-balance {
  font-size: 0.82rem;
}

.weight-scale-mini {
  position: relative;
  display: block;
  width: 126px;
  height: 82px;
}

.weight-scale-post,
.weight-scale-base,
.weight-scale-beam,
.weight-pan {
  position: absolute;
}

.weight-scale-post {
  left: 50%;
  bottom: 18px;
  width: 4px;
  height: 40px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--brand);
}

.weight-scale-base {
  left: 43px;
  bottom: 12px;
  width: 40px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
}

.weight-scale-beam {
  top: 22px;
  left: 17px;
  width: 92px;
  height: 4px;
  transform: rotate(var(--weight-tilt));
  transform-origin: center;
  border-radius: 999px;
  background: var(--brand);
  transition: transform 160ms ease;
}

.weight-scale-beam::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--brand);
}

.weight-pan {
  top: 38px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 22px;
  border-bottom: 4px solid var(--brand);
  border-radius: 0 0 22px 22px;
  transition: transform 160ms ease;
}

.weight-pan::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  width: 3px;
  height: 15px;
  transform: translateX(-50%);
  background: var(--brand);
}

.weight-pan-left {
  left: 0;
  transform: translateY(var(--left-pan-y));
}

.weight-pan-right {
  right: 0;
  transform: translateY(var(--right-pan-y));
}

.weight-disc {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 2px rgba(214, 189, 16, 0.16);
  transition: transform 160ms ease;
}

.weight-pan-left .weight-disc {
  transform: scale(var(--left-weight-scale));
}

.weight-pan-right .weight-disc {
  transform: scale(var(--right-weight-scale));
}

.score-slider-control {
  position: relative;
  display: block;
  padding-top: 28px;
}

.score-value {
  position: absolute;
  top: 0;
  left: clamp(16px, var(--percent), calc(100% - 16px));
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 26px;
  border-radius: 999px;
  background: var(--button-gradient);
  color: #ffffff;
  font-weight: 900;
  line-height: 1;
}

.score-slider.is-unanswered .score-value {
  border: 1px dashed rgba(78, 86, 93, 0.55);
  background: #ffffff;
  color: var(--muted);
  box-shadow: none;
}

.score-slider.is-unanswered .score-value::after {
  background: #ffffff;
  border-right: 1px dashed rgba(78, 86, 93, 0.55);
  border-bottom: 1px dashed rgba(78, 86, 93, 0.55);
}

.score-value::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translateX(-50%) rotate(45deg);
  background: #29495b;
}

.score-slider input[type="range"] {
  appearance: none;
  -webkit-appearance: none;
  direction: rtl;
  width: 100%;
  cursor: pointer;
  background: transparent;
}

.score-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 9px;
  border-radius: 999px;
  background: var(--line);
}

.score-slider input[type="range"]::-moz-range-track {
  height: 9px;
  border-radius: 999px;
  background: var(--line);
}

.score-slider input[type="range"]::-moz-range-progress {
  height: 9px;
  border-radius: 999px;
  background: transparent;
}

.score-slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  margin-top: -9.5px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--brand-strong);
  box-shadow: 0 4px 12px rgba(18, 37, 49, 0.28);
}

.score-slider input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--brand-strong);
  box-shadow: 0 4px 12px rgba(18, 37, 49, 0.28);
}

.score-slider input[type="range"]:focus-visible {
  outline: 3px solid rgba(21, 92, 133, 0.28);
  outline-offset: 4px;
}

.score-ticks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.score-ticks span {
  text-align: center;
}

.score-ticks span:first-child {
  text-align: left;
}

.score-ticks span:nth-child(2),
.score-ticks span:nth-child(3) {
  text-align: center;
}

.score-ticks span:last-child {
  text-align: right;
}

.score-balance {
  color: var(--muted);
  font-weight: 800;
}

.sticky-actions {
  display: flex;
  justify-content: stretch;
  padding-top: 8px;
}

.sticky-actions button {
  width: 100%;
}

.diagram-frame {
  --x: 0%;
  --y: 100%;
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0;
  padding: 34px 38px 58px 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(18, 37, 49, 0.08);
}

.quadrant-chart {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #ffffff;
}

.axis-line {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.axis-line-x {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.axis-line-y {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

.quadrant {
  display: grid;
  place-items: center;
  padding: 8px;
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1.06;
  overflow-wrap: anywhere;
  text-align: center;
}

.quadrant.empathizer {
  background: var(--empathizer);
}

.quadrant.socializer {
  background: var(--socializer);
  color: #1f2707;
}

.quadrant.analyzer {
  background: var(--analyzer);
}

.quadrant.driver {
  background: var(--driver);
}

.diagram-axis-name,
.diagram-axis-value {
  position: absolute;
  z-index: 3;
  color: var(--ink);
  font-weight: 900;
}

.diagram-axis-name {
  font-size: 0.72rem;
}

.diagram-axis-value {
  border-radius: 999px;
  padding: 2px 7px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.58rem;
}

.diagram-axis-x {
  right: 38px;
  bottom: 10px;
  left: 64px;
  text-align: center;
}

.diagram-axis-y {
  top: 34px;
  bottom: 58px;
  left: 12px;
  display: grid;
  place-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.diagram-low-x {
  bottom: 32px;
  left: 64px;
}

.diagram-high-x {
  right: 38px;
  bottom: 32px;
}

.diagram-low-y {
  bottom: 58px;
  left: 18px;
}

.diagram-high-y {
  top: 34px;
  left: 18px;
}

.result-dot {
  position: absolute;
  z-index: 4;
  left: var(--x, 0%);
  top: var(--y, 100%);
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.55);
}

.model-chart,
.result-diagram {
  justify-self: center;
}

.style-preview {
  border-top-width: 5px;
}

.style-driver {
  border-top-color: var(--driver);
}

.style-socializer {
  border-top-color: var(--socializer);
}

.style-analyzer {
  border-top-color: var(--analyzer);
}

.style-empathizer {
  border-top-color: var(--empathizer);
}

body > main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.tool-shell,
.assessment-main,
.survey-form,
.result-detail,
.band,
.detail-grid {
  display: grid;
  gap: 16px;
}

.intro-band,
.page-hero,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.intro-band,
.page-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: end;
  padding: clamp(22px, 3vw, 34px);
}

.intro-band {
  border: 0;
  background: var(--brand-gradient-deep);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.intro-band h1,
.intro-band h2,
.intro-band h3,
.intro-band .eyebrow,
.intro-band .lead {
  color: #ffffff;
}

.intro-band p {
  color: rgba(255, 255, 255, 0.82);
}

.intro-band .button.secondary,
.tool-hero .button.secondary,
.tool-hero button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: #ffffff;
  color: var(--brand-strong);
}

.page-hero {
  margin-bottom: 20px;
  border-top: 5px solid var(--brand);
}

.info-card,
.detail-panel {
  padding: clamp(18px, 2.4vw, 24px);
}

.result-detail {
  margin-top: 28px;
}

.result-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  padding-top: 8px;
}

.brand-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.brand-footer p {
  margin: 6px 0 0;
  font-size: 0.92rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.brand-lockup img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: contain;
  background: #ffffff;
}

.site-footer,
.brand-footer {
  width: 100%;
  margin: 0;
  padding: 34px max(16px, calc((100vw - var(--max)) / 2));
  border-top: 0;
  background: var(--brand-gradient-deep);
  color: rgba(255, 255, 255, 0.78);
}

.footer-lockup,
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 900;
}

.footer-lockup img,
.brand-lockup img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: contain;
  background: #ffffff;
}

.site-footer p,
.brand-footer p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.language-link {
  border-color: rgba(69, 199, 186, 0.32) !important;
  color: var(--brand) !important;
}

.language-link:hover {
  color: var(--brand-strong) !important;
}

dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

@media (min-width: 720px) {
  .products-hero {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .product-count {
    align-self: flex-end;
  }

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

  .product-detail-hero {
    grid-template-columns: minmax(0, 1.22fr) minmax(310px, 0.78fr);
    align-items: stretch;
  }

  .page-head,
  .tool-hero,
  .intro-band,
  .result-heading {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .guide-start {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  }

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

  .quadrant {
    font-size: 0.82rem;
  }

  .two-col,
  .model-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .result-layout {
    grid-template-columns: minmax(300px, 1.15fr) minmax(260px, 0.85fr);
  }

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

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

  .survey-row {
    gap: 14px;
  }

  .slider-choice-row {
    grid-template-columns: minmax(180px, 1fr) minmax(260px, 0.9fr) minmax(180px, 1fr);
    gap: 18px;
  }

  .statement-second,
  .statement.second {
    text-align: right;
  }

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

  .sticky-actions button {
    width: auto;
  }
}

@media (max-width: 820px) {
  .topline {
    display: none;
  }

  .mobile-brand {
    display: inline-flex;
  }

  .top-nav,
  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    height: auto;
    min-height: 64px;
    padding: 12px 16px;
  }

  .top-nav form {
    grid-row: 1;
    grid-column: 2;
    margin-left: 0;
  }

  .top-nav .mobile-brand {
    grid-row: 1;
    grid-column: 1;
    min-width: 0;
  }

  .top-nav .nav-links > a,
  .main-nav a,
  .topbar nav a {
    min-height: 44px;
    padding: 8px 10px;
  }

  .nav-links {
    grid-row: 2;
    grid-column: 1 / -1;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .nav-links > a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .main-nav,
  .topbar nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }
}

.content-tabs {
  position: sticky;
  top: 134px;
  z-index: 8;
  display: flex;
  gap: 6px;
  margin: 0 0 20px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 22px rgba(18, 37, 49, 0.08);
}

.content-tabs a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.content-tabs a:hover {
  background: var(--surface-blue);
  color: var(--brand);
}

.content-editor,
.editor-section,
.score-test-form,
.score-test-result {
  display: grid;
  gap: 18px;
}

.visual-content-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 18px;
  align-items: start;
}

.visual-preview-stack {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.preview-page {
  scroll-margin-top: 210px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(16px, 2.4vw, 24px);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.preview-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.preview-toolbar .eyebrow {
  margin: 0;
}

.preview-toolbar strong {
  color: var(--ink);
  font-size: 1rem;
}

.preview-toolbar span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.preview-model-card,
.preview-panel,
.preview-hero,
.preview-report-card,
.preview-profile-card,
.preview-question-row {
  border: 1px solid rgba(223, 230, 236, 0.96);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 37, 49, 0.06);
}

.preview-model-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.9fr);
  gap: 18px;
  align-items: center;
  padding: clamp(16px, 2vw, 24px);
  background: var(--brand-gradient-deep);
  color: #ffffff;
}

.preview-model-card .eyebrow,
.preview-model-card h2,
.preview-model-card p {
  color: #ffffff;
}

.preview-diagram-mini .diagram-frame {
  max-width: 420px;
  margin-inline: auto;
  box-shadow: none;
}

.preview-two-col,
.profile-preview-grid,
.profile-preview-columns,
.preview-principles {
  display: grid;
  gap: 14px;
}

.preview-two-col {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
}

.preview-panel,
.preview-hero,
.preview-report-card,
.preview-profile-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: clamp(14px, 2vw, 20px);
}

.preview-hero {
  background: var(--brand-gradient-deep);
  color: #ffffff;
}

.preview-hero .eyebrow,
.preview-hero h2,
.preview-hero p {
  color: #ffffff;
}

.preview-input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--muted);
  background: #ffffff;
}

.preview-question-list {
  display: grid;
  gap: 10px;
  max-height: 780px;
  overflow: auto;
  padding-right: 2px;
}

.preview-question-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
}

.preview-question-copy {
  display: grid;
  gap: 10px;
}

.question-reorder-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.question-reorder-bar span {
  margin-left: 2px;
}

.question-drag-handle,
.question-move-button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(36, 92, 124, 0.18);
  border-radius: 6px;
  padding: 0;
  background: #ffffff;
  color: var(--brand);
  box-shadow: none;
  font-size: 0.96rem;
  line-height: 1;
}

.question-drag-handle {
  cursor: grab;
}

.question-drag-handle:active {
  cursor: grabbing;
}

.question-drag-handle:hover,
.question-move-button:hover {
  background: var(--surface-blue);
  box-shadow: none;
  transform: none;
}

.question-move-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.preview-question-row.is-dragging {
  opacity: 0.55;
  outline: 2px dashed var(--brand-teal);
  outline-offset: 3px;
}

.preview-slider-line {
  display: grid;
  grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.preview-slider-line span {
  height: 4px;
  border-radius: 999px;
  background: var(--line);
}

.preview-action-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.preview-principles,
.profile-preview-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.preview-principle {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--surface-soft);
}

.preview-source {
  display: grid;
  gap: 8px;
  border-left: 4px solid var(--brand);
  padding: 12px;
  background: var(--brand-soft);
}

.preview-profile-card {
  border-top: 5px solid var(--brand);
}

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

.preview-profile-card details {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.preview-profile-card summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  cursor: pointer;
  color: var(--brand);
  font-weight: 900;
}

.preview-report-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
}

.editable-copy {
  all: unset;
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-height: 44px;
  border: 1px dashed transparent;
  border-radius: 6px;
  padding: 3px 5px;
  color: inherit;
  font: inherit;
  line-height: inherit;
  cursor: text;
  white-space: pre-wrap;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.editable-copy:hover,
.editable-copy:focus-visible {
  border-color: rgba(69, 199, 186, 0.86);
  background: rgba(69, 199, 186, 0.1);
  box-shadow: 0 0 0 3px rgba(69, 199, 186, 0.14);
  outline: none;
}

.editable-copy.is-selected {
  border-color: var(--brand-teal);
  background: rgba(69, 199, 186, 0.16);
  box-shadow: 0 0 0 3px rgba(69, 199, 186, 0.18);
}

.editable-copy--heading,
.editable-copy--hero,
.editable-copy--book-title {
  font-weight: 950;
}

.editable-copy--hero {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.editable-copy--lead,
.editable-copy--paragraph,
.editable-copy--statement {
  line-height: 1.5;
}

.editable-copy--button,
.editable-copy--button-secondary,
.editable-copy--pill {
  display: inline-flex;
  width: auto;
  min-height: 44px;
  align-items: center;
  border-style: solid;
  padding: 7px 12px;
  font-weight: 950;
  white-space: normal;
}

.editable-copy--button {
  background: var(--button-gradient);
  color: #ffffff;
}

.editable-copy--button-secondary,
.editable-copy--pill {
  background: #ffffff;
  color: var(--brand);
  border-color: rgba(36, 92, 124, 0.24);
}

.editable-copy--label {
  color: var(--ink);
  font-weight: 900;
}

.editable-copy--muted {
  color: var(--muted);
}

.editable-copy--list {
  padding: 6px 8px;
}

.editable-copy--list ol {
  margin: 0;
  padding-left: 20px;
}

.editable-copy--list li + li {
  margin-top: 5px;
}

.inline-editor-panel {
  position: sticky;
  top: 210px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand-teal);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.inline-editor-empty,
.inline-editor-active {
  display: grid;
  gap: 12px;
}

.inline-editor-panel h2 {
  margin: 0;
}

.inline-editor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.inline-editor-meta span {
  border-radius: 999px;
  padding: 4px 8px;
  background: var(--surface-blue);
}

.inline-editor-meta [data-editor-dirty] {
  background: var(--brand-gold-soft);
  color: var(--ink);
}

.source-editor-section {
  display: none;
}

.editor-section {
  scroll-margin-top: 210px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.editor-grid,
.principle-editor-grid,
.question-editor-grid,
.score-test-layout {
  display: grid;
  gap: 14px;
}

.editor-grid,
.principle-editor-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.question-editor-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.editor-fieldset,
.question-editor-card,
.profile-editor {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--surface-soft);
}

.editor-fieldset legend,
.question-editor-card legend,
.profile-editor summary {
  color: var(--brand);
  font-weight: 950;
}

.question-editor-card legend span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.question-editor-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.profile-editor {
  margin-top: 12px;
}

.profile-editor summary {
  cursor: pointer;
  min-height: 36px;
}

.editor-save {
  z-index: 9;
}

.score-test-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: start;
}

.score-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 10px;
}

.score-select-grid label {
  font-size: 0.83rem;
}

.score-test-result {
  position: sticky;
  top: 210px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand-teal);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface-green);
}

.score-test-result h3 {
  margin: 0;
  font-size: 1.45rem;
}

.score-test-result dl,
.score-test-result dl div {
  display: grid;
  gap: 7px;
}

.score-test-result dl {
  margin: 4px 0;
}

.score-test-result dl div {
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid rgba(36, 92, 124, 0.18);
  padding: 7px 0;
}

.score-test-result dt {
  color: var(--muted);
  font-weight: 850;
}

.score-test-result dd {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  text-align: right;
}

.compare-tool,
.compare-form,
.compare-pane,
.compare-pane-head,
.compare-empty,
.compare-score-card {
  display: grid;
  gap: 18px;
}

.compare-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(18, 37, 49, 0.08);
}

.compare-tab {
  min-height: 40px;
  border: 1px solid rgba(36, 92, 124, 0.2);
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.compare-tab:hover {
  background: var(--brand-soft);
  color: var(--brand);
  box-shadow: none;
}

.compare-tab.is-active {
  background: var(--button-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(18, 37, 49, 0.14);
}

.compare-pane {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(14px, 2vw, 20px);
  background: var(--surface-soft);
}

.compare-pane-head {
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.compare-pane-head h2,
.compare-pane-head p {
  margin: 0;
}

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

.compare-empty,
.compare-score-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(16px, 2vw, 22px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.compare-score-card h3,
.compare-score-card p {
  margin: 0;
}

.compare-score-card dl,
.compare-score-card dl div {
  display: grid;
  gap: 7px;
}

.compare-score-card dl {
  margin: 0;
}

.compare-score-card dl div {
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid rgba(36, 92, 124, 0.18);
  padding: 7px 0;
}

.compare-score-card dt {
  color: var(--muted);
  font-weight: 850;
}

.compare-score-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  text-align: right;
}

.compare-score-card .diagram-frame {
  max-width: 360px;
  padding: 26px 32px 48px 52px;
  box-shadow: none;
}

.compare-score-card .quadrant {
  font-size: 0.52rem;
}

@media (max-width: 820px) {
  .content-tabs {
    top: 64px;
  }

  .visual-content-editor,
  .preview-model-card,
  .preview-two-col,
  .profile-preview-columns {
    grid-template-columns: 1fr;
  }

  .inline-editor-panel {
    position: static;
    order: -1;
  }

  .question-editor-grid,
  .score-test-layout,
  .compare-results {
    grid-template-columns: 1fr;
  }

  .score-test-result {
    position: static;
  }
}

.print-report {
  display: none;
}

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

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

.admin-sidebar {
  display: none;
}

.admin-sidebar-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 22px 20px 18px;
}

.admin-sidebar-head .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.admin-sidebar-head strong {
  color: #ffffff;
  font-size: 1.45rem;
}

.admin-sidebar-nav {
  display: grid;
  gap: 5px;
  padding: 12px;
}

.admin-nav-link,
.admin-mobile-link {
  display: grid;
  gap: 2px;
  min-height: 54px;
  border-radius: 8px;
  padding: 10px 12px;
  text-decoration: none;
}

.admin-nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.admin-nav-link:hover,
.admin-nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
}

.admin-nav-link.is-active {
  background: #ffffff;
  color: var(--brand-strong);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.admin-nav-link span,
.admin-mobile-link span {
  font-weight: 900;
}

.admin-nav-link small,
.admin-mobile-link small {
  color: inherit;
  font-size: 0.73rem;
  opacity: 0.72;
}

.admin-workspace-main {
  min-width: 0;
}

.admin-mobile-navigation {
  margin-bottom: 14px;
  border: 1px solid rgba(36, 92, 124, 0.22);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.admin-mobile-navigation summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--brand);
}

.admin-mobile-navigation summary span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-mobile-navigation nav {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding: 8px;
}

.admin-mobile-link {
  color: var(--ink);
}

.admin-mobile-link:hover,
.admin-mobile-link:focus-visible,
.admin-mobile-link.is-active {
  background: var(--brand-soft);
  color: var(--brand-strong);
  text-decoration: none;
}

.admin-page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.admin-page-head h1,
.admin-page-head p {
  margin: 0;
}

.admin-page-head h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.admin-page-head h1 + p {
  margin-top: 8px;
  color: var(--muted);
}

.admin-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-overview-intro {
  margin-top: 20px;
  color: var(--muted);
}

.admin-overview-intro p {
  margin: 0;
}

.admin-route-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.admin-route-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 94px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.admin-route-card:hover,
.admin-route-card:focus-visible {
  border-color: rgba(36, 92, 124, 0.38);
  box-shadow: var(--shadow-strong);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-2px);
}

.admin-route-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.75rem;
  font-weight: 950;
}

.admin-route-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-route-copy strong {
  font-size: 1rem;
}

.admin-route-copy small {
  color: var(--muted);
  line-height: 1.35;
}

.admin-route-meta {
  display: none;
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 850;
}

.admin-route-arrow {
  grid-column: 3;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 900;
}

.admin-split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.admin-form-panel,
.admin-list-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2.5vw, 24px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.admin-split-layout .admin-form-panel {
  width: 100%;
  max-width: 620px;
}

.admin-form-panel h2,
.admin-list-panel h2 {
  margin-top: 0;
}

.admin-list-panel-full {
  margin-top: 20px;
}

.admin-list-panel .table-wrap {
  margin-top: 14px;
}

.admin-row-actions {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.admin-row-actions form {
  margin: 0;
  min-width: 0;
}

.admin-row-actions button {
  width: 100%;
  max-width: 100%;
  white-space: normal;
}

.admin-data-table button,
.admin-data-table .table-action {
  white-space: nowrap;
}

.admin-data-table .admin-row-actions button {
  overflow-wrap: anywhere;
  white-space: normal;
}

@media (min-width: 620px) {
  .admin-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-route-card {
    grid-template-columns: 44px minmax(0, 1fr) auto auto;
  }

  .admin-route-meta {
    display: inline-flex;
  }

  .admin-route-arrow {
    grid-column: 4;
  }
}

@media (min-width: 980px) {
  .admin-workspace {
    grid-template-columns: 238px minmax(0, 1fr);
    gap: 24px;
  }

  .admin-sidebar {
    position: sticky;
    top: 88px;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: var(--brand-gradient-deep);
    box-shadow: 0 20px 54px rgba(18, 37, 49, 0.2);
  }

  .admin-mobile-navigation {
    display: none;
  }

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

@media (min-width: 821px) and (max-width: 1179px) {
  .admin-workspace .visual-content-editor {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-workspace .inline-editor-panel {
    position: static;
    order: -1;
  }
}

@media (max-width: 820px) {
  .admin-page-head {
    align-items: stretch;
  }

  .admin-page-actions,
  .admin-page-actions .button {
    width: 100%;
  }

  .admin-route-card {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .admin-data-table {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .admin-data-table table,
  .admin-data-table thead,
  .admin-data-table tbody,
  .admin-data-table tr,
  .admin-data-table td {
    display: block;
    width: 100%;
  }

  .admin-data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .admin-data-table tbody {
    display: grid;
    gap: 12px;
  }

  .admin-data-table tr {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 14px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .admin-data-table td {
    display: grid;
    grid-template-columns: minmax(78px, 0.64fr) minmax(0, 1.36fr);
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 9px 0;
    overflow-wrap: anywhere;
  }

  .admin-data-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .admin-data-table td:last-child {
    border-bottom: 0;
  }

  .admin-row-actions {
    display: grid;
    min-width: 0;
  }

  .admin-row-actions form,
  .admin-row-actions button,
  .admin-data-table form button {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }
}

.source-state {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--surface);
}

.source-state span {
  color: var(--muted);
}

.source-state-ok {
  border-color: #a9dbc3;
  background: #f1faf6;
}

.source-state-error {
  border-color: #efb1bb;
  background: #fff6f7;
}

.course-metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.course-metric-grid .metric-card {
  display: block;
}

.course-metric-grid .metric-card span {
  display: block;
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.course-metric-grid .metric-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1;
}

.course-metric-grid .metric-attention {
  border-color: rgba(190, 95, 52, 0.38);
  background: #fffaf6;
}

.metric-disclaimer {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.section-heading,
.course-session-head,
.progress-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
}

.section-heading h2,
.course-session-head h3 {
  margin: 0;
}

.course-session-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.course-session-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(16px, 2.5vw, 22px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.progress-label {
  margin-bottom: 7px;
  font-size: 0.84rem;
}

progress {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: var(--brand-soft);
}

progress::-webkit-progress-bar {
  border-radius: 999px;
  background: var(--brand-soft);
}

progress::-webkit-progress-value,
progress::-moz-progress-bar {
  border-radius: 999px;
  background: var(--button-gradient);
}

.course-target-form,
.course-filter-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr)) auto;
  gap: 10px;
  align-items: end;
  margin-top: 18px;
}

.course-filter-form {
  grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(170px, 1fr)) auto auto;
  margin-bottom: 14px;
}

.course-filter-form .wide {
  min-width: 0;
}

.button.ghost {
  border-color: transparent;
  background: transparent;
  color: var(--brand);
  box-shadow: none;
}

.status-confirmed,
.status-completed,
.follow-done {
  background: #e9f7f0;
  color: #0f6840;
}

.status-cancelled {
  background: #f2f4f5;
  color: #58636a;
}

.status-waitlisted,
.follow-waiting,
.follow-scheduled {
  background: #fff4df;
  color: #8a5400;
}

.follow-action_needed {
  background: #fff0f2;
  color: #8f1020;
}

.table-action {
  font-weight: 900;
  white-space: nowrap;
}

.template-settings summary {
  min-height: 44px;
  padding: 10px 0;
}

.template-settings form {
  max-width: 820px;
  margin-top: 14px;
}

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

.registration-detail-grid .band {
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 26px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.detail-list {
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(0, 1.3fr);
  gap: 0;
  margin: 18px 0;
}

.detail-list dt,
.detail-list dd {
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  overflow-wrap: anywhere;
}

.detail-list dd {
  font-size: 0.96rem;
}

.preserve-lines {
  white-space: pre-wrap;
}

.copy-message-panel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(36, 92, 124, 0.25);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 26px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.copy-feedback {
  min-height: 1.3em;
  margin: 0;
  color: #0f6840;
  font-weight: 800;
}

.empty-state {
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--muted);
  background: var(--surface-soft);
}

@media (max-width: 820px) {
  .session-progress-grid,
  .course-target-form,
  .course-filter-form,
  .registration-detail-grid {
    grid-template-columns: 1fr;
  }

  .course-target-form button,
  .course-filter-form button,
  .course-filter-form .button {
    width: 100%;
  }

  .course-registration-table {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .course-registration-table table,
  .course-registration-table thead,
  .course-registration-table tbody,
  .course-registration-table tr,
  .course-registration-table td {
    display: block;
    width: 100%;
  }

  .course-registration-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .course-registration-table tbody {
    display: grid;
    gap: 12px;
  }

  .course-registration-table tr {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .course-registration-table td {
    display: grid;
    grid-template-columns: minmax(92px, 0.7fr) minmax(0, 1.3fr);
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 9px 0;
    overflow-wrap: anywhere;
  }

  .course-registration-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .course-registration-table td:last-child {
    border-bottom: 0;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .detail-list dt {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .detail-list dd {
    padding-top: 3px;
  }
}

@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  html,
  body {
    background: #ffffff !important;
    color: #17232b;
    font-size: 9.4pt;
  }

  body {
    min-width: 0;
  }

  .top-nav,
  .topbar,
  .site-header,
  .site-footer,
  .brand-footer,
  main > :not(.print-report) {
    display: none !important;
  }

  main {
    width: 100%;
    padding: 0;
  }

  .print-report {
    display: block !important;
  }

  .print-report-head {
    display: grid;
    grid-template-columns: 30mm 1fr;
    gap: 8mm;
    align-items: center;
    padding-bottom: 5mm;
    border-bottom: 1px solid var(--line);
  }

  .print-report-head img {
    width: 27mm;
    height: auto;
  }

  .print-report h1,
  .print-report h2,
  .print-report h3,
  .print-report p {
    margin: 0;
  }

  .print-report h1 {
    color: var(--ink);
    font-size: 18pt;
    line-height: 1.05;
  }

  .print-report h2 {
    color: var(--ink);
    font-size: 12pt;
    line-height: 1.2;
  }

  .print-report h3 {
    color: var(--brand);
    font-size: 9pt;
    line-height: 1.2;
  }

  .print-report .eyebrow {
    margin-bottom: 2mm;
    font-size: 7.4pt;
  }

  .print-report-head p,
  .print-report-section > p,
  .print-report-intro {
    color: var(--muted);
    line-height: 1.35;
  }

  .print-report-meta {
    margin-top: 2.5mm !important;
    font-size: 8pt;
  }

  .print-report-top {
    display: grid;
    grid-template-columns: 74mm 1fr;
    gap: 7mm;
    align-items: start;
    margin-top: 5mm;
    break-inside: avoid;
  }

  .print-report-diagram .diagram-frame {
    max-width: 74mm;
    padding: 7mm 7mm 11mm 12mm;
    border-color: #cbd8df;
    box-shadow: none;
  }

  .print-report-diagram .quadrant {
    font-size: 7.6pt;
  }

  .print-report-score-card,
  .print-report-section,
  .print-report-detail-grid article {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #ffffff;
  }

  .print-report-score-card {
    padding: 4.5mm;
    break-inside: avoid;
  }

  .print-report-section {
    padding: 4.2mm;
  }

  .print-report-section {
    margin-top: 4mm;
  }

  .print-report-score-card .score-list {
    gap: 2.2mm;
    margin: 3mm 0;
  }

  .print-report-score-card .score-list div {
    display: flex;
    justify-content: space-between;
    gap: 6mm;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.6mm;
  }

  .print-report-score-card dd {
    text-align: right;
  }

  .print-report-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3mm;
    margin-top: 3.5mm;
  }

  .print-report-detail-grid article {
    padding: 3mm;
    break-inside: avoid;
  }

  .print-report ul {
    margin: 2mm 0 0;
    padding-left: 4mm;
    line-height: 1.28;
  }

  .print-report li + li {
    margin-top: 1.2mm;
  }

}
