:root {
  --cobalt: #2f66ff;
  --cobalt-dark: #214bc4;
  --teal: #12afa0;
  --coral: #ff6e5b;
  --yellow: #f2b630;
  --ink: #17213b;
  --ink-soft: #33405d;
  --muted: #6a758d;
  --line: #dce3ef;
  --ice: #f4f7ff;
  --blue-soft: #edf3ff;
  --teal-soft: #eaf9f6;
  --coral-soft: #fff0ed;
  --yellow-soft: #fff8dd;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(37, 61, 112, .12);
  --radius: 8px;
  --content: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ice);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a, input, label { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
button:focus-visible, a:focus-visible, input:focus-visible, label:has(input:focus-visible) {
  outline: 3px solid rgba(47, 102, 255, .25);
  outline-offset: 3px;
}
[hidden] { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 30;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--content)) / 2));
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
}
body[data-view="quiz"] > .site-header { display: none; }
.brand, .quiz-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}
.brand > span:last-child, .quiz-brand > span:nth-of-type(2) {
  display: grid;
  line-height: 1.15;
}
.brand strong, .quiz-brand strong { font-size: 17px; }
.brand small, .quiz-brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}
.brand-badge {
  display: grid;
  width: 38px;
  height: 38px;
  place-content: center;
  color: #fff;
  background: var(--cobalt);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}
.header-note {
  color: var(--muted);
  font-size: 13px;
}

.primary-button, .secondary-button, .icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.primary-button {
  min-width: 184px;
  height: 54px;
  gap: 16px;
  padding: 0 24px;
  color: #fff;
  background: var(--cobalt);
  border-radius: 7px;
  font-weight: 750;
}
.primary-button:hover { background: var(--cobalt-dark); transform: translateY(-1px); }
.primary-button.compact { min-width: 150px; }
.secondary-button {
  min-width: 140px;
  height: 52px;
  gap: 10px;
  padding: 0 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd5e6;
  border-radius: 7px;
  font-weight: 700;
}
.secondary-button:hover { border-color: var(--cobalt); color: var(--cobalt); }
.icon-button {
  width: 36px;
  height: 36px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 20px;
}
.icon-button:hover { color: var(--ink); background: var(--ice); }

.view { min-height: calc(100vh - 70px); }

/* Cover */
.cover-view { background: #fff; }
.cover-hero-band {
  padding: 62px 24px 52px;
  background: var(--ice);
  border-bottom: 1px solid var(--line);
}
.cover-hero {
  width: min(100%, var(--content));
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: 68px;
  align-items: center;
}
.cover-content { min-width: 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 800;
}
.cover-content h1, .report-hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: 0;
}
.cover-statement {
  margin: 14px 0 0;
  color: var(--teal);
  font-size: 28px;
  font-weight: 800;
}
.cover-lead {
  max-width: 650px;
  margin: 20px 0 25px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}
.name-field {
  display: grid;
  width: min(100%, 410px);
  gap: 8px;
  margin-bottom: 16px;
}
.name-field > span { font-size: 13px; font-weight: 750; }
.name-field small { margin-left: 5px; color: var(--muted); font-weight: 400; }
.name-field .access-code-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.name-field input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd5e6;
  border-radius: 7px;
}
.name-field input:focus { border-color: var(--cobalt); }
.cover-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cover-cta-row p { margin: 0; color: var(--muted); font-size: 12px; }
.cover-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cover-facts div {
  min-width: 0;
  padding: 15px 14px;
  background: #fff;
}
.cover-facts strong { display: block; color: var(--ink); font-size: 18px; }
.cover-facts span { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }
.cover-spectrum {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.spectrum-heading { display: grid; gap: 3px; margin-bottom: 18px; }
.spectrum-heading span { color: var(--cobalt); font-size: 11px; font-weight: 800; }
.spectrum-heading strong { font-size: 18px; }
.spectrum-list { display: grid; gap: 9px; }
.spectrum-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 10px;
}
.spectrum-list span { color: var(--ink-soft); font-size: 12px; }
.spectrum-list i {
  position: relative;
  height: 7px;
  overflow: hidden;
  background: #e9eef8;
  border-radius: 4px;
}
.spectrum-list i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  background: var(--tone);
  border-radius: inherit;
}
.cover-spectrum > p {
  margin: 18px 0 0;
  padding-top: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.cover-section {
  width: min(calc(100% - 48px), var(--content));
  margin: auto;
  padding: 84px 0;
}
.cover-section-heading { max-width: 720px; margin-bottom: 34px; }
.cover-section-heading p {
  margin: 0 0 5px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}
.cover-section-heading h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.35;
}
.cover-dimensions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  border: 0;
}
.cover-dimensions article {
  min-width: 0;
  min-height: 142px;
  padding: 16px;
  background: #f8faff;
  background: color-mix(in srgb, var(--tone) 8%, white);
  border: 1px solid color-mix(in srgb, var(--tone) 22%, white);
  border-top: 3px solid var(--tone);
  border-radius: 8px;
}
.cover-dimensions article > span { color: var(--tone); font-size: 11px; font-weight: 800; }
.cover-dimensions h3 { margin: 10px 0 5px; font-size: 15px; line-height: 1.4; }
.cover-dimensions h3 em {
  display: inline-block;
  margin-top: 5px;
  padding: 2px 6px;
  color: #73550b;
  background: var(--yellow-soft);
  border-radius: 4px;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}
.cover-dimensions p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.theory-band {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
  padding: 54px max(24px, calc((100vw - var(--content)) / 2));
  color: var(--ink);
  background: #f8faff;
  box-shadow: inset 0 1px 0 rgba(47, 102, 255, .08), inset 0 -1px 0 rgba(47, 102, 255, .08);
}
.theory-band div > p { margin: 0 0 4px; color: var(--teal); font-size: 12px; font-weight: 800; }
.theory-band h2 { margin: 0; font-size: 27px; line-height: 1.45; }
.theory-band > p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.85; }
.sample-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sample-types article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.sample-types article:nth-child(1) { background: var(--blue-soft); border-top: 4px solid var(--cobalt); }
.sample-types article:nth-child(2) { background: var(--teal-soft); border-top: 4px solid var(--teal); }
.sample-types article:nth-child(3) { background: var(--yellow-soft); border-top: 4px solid var(--yellow); }
.sample-types span { color: var(--muted); font-size: 11px; font-weight: 700; }
.sample-types h3 { margin: 15px 0 10px; font-size: 19px; }
.sample-types p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.cover-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 34px;
  padding: 28px 30px;
  color: #fff;
  background: var(--cobalt);
  border-radius: var(--radius);
}
.cover-final-cta div { display: grid; gap: 3px; }
.cover-final-cta strong { font-size: 19px; }
.cover-final-cta span { color: rgba(255,255,255,.74); font-size: 13px; }
.cover-final-cta .primary-button { color: var(--ink); background: #fff; }
.cover-final-cta .primary-button:hover { background: var(--yellow-soft); }

/* Quiz */
.quiz-view {
  min-height: 100vh;
  padding: 32px 24px;
  background: var(--blue-soft);
}
.quiz-shell {
  width: min(100%, 900px);
  margin: auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe5f2;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(47, 82, 160, .13);
}
.quiz-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 20px 30px 16px;
  background: #fafbff;
}
.quiz-brand { min-width: 0; }
.quiz-brand > b {
  margin-left: 8px;
  padding: 5px 10px;
  color: var(--cobalt);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 11px;
  white-space: nowrap;
}
.quiz-progress-copy {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 12px;
  justify-items: end;
  color: var(--muted);
  font-size: 12px;
}
.quiz-progress-copy > span { grid-column: 1 / -1; }
.quiz-progress-copy strong { margin-left: 5px; color: var(--cobalt); font-size: 14px; }
.quiz-progress-copy small:last-child { color: var(--cobalt); font-weight: 750; }
.progress-track { height: 5px; overflow: hidden; background: #e5eaf4; }
.progress-track span {
  display: block;
  width: 2.5%;
  height: 100%;
  background: var(--cobalt);
  transition: width .22s ease;
}
.question-card {
  min-height: 610px;
  padding: 26px 32px 32px;
  background: #fff;
}
.talent-context {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--talent-soft, var(--blue-soft));
  border: 1px solid color-mix(in srgb, var(--talent-color, var(--cobalt)) 22%, #fff);
  border-radius: var(--radius);
}
.talent-code {
  display: grid;
  width: 40px;
  height: 40px;
  place-content: center;
  color: #fff;
  background: var(--talent-color, var(--cobalt));
  border-radius: 8px;
  font-weight: 800;
}
.talent-context strong { font-size: 16px; }
.talent-context p { margin: 3px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.dimension-progress {
  padding: 5px 10px;
  color: var(--talent-color, var(--cobalt));
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--talent-color, var(--cobalt)) 22%, #fff);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}
.question-index { margin: 26px 0 8px; color: var(--ink); font-size: 19px; font-weight: 800; }
.question-card h2 {
  min-height: 58px;
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.65;
}
.answer-list { display: grid; gap: 10px; margin: 0; padding: 0; border: 0; }
.answer-option {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  min-height: 58px;
  gap: 13px;
  padding: 10px 18px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d7dfeb;
  border-radius: 7px;
  transition: background .14s ease, border-color .14s ease, transform .14s ease;
}
.answer-option:hover { border-color: var(--cobalt); transform: translateX(2px); }
.answer-option:has(input:checked) {
  background: var(--blue-soft);
  border-color: var(--cobalt);
}
.answer-option input { position: absolute; opacity: 0; pointer-events: none; }
.radio-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #c4ccda;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #fff;
}
.answer-option:has(input:checked) .radio-mark { background: var(--cobalt); border-color: var(--cobalt); }
.answer-option span:last-child { font-size: 14px; }
.answer-hint { min-height: 24px; margin: 12px 0 0; color: #c43e32; font-size: 12px; }
.quiz-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.quiz-actions button {
  width: 100%;
  height: 64px;
  border: 0;
  border-radius: 0;
}
.quiz-actions .secondary-button { border-right: 1px solid var(--line); }
.quiz-actions .primary-button { background: #fff; color: var(--cobalt); }
.quiz-actions .primary-button:hover { background: var(--blue-soft); transform: none; }
.quiz-actions button:disabled { cursor: not-allowed; opacity: .42; transform: none; }

/* Report */
.result-view { background: #fff; }
.report-hero {
  position: relative;
  color: var(--ink);
  background: var(--ice);
  border-bottom: 1px solid var(--line);
}
.report-color-bar { display: grid; grid-template-columns: 2fr 1.3fr 1fr .8fr .6fr; height: 8px; }
.report-color-bar i:nth-child(1) { background: var(--cobalt); }
.report-color-bar i:nth-child(2) { background: var(--teal); }
.report-color-bar i:nth-child(3) { background: var(--coral); }
.report-color-bar i:nth-child(4) { background: var(--yellow); }
.report-color-bar i:nth-child(5) { background: #d55fb5; }
.report-hero-inner {
  width: min(calc(100% - 48px), var(--content));
  min-height: 570px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr);
  gap: 70px;
  align-items: center;
  padding: 68px 0;
}
.report-owner { margin: 0 0 6px; color: var(--muted); font-size: 14px; }
.report-hero h1 { max-width: 760px; font-size: 54px; line-height: 1.18; }
.profile-summary { max-width: 760px; margin: 22px 0; color: var(--ink-soft); font-size: 16px; line-height: 1.85; }
.top-talents { display: grid; gap: 9px; margin: 26px 0 18px; }
.top-talent-chip {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  min-height: 52px;
  gap: 10px;
  padding: 7px 12px 7px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--talent-color, var(--cobalt));
  border-radius: 6px;
  font-size: 13px;
}
.top-talent-chip b {
  display: grid;
  width: 34px;
  height: 34px;
  place-content: center;
  color: #fff;
  background: var(--talent-color, var(--cobalt));
  border-radius: 6px;
  font-size: 12px;
}
.top-talent-chip em { color: var(--muted); font-size: 11px; font-style: normal; }
.weak-summary { margin: 0; color: var(--muted); font-size: 12px; }
.report-snapshot {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lead-metric, .pattern-summary { padding: 24px; background: #fff; }
.lead-metric > span, .pattern-summary > span { color: var(--muted); font-size: 11px; font-weight: 750; }
.lead-metric strong { display: block; margin: 7px 0 1px; color: var(--cobalt); font-size: 52px; line-height: 1; }
.lead-metric strong small { margin-left: 4px; color: var(--muted); font-size: 14px; }
.lead-metric p { margin: 8px 0 0; font-weight: 750; }
.pattern-summary { background: var(--teal-soft); }
.pattern-summary strong { display: block; margin-top: 5px; color: #0b8177; font-size: 20px; }
.pattern-summary p { margin: 9px 0 0; color: var(--ink-soft); font-size: 12px; }
.report-nav {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 11px 18px;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.report-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
}
.report-nav a:hover { color: var(--cobalt); background: var(--blue-soft); }
.report-section {
  width: min(100%, var(--content));
  margin: auto;
  padding: 90px 24px;
}
.section-heading {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
  margin-bottom: 42px;
}
.section-heading > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  color: var(--cobalt);
  background: var(--blue-soft);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}
.section-heading p { margin: 0 0 2px; color: var(--muted); font-size: 11px; font-weight: 750; }
.section-heading h2 { margin: 0; font-size: 32px; line-height: 1.35; }
.section-heading.light > span { color: #fff; background: rgba(255,255,255,.14); }
.section-heading.light p { color: rgba(255,255,255,.64); }
.section-heading.light h2 { color: #fff; }
.section-intro {
  max-width: 880px;
  margin: -12px 0 42px 63px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}
.panorama-section { background: #fff; }
.panorama-layout {
  display: grid;
  grid-template-columns: minmax(330px, .8fr) minmax(420px, 1.2fr);
  gap: 62px;
  align-items: center;
}
.radar-wrap { width: min(100%, 500px); aspect-ratio: 1; }
.radar-wrap canvas { display: block; width: 100%; height: 100%; }
.score-legend { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 17px; color: var(--muted); font-size: 10px; }
.score-legend span { display: inline-flex; align-items: center; gap: 5px; }
.score-legend i { width: 8px; height: 8px; border-radius: 50%; }
.score-legend .strong { background: var(--cobalt); }
.score-legend .capable { background: var(--teal); }
.score-legend .developing { background: #b7bfce; }
.score-list { border-top: 1px solid var(--line); }
.score-row {
  display: grid;
  grid-template-columns: 132px 1fr 42px 70px;
  gap: 13px;
  align-items: center;
  min-height: 50px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.score-label { font-weight: 700; }
.score-label i { margin-left: 3px; font-style: normal; }
.score-bar { height: 8px; overflow: hidden; background: #e9edf5; border-radius: 4px; }
.score-bar span { display: block; height: 100%; border-radius: inherit; }
.score-number { font-size: 16px; font-weight: 800; text-align: right; }
.score-level { color: var(--muted); text-align: right; }

.type-interpretation-section {
  width: 100%;
  max-width: none;
  padding-top: 62px;
  padding-right: max(24px, calc((100vw - var(--content)) / 2));
  padding-bottom: 62px;
  padding-left: max(24px, calc((100vw - var(--content)) / 2));
  background: #fff;
}
.type-interpretation-section .section-heading { margin-bottom: 26px; }
.type-profile { margin-left: 63px; }
.type-talent-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}
.type-talent-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--talent-color);
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 800;
}
.type-talent-chip b { font-size: 16px; line-height: 1; }
.type-lead {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.65;
}
.type-direction {
  max-width: 920px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}
.type-insight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 26px;
  max-width: 920px;
}
.type-insight-card {
  min-width: 0;
  padding: 20px 22px;
  border-radius: 10px;
}
.type-insight-card.strength {
  background: var(--blue-soft);
  border: 1px solid #cfe3ff;
  border-left: 5px solid var(--cobalt);
}
.type-insight-card.challenge {
  background: var(--coral-soft);
  border: 1px solid #ffd8cd;
  border-left: 5px solid var(--coral);
}
.type-insight-card h3 { margin: 0 0 10px; font-size: 16px; }
.type-insight-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.85; }
.core-combination-tail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  margin: 52px 0 0 63px;
  padding-top: 28px;
  border-top: 4px solid var(--cobalt);
}
.combination-block { min-width: 0; }
.combination-block header p { margin: 0; color: var(--cobalt); font-size: 10px; font-weight: 800; }
.combination-block header h3 { margin: 5px 0 17px; font-size: 18px; }
.combination-lines { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.combination-lines li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.combination-lines li > span { color: var(--cobalt); font-size: 11px; font-weight: 800; line-height: 1.8; }
.combination-lines p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.combination-pair-label {
  display: inline-block;
  margin: 0 8px 4px 0;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}
.combination-pair-label.tone-1 { color: #2453c8; background: #e8f0ff; }
.combination-pair-label.tone-2 { color: #0a796e; background: #e3f7f3; }
.combination-pair-label.tone-3 { color: #a84658; background: #ffedf1; }
.similar-person-card {
  margin: 34px 0 0 63px;
  padding: 22px 24px;
  background: #f8faff;
  border: 1px solid #dce6fb;
  border-left: 5px solid var(--cobalt);
  border-radius: 10px;
}
.similar-person-card > p:first-child {
  margin: 0 0 4px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 800;
}
.similar-person-card h3 { margin: 0; font-size: 22px; }
.similar-person-card strong { display: block; margin-top: 5px; font-size: 13px; }
.similar-person-card p:not(:first-child) { margin: 12px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.8; }
.core-section { background: #fff; }
.core-summary-panel {
  margin-left: 63px;
  padding: 24px 26px;
  background: var(--yellow-soft);
  border: 1px solid #efdda2;
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
}
.core-narrative { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.9; }
.core-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0 63px;
}
.core-detail-card {
  min-width: 0;
  min-height: 210px;
  padding: 25px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.core-detail-card > span { font-size: 10px; font-weight: 800; }
.core-detail-card h3 { margin: 7px 0 13px; font-size: 18px; }
.core-detail-card ul { margin: 0; padding-left: 18px; }
.core-detail-card li, .core-detail-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.core-detail-card li + li { margin-top: 7px; }
.traits-card { background: #f4f7ff; border-top: 4px solid var(--cobalt); }
.traits-card > span { color: var(--cobalt); }
.applications-card { background: #effaf8; border-top: 4px solid var(--teal); }
.applications-card > span { color: #0a796e; }
.light-card { background: #f4faef; border-top: 4px solid #62a947; }
.light-card > span { color: #467f31; }
.shadow-card { background: var(--coral-soft); border-top: 4px solid var(--coral); }
.shadow-card > span { color: #b94a3c; }.growth-section { background: #fff; }
.growth-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-left: 63px;
}
.growth-item {
  --growth-accent: var(--cobalt);
  --growth-soft: var(--blue-soft);
  display: grid;
  grid-template-columns: minmax(140px, .55fr) minmax(0, 1.35fr) minmax(210px, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--growth-accent);
  border-radius: var(--radius);
}
.growth-item.tone-2 { --growth-accent: var(--teal); --growth-soft: var(--teal-soft); }
.growth-item.tone-3 { --growth-accent: var(--yellow); --growth-soft: var(--yellow-soft); }
.growth-title {
  display: grid;
  justify-content: stretch;
  gap: 6px;
}
.growth-title h3 { margin: 0; font-size: 15px; }
.growth-meta { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.growth-meta > strong { color: var(--growth-accent); font-size: 16px; }
.growth-dot { color: var(--muted); }
.growth-level {
  padding: 3px 8px;
  color: var(--growth-accent);
  background: var(--growth-soft);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}
.growth-summary { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }
.growth-tip {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  padding: 8px 10px;
  color: var(--ink-soft);
  background: var(--teal-soft);
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.55;
}
.growth-tip strong { flex: 0 0 auto; color: #0a796e; font-size: 12px; }
.career-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--content)) / 2));
  padding-left: max(24px, calc((100vw - var(--content)) / 2));
  background: #fff;
}
.career-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.career-card {
  --career-accent: var(--cobalt);
  min-width: 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--career-accent);
  border-radius: var(--radius);
}
.career-card.tone-1 { --career-accent: var(--cobalt); background: var(--blue-soft); }
.career-card.tone-2 { --career-accent: var(--teal); background: var(--teal-soft); }
.career-card.tone-3 { --career-accent: #c28c05; background: var(--yellow-soft); }
.career-card.tone-4 { --career-accent: var(--coral); background: var(--coral-soft); }
.career-card.tone-5 { --career-accent: #5b983f; background: #f1f8ed; }
.career-card.tone-6 { --career-accent: #bf4b91; background: #fff1f8; }
.career-card header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.career-card header h3 { margin: 0; font-size: 19px; line-height: 1.4; }
.career-card header small { flex: 0 0 auto; color: var(--career-accent); font-size: 11px; font-weight: 800; }
.career-reason { margin: 12px 0 15px; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.career-start {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin: 0;
  padding-top: 13px;
  color: var(--ink-soft);
  border-top: 1px solid rgba(23, 33, 59, .11);
  font-size: 12px;
  line-height: 1.75;
}
.career-start strong { color: var(--career-accent); white-space: nowrap; }
.caution-block { margin-top: 46px; padding-top: 32px; border-top: 1px solid var(--line); }
.caution-block h3 { margin: 0; color: var(--ink); font-size: 20px; }
.caution-block > p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
#caution-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.caution-item {
  padding: 18px;
  background: var(--coral-soft);
  border: 1px solid #ffd9d4;
  border-left: 3px solid var(--coral);
  border-radius: 6px;
}
.caution-item strong { display: block; margin-bottom: 6px; color: var(--ink); font-size: 14px; }
.caution-item p { margin: 0; color: var(--ink-soft); font-size: 11px; }
.caution-item small { display: block; margin-top: 12px; color: #a94437; font-size: 10px; }
.action-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--content)) / 2));
  padding-left: max(24px, calc((100vw - var(--content)) / 2));
  background: var(--yellow-soft);
}
.action-intro { margin-bottom: 24px; }
.timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.timeline-item {
  min-width: 0;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid #eadcae;
  border-top: 5px solid var(--stage-color, var(--yellow));
  border-radius: var(--radius);
}
.timeline-item h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 11px;
  font-size: 17px;
}
.stage-icon { font-size: 17px; }
.stage-range { color: var(--muted); font-size: 11px; font-weight: 650; }
.timeline-item ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.timeline-item li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 5px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}
.timeline-item li::before { content: "✓"; color: var(--teal); font-weight: 800; }
.action-summary {
  margin-top: 24px;
  padding: 20px 22px;
  background: #fff;
  border-left: 4px solid var(--cobalt);
  border-radius: 6px;
}
.action-summary strong { color: var(--cobalt); font-size: 12px; }
.action-summary p { margin: 6px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.8; }
.share-section { background: #fff; }
.share-layout {
  display: grid;
  grid-template-columns: minmax(400px, 560px) 1fr;
  gap: 64px;
  align-items: center;
  margin-left: 63px;
}
.share-preview {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  min-height: 860px;
  padding: 30px 34px;
  color: var(--ink);
  background: #fff;
  border: 8px solid #e5ebf3;
  box-shadow: var(--shadow);
}
.share-preview > p { margin: 0 0 12px; color: var(--cobalt); font-size: 10px; font-weight: 800; }
.share-preview > span { color: var(--muted); font-size: 12px; }
.share-preview h3 { margin: 4px 0 12px; color: var(--ink); font-size: 34px; line-height: 1.25; }
#share-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
#share-top span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 6px;
  padding: 8px 9px;
  color: var(--ink-soft);
  background: #f8faff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 10px;
}
#share-top span b { grid-column: 1 / -1; color: var(--muted); font-size: 8px; text-transform: uppercase; }
#share-top span strong { color: var(--ink); font-size: 13px; }
#share-top .top-rank-1 { color: #76570d; background: var(--yellow-soft); border-color: #ead28a; }
#share-top .top-rank-2 { color: #126f66; background: var(--teal-soft); border-color: #a8dcd5; }
#share-top .top-rank-3 { color: #526789; background: var(--blue-soft); border-color: #bfd0ef; }
.share-preview blockquote {
  margin: 12px 0 8px;
  padding-left: 14px;
  color: var(--ink-soft);
  border-left: 3px solid var(--teal);
  font-size: 13px;
  line-height: 1.6;
}
.share-data-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 0;
}
.share-radar-wrap { width: min(100%, 360px); margin: 0 auto; aspect-ratio: 1; }
.share-radar-wrap canvas { display: block; width: 100%; height: 100%; }
.share-score-list { display: grid; width: 100%; gap: 5px; }
.share-score-row {
  display: grid;
  grid-template-columns: 110px 1fr 28px;
  gap: 7px;
  align-items: center;
  min-height: 25px;
  padding: 3px 6px;
  color: var(--ink-soft);
  border-radius: 4px;
  font-size: 10px;
}
.share-score-row > span { white-space: nowrap; }
.share-score-row > i { height: 8px; overflow: hidden; background: #e7ecf3; border-radius: 999px; }
.share-score-row > i b { display: block; height: 100%; border-radius: inherit; }
.share-score-row > strong { color: var(--ink); text-align: right; }
.share-score-row.is-top-three { min-height: 25px; color: var(--ink); font-weight: 800; }
.share-score-row.is-top-three.top-rank-1 { background: var(--yellow-soft); }
.share-score-row.is-top-three.top-rank-2 { background: var(--teal-soft); }
.share-score-row.is-top-three.top-rank-3 { background: var(--blue-soft); }
.share-score-row.is-top-three > strong { color: var(--ink); font-size: 10px; }
.share-preview small { display: block; margin-top: 14px; color: var(--muted); font-size: 9px; }
.share-actions p { max-width: 380px; color: var(--muted); }
.share-actions button { width: 220px; margin: 8px 8px 0 0; }
.report-footer {
  padding: 32px 24px;
  color: var(--muted);
  background: var(--ice);
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 10px;
}
.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  max-width: calc(100% - 32px);
  padding: 10px 17px;
  color: #fff;
  background: var(--ink);
  border-radius: 5px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity .18s ease, transform .18s ease;
  font-size: 12px;
}
.toast.visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 980px) {
  .cover-hero { grid-template-columns: 1fr .72fr; gap: 34px; }
  .cover-content h1 { font-size: 52px; }
  .cover-facts { grid-template-columns: repeat(2, 1fr); }
  .cover-dimensions { grid-template-columns: repeat(2, 1fr); }
  .report-hero-inner { gap: 34px; }
  .panorama-layout { grid-template-columns: 1fr; }
  .radar-wrap { margin: auto; }
  .synergy-list { grid-template-columns: 1fr; }
  .synergy-card h3 { min-height: 0; }
  .share-layout { grid-template-columns: minmax(300px, 520px); justify-content: center; margin-left: 0; }
  .share-actions { text-align: center; }
  .share-actions p { margin-inline: auto; }
}
@media (max-width: 760px) {
  .site-header { height: 62px; padding: 0 17px; }
  .header-note { display: none; }
  .view { min-height: calc(100vh - 62px); }
  .cover-hero-band { padding: 42px 18px 38px; }
  .cover-hero { grid-template-columns: 1fr; }
  .cover-spectrum { display: none; }
  .cover-content h1 { font-size: 42px; }
  .cover-statement { font-size: 23px; }
  .cover-lead { font-size: 15px; }
  .cover-cta-row { align-items: flex-start; flex-direction: column; gap: 10px; }
  .cover-facts { margin-top: 28px; }
  .cover-facts div { padding: 12px; }
  .cover-section { width: calc(100% - 36px); padding: 64px 0; }
  .cover-section-heading h2 { font-size: 27px; }
  .cover-dimensions { grid-template-columns: 1fr 1fr; }
  .cover-dimensions { gap: 8px; }
  .cover-dimensions article { min-height: 132px; padding: 14px 12px; }
  .theory-band { grid-template-columns: 1fr; gap: 18px; padding: 44px 18px; }
  .theory-band h2 { font-size: 23px; }
  .sample-types { grid-template-columns: 1fr; }
  .sample-types article { min-height: 0; }
  .cover-final-cta { align-items: flex-start; flex-direction: column; padding: 24px; }
  .cover-final-cta .primary-button { width: 100%; }
  .quiz-view { padding: 0; background: #fff; }
  .quiz-shell { min-height: 100vh; border: 0; border-radius: 0; box-shadow: none; }
  .quiz-topbar { min-height: 84px; padding: 16px; gap: 10px; }
  .quiz-brand { gap: 8px; }
  .quiz-brand .brand-badge { display: none; }
  .quiz-brand > b { display: none; }
  .quiz-progress-copy { gap: 0 8px; }
  .quiz-progress-copy #answered-count { display: none; }
  .question-card { min-height: calc(100vh - 154px); padding: 20px 16px 26px; }
  .talent-context { grid-template-columns: 36px 1fr; padding: 14px; }
  .talent-code { width: 34px; height: 34px; }
  .dimension-progress { grid-column: 2; justify-self: start; }
  .question-index { margin-top: 24px; font-size: 17px; }
  .question-card h2 { min-height: 0; font-size: 18px; }
  .answer-option { min-height: 54px; padding-inline: 14px; }
  .quiz-actions { position: sticky; bottom: 0; }
  .quiz-actions button { height: 60px; }
  .report-hero-inner { min-height: 0; grid-template-columns: 1fr; padding: 52px 0; }
  .report-hero h1 { font-size: 40px; }
  .report-snapshot { grid-template-columns: 1fr 1fr; }
  .lead-metric, .pattern-summary { padding: 20px; }
  .lead-metric strong { font-size: 40px; }
  .pattern-summary strong { font-size: 17px; }
  .report-nav { justify-content: flex-start; overflow-x: auto; padding: 9px 12px; scrollbar-width: none; }
  .report-nav::-webkit-scrollbar { display: none; }
  .report-nav a { flex: 0 0 auto; }
  .report-section { width: 100%; padding: 68px 18px; }
  .section-heading { grid-template-columns: 40px 1fr; gap: 11px; margin-bottom: 34px; }
  .section-heading > span { width: 38px; height: 38px; }
  .section-heading h2 { font-size: 26px; }
  .section-intro, .type-profile, .core-summary-panel, .core-detail-grid, .core-combination-tail, .similar-person-card, .growth-list, .share-layout { margin-left: 0; }
  .score-row { grid-template-columns: 100px 1fr 34px; gap: 7px; }
  .score-level { display: none; }
  .type-insight-grid, .core-combination-tail, .core-detail-grid, .career-grid, #caution-list { grid-template-columns: 1fr; }
  .type-interpretation-section { padding-top: 52px; padding-bottom: 52px; }
  .type-interpretation-section .section-heading { margin-bottom: 24px; }
  .type-insight-grid { gap: 10px; }
  .core-combination-tail { gap: 36px; }
  .core-detail-card { min-height: 0; }
  .growth-item { grid-template-columns: 1fr; gap: 8px; padding: 15px; }
  .growth-title { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 14px; }
  .timeline { grid-template-columns: 1fr; }
  .career-card { padding: 22px; }
  .share-preview { min-height: 0; padding: 32px 26px; }
  .share-preview h3 { font-size: 30px; }
  .share-actions button { width: 100%; margin-right: 0; }
}
@media (max-width: 390px) {
  .cover-content h1 { font-size: 38px; }
  .cover-facts strong { font-size: 16px; }
  .cover-dimensions h3 { font-size: 13px; }
  .quiz-brand strong { font-size: 14px; }
  .quiz-brand small { font-size: 8px; }
  .quiz-progress-copy { font-size: 10px; }
  .question-card { padding-inline: 14px; }
  .talent-context p { font-size: 11px; }
  .answer-option { padding-inline: 12px; }
  .report-hero h1 { font-size: 36px; }
  .report-snapshot { grid-template-columns: 1fr; }
  .share-preview { aspect-ratio: auto; padding: 28px 20px; }
  .share-radar-wrap { width: min(100%, 280px); }
  .share-score-row { grid-template-columns: 92px 1fr 24px; gap: 5px; padding-inline: 4px; }
  #share-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media print {
  .site-header, .cover-view, .quiz-view, .share-actions, .report-nav { display: none !important; }
  .result-view { display: block !important; }
  .report-section { break-inside: avoid; padding: 36px 24px; }
}
