:root {
  color-scheme: dark;
  --ink: #f7f7f2;
  --muted: #a7afc3;
  --panel: rgba(20, 28, 51, 0.78);
  --line: rgba(255, 255, 255, 0.13);
  --blue: #6ea8ff;
  --acid: #d7ff65;
  --coral: #ff8066;
  --bg: #080c18;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(79, 111, 255, 0.24), transparent 36rem),
    radial-gradient(circle at 95% 80%, rgba(215, 255, 101, 0.1), transparent 32rem),
    var(--bg);
}

button { font: inherit; }

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
}

.intro { width: 100%; }

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd3e5;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--acid);
  background: rgba(255, 255, 255, 0.05);
}

.intro-copy {
  max-width: 880px;
  margin: 64px 0 42px;
}

.formal-intro { max-width: 760px; margin-top: 54px; }
.formal-intro h1 { max-width: 720px; font-size: clamp(2.4rem, 6vw, 4.8rem); }

.eyebrow {
  color: var(--acid);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.55rem, 7vw, 5.4rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.start-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.map-preview {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(110, 168, 255, 0.18), rgba(255, 128, 102, 0.09));
}

.orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one { width: 210px; height: 210px; }
.orbit-two { width: 330px; height: 330px; }

.map-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 112px; height: 112px;
  border-radius: 50%;
  text-align: center;
  font-weight: 800;
  line-height: 1.35;
  color: #101421;
  background: var(--acid);
  box-shadow: 0 0 50px rgba(215, 255, 101, 0.25);
}

.point {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 18px currentColor;
}

.point-a { top: 20%; left: 70%; color: var(--coral); background: currentColor; }
.point-b { top: 67%; left: 23%; color: var(--blue); background: currentColor; }
.point-c { top: 78%; left: 72%; color: var(--acid); background: currentColor; }

.start-content { padding: 42px; }
.start-content h2 { margin: 0 0 20px; font-size: 1.25rem; }
.start-content ul { margin: 0 0 30px; padding-left: 1.3rem; color: var(--muted); line-height: 2; }

.primary-button {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  color: #101421;
  background: var(--acid);
  font-size: 1rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(215, 255, 101, 0.16); }
.primary-button:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.disclaimer { margin: 20px 4px 0; color: #778096; font-size: 0.82rem; }

@media (max-width: 720px) {
  .shell { width: min(100% - 24px, 620px); padding: 20px 0; }
  .intro-copy { margin: 40px 0 28px; }
  h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .start-panel { grid-template-columns: 1fr; }
  .map-preview { min-height: 220px; }
  .orbit-one { width: 160px; height: 160px; }
  .orbit-two { width: 260px; height: 260px; }
  .map-core { width: 96px; height: 96px; }
  .start-content { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.secondary-button,
.text-button,
.brand-button {
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.secondary-button {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  color: #aeb8ce;
  font-weight: 700;
}

.text-button {
  padding: 10px 0;
  font-weight: 750;
}

.text-button:hover,
.secondary-button:hover { color: var(--ink); }
.text-button:disabled { opacity: 0.35; cursor: not-allowed; }

.quiz-view,
.report { width: 100%; }

.quiz-header,
.report-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.brand-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--acid);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 850;
}

.brand-button:focus-visible,
.text-button:focus-visible,
.secondary-button:focus-visible,
.answer-option:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.progress-copy {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.progress-copy strong { color: var(--ink); }

.progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--acid));
  transition: width 220ms ease;
}

.question-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(520px, 1.35fr);
  gap: 28px;
  margin-top: 42px;
}

.question-aside {
  position: relative;
  min-height: 570px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(110, 168, 255, 0.13), rgba(215, 255, 101, 0.04));
}

.question-aside > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.question-number {
  position: absolute;
  right: -18px;
  bottom: -40px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 10rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.question-card {
  min-height: 570px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(16, 22, 42, 0.78);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.question-kicker {
  margin: 0 0 18px;
  color: #7f8aa2;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.question-card h1 {
  max-width: 760px;
  margin: 0 0 34px;
  font-size: clamp(1.65rem, 4vw, 2.75rem);
  line-height: 1.32;
  letter-spacing: -0.035em;
}

.answer-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.answer-option {
  min-height: 138px;
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.answer-option:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 255, 101, 0.45);
  background: rgba(215, 255, 101, 0.05);
}

.answer-option.selected {
  color: #111725;
  border-color: var(--acid);
  background: var(--acid);
}

.answer-value {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 13px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0.8;
}

.answer-copy { display: grid; gap: 6px; }
.answer-copy strong { font-size: 0.93rem; line-height: 1.35; }
.answer-copy small { color: #7f8aa2; font-size: 0.72rem; line-height: 1.3; }
.answer-option.selected small { color: rgba(17, 23, 37, 0.62); }

.quiz-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  color: #687187;
  font-size: 0.8rem;
}

.sr-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.report { padding: 12px 0 48px; }
.report-topbar { margin-bottom: 74px; }

.report-hero {
  max-width: 980px;
  margin-bottom: 64px;
}

.report-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1.14;
}

.report-hero > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.85;
}

.result-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.result-badges span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbe2f1;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.86rem;
}

.report-section {
  margin-top: 24px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 21, 39, 0.72);
}

.section-index {
  margin: 0 0 12px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.section-heading h2,
.insight-callout h2,
.next-step h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

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

.insight-callout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  color: #111725;
  background: var(--acid);
}

.insight-callout .section-index { color: #4d5b18; }
.insight-callout > p { margin: 0; align-self: end; color: rgba(17, 23, 37, 0.7); line-height: 1.75; }

.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.chart-card {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 21, 39, 0.72);
}

.interest-code {
  color: var(--acid);
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.radar {
  display: block;
  width: min(100%, 390px);
  margin: 0 auto 20px;
  overflow: visible;
}

.radar-grid polygon,
.radar-grid line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.13);
  stroke-width: 1;
}

.radar-shape {
  fill: rgba(110, 168, 255, 0.22);
  stroke: var(--blue);
  stroke-width: 2.5;
}

.radar-shape.interest {
  fill: rgba(215, 255, 101, 0.15);
  stroke: var(--acid);
}

.radar-labels text {
  fill: #adb7ce;
  font-size: 10px;
  font-weight: 700;
}

.score-list { display: grid; gap: 12px; }
.score-list > div { display: grid; grid-template-columns: 70px 1fr 34px; align-items: center; gap: 10px; font-size: 0.82rem; }
.score-list strong { text-align: right; }
.score-track { height: 6px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, 0.08); }
.score-track i { display: block; height: 100%; border-radius: inherit; }

.interest-list { display: grid; gap: 10px; }
.interest-row {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.interest-row .rank { color: #687187; font-size: 0.75rem; }
.interest-row strong { font-size: 0.9rem; }
.interest-row p { margin: 4px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.45; }
.interest-row b { text-align: right; color: var(--acid); }

.talent-cards,
.direction-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.talent-card,
.direction-card {
  position: relative;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.talent-rank { color: #687187; font-size: 0.78rem; font-weight: 800; }
.talent-score {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 26px 0 18px;
  border: 2px solid var(--talent-color);
  border-radius: 50%;
  color: var(--talent-color);
  font-weight: 850;
}
.talent-card h3,
.direction-card h3 { margin: 0 0 12px; font-size: 1.3rem; }
.talent-card p,
.direction-card p { color: var(--muted); line-height: 1.7; }
.talent-card small { display: block; margin-top: 24px; color: #858fa6; line-height: 1.6; }

.direction-section { background: linear-gradient(160deg, rgba(110, 168, 255, 0.07), rgba(241, 141, 206, 0.04)); }
.direction-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 26px; color: #78839a; font-size: 0.78rem; }
.direction-head strong { color: var(--acid); }
.examples { min-height: 78px; }
.experiment { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.experiment span { color: var(--coral); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; }
.experiment p { margin-bottom: 0; color: #d9dfec; }

.next-step {
  background: linear-gradient(135deg, rgba(255, 128, 102, 0.14), rgba(110, 168, 255, 0.08));
}
.next-step ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 34px; margin: 30px 0 0; padding-left: 1.5rem; color: #c2cadb; line-height: 1.7; }

.report-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 4px 0;
}
.report-footer p { max-width: 760px; color: #727c92; font-size: 0.82rem; line-height: 1.7; }
.primary-button.compact { width: auto; min-width: 150px; padding: 0 24px; }

.conclusion-hero { max-width: 1000px; }

.matrix-section {
  background: linear-gradient(145deg, rgba(110, 168, 255, 0.08), rgba(131, 231, 192, 0.035));
}

.matrix-chart {
  display: block;
  width: min(100%, 850px);
  margin: 8px auto 30px;
  overflow: visible;
}

.q-bg { stroke: rgba(255, 255, 255, 0.07); stroke-width: 1; }
.q-bg.priority { fill: rgba(215, 255, 101, 0.08); }
.q-bg.drain { fill: rgba(255, 173, 112, 0.07); }
.q-bg.growth { fill: rgba(131, 231, 192, 0.07); }
.q-bg.deprioritize { fill: rgba(255, 255, 255, 0.022); }
.matrix-divider { stroke: rgba(255, 255, 255, 0.22); stroke-width: 1; stroke-dasharray: 7 7; }
.q-label { fill: #8d98ae; font-size: 13px; font-weight: 700; }
.axis-title { fill: #aeb8ce; font-size: 13px; font-weight: 750; letter-spacing: 0.04em; }
.matrix-point circle { stroke: #0d1424; stroke-width: 3; }
.matrix-point text { fill: #e8edf7; font-size: 13px; font-weight: 750; paint-order: stroke; stroke: #0d1424; stroke-width: 3px; }
.matrix-point.priority circle { fill: var(--acid); }
.matrix-point.drain circle { fill: #ffad70; }
.matrix-point.growth circle { fill: #83e7c0; }
.matrix-point.deprioritize circle { fill: #77839b; }

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

.quadrant-legend > div {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}

.quadrant-legend strong { font-size: 0.9rem; }
.quadrant-legend span { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }
.quadrant-legend .priority strong { color: var(--acid); }
.quadrant-legend .drain strong { color: #ffad70; }
.quadrant-legend .growth strong { color: #83e7c0; }
.quadrant-legend .deprioritize strong { color: #9aa5bb; }

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

.insight-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.insight-card > span { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; }
.insight-card.drain > span { color: #ffad70; }
.insight-card.growth > span { color: #83e7c0; }
.insight-card.aligned > span { color: var(--blue); }
.insight-card h3 { margin: 14px 0 10px; font-size: 1.5rem; }
.insight-card p { color: #c1c9d9; line-height: 1.75; }
.insight-card small { display: block; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); color: #8e99ae; line-height: 1.65; }

.evidence-table { display: grid; gap: 10px; }
.evidence-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(420px, 1.45fr);
  align-items: center;
  gap: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.02);
}

.evidence-row > div:first-child { display: grid; grid-template-columns: 12px 1fr; align-items: center; gap: 10px; }
.evidence-row > div:first-child small { grid-column: 2; color: #78849a; font-size: 0.75rem; }
.domain-dot { width: 9px; height: 9px; border-radius: 50%; box-shadow: 0 0 12px currentColor; }
.dual-score { display: grid; grid-template-columns: 74px 1fr 34px; align-items: center; gap: 8px 12px; }
.dual-score span { color: #8994a9; font-size: 0.76rem; }
.dual-score > div { height: 6px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, 0.08); }
.dual-score i { display: block; height: 100%; border-radius: inherit; }
.dual-score b { text-align: right; font-size: 0.82rem; }

.trait-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; }
.trait-cloud span { padding: 10px 15px; border-radius: 999px; color: #e9eef7; background: rgba(110, 168, 255, 0.11); border: 1px solid rgba(110, 168, 255, 0.2); font-size: 0.88rem; font-weight: 700; }
.career-note { margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: #8893a8; font-size: 0.86rem; line-height: 1.75; }

.share-section { background: linear-gradient(145deg, rgba(215, 255, 101, 0.055), rgba(110, 168, 255, 0.07)); }
.public-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: linear-gradient(145deg, #111b31, #0b1221);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
}

.public-card-head { display: flex; align-items: center; gap: 14px; }
.public-card-head > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: #111725; background: var(--acid); font-weight: 900; }
.public-card-head div { display: grid; gap: 5px; }
.public-card-head strong { font-size: 1rem; }
.public-card-head small { color: #77839a; }
.public-card h3 { margin: 34px 0; font-size: clamp(1.5rem, 4vw, 2.35rem); line-height: 1.45; }
.public-card dl { display: grid; gap: 0; margin: 0; }
.public-card dl > div { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, 0.09); }
.public-card dt { color: #8b96aa; font-size: 0.85rem; }
.public-card dd { margin: 0; color: #eef2f8; line-height: 1.6; }
.public-card > p { margin: 28px 0 0; color: #667288; font-size: 0.76rem; line-height: 1.65; }
.share-actions { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.secondary-action { min-height: 56px; padding: 0 24px; border: 1px solid var(--line); border-radius: 18px; color: var(--ink); background: rgba(255, 255, 255, 0.04); font-weight: 800; cursor: pointer; }
.secondary-action:hover { border-color: rgba(215, 255, 101, 0.42); }
.share-status { min-height: 1.4em; margin: 14px 0 0; text-align: center; color: #8c98ad; font-size: 0.82rem; }
.share-status.success { color: #b9dd65; }
.share-status.error { color: #ff9b87; }

@media (max-width: 900px) {
  .question-layout { grid-template-columns: 1fr; }
  .question-aside { min-height: auto; padding: 22px 24px; }
  .question-aside > p:not(.eyebrow) { margin-bottom: 0; }
  .question-number { display: none; }
  .question-card { min-height: 0; }
  .answer-list { grid-template-columns: 1fr; }
  .answer-option { min-height: 68px; display: flex; align-items: center; gap: 14px; padding: 12px 16px; text-align: left; }
  .answer-value { flex: 0 0 auto; margin: 0; }
  .answer-copy { grid-template-columns: 1fr auto; align-items: center; width: 100%; }
  .chart-grid,
  .talent-cards,
  .direction-list { grid-template-columns: 1fr; }
  .quadrant-legend { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .evidence-row { grid-template-columns: 1fr; }
  .examples { min-height: 0; }
}

@media (max-width: 720px) {
  .quiz-view { padding-top: 4px; }
  .question-layout { margin-top: 24px; gap: 12px; }
  .question-card { padding: 26px 20px; border-radius: 22px; }
  .question-card h1 { font-size: 1.55rem; margin-bottom: 25px; }
  .question-aside { border-radius: 20px; }
  .answer-copy small { display: none; }
  .quiz-actions > span { display: none; }
  .report-topbar { margin-bottom: 46px; }
  .report-hero { margin-bottom: 40px; }
  .report-hero h1 { font-size: clamp(2.65rem, 14vw, 4.6rem); }
  .insight-callout { grid-template-columns: 1fr; gap: 22px; }
  .section-heading { display: grid; gap: 12px; }
  .next-step ol { grid-template-columns: 1fr; }
  .report-footer { display: grid; }
  .primary-button.compact { width: 100%; }
  .formal-intro h1 { font-size: clamp(2.25rem, 12vw, 3.6rem); }
  .matrix-chart { margin-left: -8px; width: calc(100% + 16px); }
  .q-label { font-size: 11px; }
  .matrix-point text { font-size: 11px; }
  .quadrant-legend,
  .insight-grid { grid-template-columns: 1fr; }
  .quadrant-legend > div { min-height: 0; }
  .dual-score { grid-template-columns: 68px 1fr 30px; }
  .public-card dl > div { grid-template-columns: 1fr; gap: 6px; }
  .share-actions { display: grid; }
  .secondary-action { width: 100%; }
}

@media print {
  :root { color-scheme: light; }
  body { color: #111; background: #fff; }
  .shell { width: 100%; padding: 0; }
  .report-topbar .text-button,
  .report-footer .primary-button { display: none; }
  .report-section,
  .chart-card,
  .talent-card,
  .direction-card { break-inside: avoid; color: #111; background: #fff; border-color: #ddd; box-shadow: none; }
  .report-hero > p:not(.eyebrow),
  .section-heading > p,
  .talent-card p,
  .direction-card p,
  .interest-row p,
  .report-footer p { color: #444; }
}
