.stage-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 18px;
}

.stage-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
}

.stage-chip i {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(148,163,184,.45);
}

.stage-chip.active {
  color: var(--blue-soft);
  border-color: rgba(22,119,255,.35);
  background: rgba(22,119,255,.07);
}

.stage-chip.active i,
.stage-chip.complete i {
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.stage-chip.complete { color: var(--ink); }

.review-tools {
  margin-top: 18px;
  border: 1px dashed rgba(139,92,246,.36);
  border-radius: 15px;
  background: rgba(139,92,246,.045);
  overflow: hidden;
}

.review-tools summary {
  cursor: pointer;
  padding: 13px 15px;
  color: var(--purple-soft);
  font-size: .8rem;
  font-weight: 800;
}

.review-tools-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  padding: 0 15px 15px;
}

.review-preset {
  min-height: 70px;
  padding: 12px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--control-bg);
  cursor: pointer;
}

.review-preset strong,
.review-preset span { display: block; }
.review-preset strong { font-size: .77rem; }
.review-preset span { margin-top: 5px; color: var(--muted); font-size: .67rem; line-height: 1.45; }

.answer-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(22,119,255,.18);
  border-radius: 13px;
  color: var(--callout-copy);
  background: rgba(22,119,255,.055);
  font-size: .75rem;
  line-height: 1.55;
}

.answer-note strong { color: var(--ink); }

.public-context-toggle {
  align-items: flex-start;
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(22,119,255,.18);
  border-radius: 13px;
  background: rgba(22,119,255,.045);
}

.public-context-toggle strong,
.public-context-toggle small { display: block; }
.public-context-toggle strong { color: var(--ink); font-size: .76rem; }
.public-context-toggle small { margin-top: 4px; color: var(--muted); font-size: .68rem; line-height: 1.5; }

.place-search-state,
.place-match {
  margin-top: 9px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: .7rem;
  line-height: 1.5;
}

.place-suggestions {
  margin-top: 9px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: 0 16px 36px rgba(29,41,57,.1);
}

.place-suggestion {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 10px;
  text-align: left;
  background: transparent;
  cursor: pointer;
}
.place-suggestion:hover,
.place-suggestion:focus-visible { background: rgba(22,119,255,.08); outline: none; }
.place-suggestion strong,
.place-suggestion span { display: block; }
.place-suggestion strong { font-size: .75rem; }
.place-suggestion span { margin-top: 3px; color: var(--muted); font-size: .66rem; line-height: 1.4; }
.google-attribution { padding: 7px 10px 4px; color: var(--muted); font-size: .62rem; font-weight: 700; text-align: right; }
.selected-place { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-color: rgba(7,148,85,.25); background: rgba(7,148,85,.06); }
.selected-place strong,
.selected-place span { display: block; }
.selected-place strong { color: var(--green); font-size: .72rem; }
.selected-place span { margin-top: 3px; font-size: .66rem; }

.choice-grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.choice.compact { min-height: 58px; padding: 12px 14px; }

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

.number-card {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface-soft);
}

.number-card label {
  display: block;
  min-height: 38px;
  color: var(--ink);
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.45;
}

.number-card small {
  display: block;
  min-height: 40px;
  margin-top: 5px;
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.45;
}

.number-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
}

.number-input-wrap input { min-width: 0; }
.unit { color: var(--muted); font-size: .74rem; font-weight: 700; white-space: nowrap; }

.live-calculation {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(139,92,246,.26);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(22,119,255,.065), rgba(139,92,246,.07));
}

.live-calculation span,
.live-calculation strong { display: block; }
.live-calculation span { color: var(--muted); font-size: .72rem; }
.live-calculation strong { margin-top: 5px; font-size: 1.05rem; }
.live-calculation p { margin: 6px 0 0; color: var(--copy); font-size: .72rem; line-height: 1.55; }

.compact-note { margin-bottom: 14px; }

.response-key {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 6px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .6rem;
  font-weight: 700;
  text-align: center;
}

.likert-options .likert-button { font-size: .64rem; line-height: 1.25; }

.scenario-banner {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 17px;
  padding: 14px;
  border: 1px solid rgba(220,104,3,.2);
  border-radius: 14px;
  background: rgba(220,104,3,.055);
}

.scenario-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(22,119,255,.15), rgba(139,92,246,.18));
  color: var(--purple-soft);
  font-weight: 900;
}

.scenario-banner strong { display: block; font-size: .83rem; }
.scenario-banner span { display: block; margin-top: 4px; color: var(--muted); font-size: .72rem; line-height: 1.5; }

.selection-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 10px;
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: .67rem;
  font-weight: 700;
}

.selection-count span {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--border);
}

.ui-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.theme-toggle .ui-icon { width: 20px; height: 20px; }
.choice.selected::after { display: none; }

.choice-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.choice-check .ui-icon { width: 14px; height: 14px; stroke-width: 2.5; }
.answer-note > span { display: grid; place-items: center; flex: 0 0 22px; }
.fact-list b .ui-icon,
.action-list b .ui-icon { width: 14px; height: 14px; }
.btn .ui-icon { width: 16px; height: 16px; }
.btn { text-decoration: none; }
.report-cta .btn,
.report-actions .btn,
.share-actions .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }

.outcome-kicker {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 99px;
  color: var(--blue-soft);
  background: rgba(22,119,255,.08);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.result-hero .outcome-kicker { margin-bottom: 12px; }

.result-hero h3 {
  max-width: 800px;
  margin-top: 0;
  font-size: clamp(1.65rem, 4vw, 3rem);
  line-height: 1.08;
}

.at-a-glance {
  margin-top: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(22,119,255,.22);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(22,119,255,.055), rgba(139,92,246,.07));
}

.at-a-glance-head,
.full-analysis-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.at-a-glance-head h3,
.full-analysis-head h3 { margin: 8px 0 0; font-size: 1.35rem; }
.reading-time { color: var(--muted); font-size: .68rem; font-weight: 800; white-space: nowrap; }
.result-summary-grid.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.result-summary-grid.three-up > div { min-width: 0; }
.glance-action { margin-top: 14px; padding: 15px 16px; border: 1px solid var(--border); border-radius: 13px; background: var(--surface-soft); }
.glance-action span, .glance-action strong { display: block; }
.glance-action span { color: var(--muted); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.glance-action strong { margin-top: 6px; font-size: .84rem; line-height: 1.5; }
.glance-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.full-analysis-head { margin: 6px 0 14px; }
.report-pages.is-collapsed { display: none; }
.new-assessment-note { align-self: center; color: var(--muted); font-size: .66rem; }

.report-building {
  min-height: min(680px, calc(100vh - 150px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.report-building h2 { max-width: 720px; margin-bottom: 10px; }
.report-building > p { max-width: 610px; margin: 18px auto 0; color: var(--muted); font-size: .76rem; line-height: 1.6; }
.analysis-orbit { position: relative; width: 118px; height: 118px; margin-bottom: 28px; display: grid; place-items: center; }
.analysis-orbit > span { position: absolute; inset: 0; border: 1px solid rgba(59,130,246,.35); border-radius: 50%; animation: orbit-pulse 1.8s ease-in-out infinite; }
.analysis-orbit > span:nth-child(2) { inset: 13px; border-color: rgba(139,92,246,.42); animation-delay: .28s; }
.analysis-orbit > span:nth-child(3) { inset: 27px; border-color: rgba(34,211,238,.38); animation-delay: .56s; }
.analysis-core { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: white; background: linear-gradient(135deg, var(--blue), var(--purple)); box-shadow: 0 14px 45px rgba(59,130,246,.32); animation: core-float 1.8s ease-in-out infinite; }
.analysis-core img { display: block; width: 32px; height: 32px; object-fit: contain; }
.analysis-steps { width: min(560px, 100%); display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 9px; margin-top: 22px; }
.analysis-steps div { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 10px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface-soft); color: var(--copy); font-size: .7rem; font-weight: 700; opacity: .55; animation: step-active 1.9s ease-in-out infinite; }
.analysis-steps div:nth-child(2) { animation-delay: .45s; }
.analysis-steps div:nth-child(3) { animation-delay: .9s; }
.analysis-steps i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px rgba(59,130,246,.65); }

@keyframes orbit-pulse { 0%,100% { transform: scale(.92); opacity: .35; } 50% { transform: scale(1.03); opacity: 1; } }
@keyframes core-float { 0%,100% { transform: translateY(2px) rotate(-2deg); } 50% { transform: translateY(-3px) rotate(2deg); } }
@keyframes step-active { 0%,100% { opacity: .48; transform: translateY(0); } 45% { opacity: 1; transform: translateY(-2px); } }

.headline-evidence {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 9px;
  margin-top: 16px;
}

.headline-evidence div {
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px;
  background: rgba(255,255,255,.06);
}

html:not([data-theme="dark"]) .headline-evidence div {
  border-color: rgba(22,119,255,.12);
  background: rgba(255,255,255,.62);
}

.headline-evidence span { display: block; font-size: .7rem; line-height: 1.45; }

.report-seam {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.report-seam::before,
.report-seam::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--border);
}

.report-page h4 { margin: 15px 0 7px; font-size: .83rem; }

.fact-list,
.action-list {
  display: grid;
  gap: 9px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.fact-list li,
.action-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--copy);
  font-size: .77rem;
  line-height: 1.55;
}

.fact-list b,
.action-list b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue-soft);
  background: rgba(22,119,255,.08);
  font-size: .66rem;
}

.briefing-card {
  margin-top: 15px;
  padding: 16px;
  border-left: 3px solid var(--purple);
  border-radius: 4px 13px 13px 4px;
  background: rgba(139,92,246,.07);
}

.briefing-card span { color: var(--purple-soft); font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.briefing-card strong { display: block; margin-top: 6px; font-size: .86rem; line-height: 1.45; }

.route-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  align-items: center;
  margin-top: 15px;
  padding: 17px;
  border: 1px solid rgba(22,119,255,.25);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(22,119,255,.07), rgba(139,92,246,.065));
}

.route-card strong,
.route-card span { display: block; }
.route-card span { margin-top: 5px; color: var(--muted); font-size: .72rem; line-height: 1.5; }
.route-plan { color: var(--purple-soft); font-size: .78rem; font-weight: 900; white-space: nowrap; }

.route-price {
  max-width: 390px;
  text-align: right;
}

.route-price small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.5;
}

.direct-platform-support { margin-top: 18px; }

.labour-reveal {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(139,92,246,.32);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(22,119,255,.08), rgba(139,92,246,.11));
}

.labour-reveal span,
.labour-reveal strong { display: block; }
.labour-reveal span { color: var(--purple-soft); font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.labour-reveal strong { margin-top: 7px; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(2rem, 6vw, 3.7rem); line-height: 1; }
.labour-reveal p { margin: 10px 0 0; color: var(--copy); font-size: .76rem; line-height: 1.6; }
.labour-reveal.quiet strong { font-size: 1.25rem; font-family: inherit; }

.comparison-punchline {
  margin-top: 8px;
  color: var(--purple-soft);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.5;
}

.comparison-method {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .64rem;
  line-height: 1.5;
}

.gift-icon .ui-icon { width: 23px; height: 23px; }
.gift-card .gift-name { color: var(--ink); font-size: .8rem; font-weight: 800; }
.gift-ready { color: var(--purple-soft); font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

.report-cta,
.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

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

.share-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15,23,42,.58);
  backdrop-filter: blur(12px);
}

.share-panel {
  width: min(760px, 100%);
  max-height: min(850px, calc(100vh - 36px));
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--border-bright);
  border-radius: 22px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.share-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.share-panel-head h3 { margin: 7px 0 0; font-size: 1.35rem; }
.icon-button { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--border); border-radius: 12px; background: var(--surface-soft); cursor: pointer; }
.share-formats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 8px; margin-top: 18px; }
.share-format { min-height: 46px; padding: 9px; border: 1px solid var(--border); border-radius: 11px; color: var(--muted); background: var(--control-bg); cursor: pointer; font-size: .7rem; font-weight: 800; }
.share-format.selected { color: var(--blue-soft); border-color: rgba(139,92,246,.62); background: linear-gradient(145deg, rgba(59,130,246,.12), rgba(139,92,246,.14)); }
.share-preview { margin-top: 12px; padding: 16px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface-soft); }
.share-preview pre { margin: 0; white-space: pre-wrap; color: var(--copy); font: 500 .74rem/1.65 "Plus Jakarta Sans", Inter, sans-serif; }
.share-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.share-actions .btn { min-height: 44px; }
.share-status { min-height: 22px; margin-top: 10px; color: var(--green); font-size: .72rem; font-weight: 700; }
.reviewer-reset { margin-top: 6px; }

.evidence-tag {
  display: inline-flex;
  align-items: center;
  margin: 4px 4px 0 0;
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: .64rem;
  font-weight: 700;
}

.qualification-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: .67rem;
  line-height: 1.5;
}

.report-preview { margin-top: 18px; }
.report-pages.locked { max-height: 640px; overflow: hidden; }
.report-pages.locked::after { background: linear-gradient(to bottom, transparent 2%, rgba(246,248,252,.74) 33%, rgba(246,248,252,.99) 74%); }
html[data-theme="dark"] .report-pages.locked::after { background: linear-gradient(to bottom, transparent 2%, rgba(2,6,23,.76) 33%, rgba(2,6,23,.99) 74%); }

.gate { top: 165px; }
.demo-note { color: var(--purple-soft); }
.revealed-banner { color: var(--green); }

.work-email-hint { margin-top: 8px; color: var(--muted); font-size: .66rem; }

/* Editorial report, v10 */
.editorial-report {
  padding: 0;
  overflow: visible;
  background: var(--surface-strong);
}

.frame.report-frame { overflow: visible; }
.frame.report-frame::after { display: none; }

.report-masthead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 34px clamp(28px, 5vw, 72px) 30px;
  border-bottom: 1px solid var(--border);
}

.report-masthead h1 {
  margin: 8px 0 7px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
}

.report-masthead p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

.report-scope {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px 14px;
  max-width: 430px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.report-scope span + span {
  position: relative;
  padding-left: 15px;
}

.report-scope span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted-2);
  transform: translateY(-50%);
}

.report-profile-page {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 102px) clamp(30px, 8vw, 112px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 84% 22%, rgba(139,92,246,.16), transparent 26rem),
    radial-gradient(circle at 8% 82%, rgba(22,119,255,.15), transparent 28rem),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(242,245,255,.92));
  scroll-margin-top: 92px;
}

html[data-theme="dark"] .report-profile-page {
  background:
    radial-gradient(circle at 84% 22%, rgba(139,92,246,.22), transparent 26rem),
    radial-gradient(circle at 8% 82%, rgba(59,130,246,.19), transparent 28rem),
    linear-gradient(145deg, rgba(15,23,42,.98), rgba(21,28,52,.96));
}

.profile-page-number {
  position: absolute;
  top: 34px;
  right: clamp(28px, 5vw, 72px);
  color: var(--muted-2);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.profile-copy {
  position: relative;
  z-index: 1;
  width: min(790px, 100%);
}

.profile-kicker,
.chapter-heading > span,
.cultural-comparison > span,
.editorial-aside > span,
.working-aid > span,
.route-recommendation > span,
.section-intro > span,
.dimension-explainer > span,
.public-venue-context > span,
.enterprise-terms > span,
.profile-diagnosis > span {
  color: var(--purple-soft);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.profile-copy h2 {
  max-width: 830px;
  margin: 14px 0 12px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}

.profile-strapline {
  max-width: 690px;
  margin: 0 0 34px;
  color: var(--blue-soft);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
}

.profile-copy > p:not(.profile-strapline) {
  max-width: 735px;
  margin: 0 0 15px;
  color: var(--copy);
  font-size: .96rem;
  line-height: 1.82;
}

.profile-copy .profile-intro {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
}

.profile-diagnosis {
  max-width: 730px;
  margin-top: 30px;
  padding: 5px 0 5px 20px;
  border-left: 3px solid var(--blue);
}

.profile-diagnosis span,
.profile-diagnosis strong { display: block; }
.profile-diagnosis strong { margin-top: 6px; font-size: 1rem; line-height: 1.5; }

.public-venue-context {
  max-width: 730px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(96,165,250,.26);
  border-radius: 16px;
  background: rgba(59,130,246,.08);
}
.public-venue-context h4 { margin: 8px 0 3px; font-size: 1rem; }
.public-venue-context p { margin: 0 0 8px !important; color: var(--ink) !important; font-size: .83rem !important; }
.public-venue-context small { display: block; color: var(--muted); font-size: .69rem; line-height: 1.55; }

.report-chapter-nav {
  position: sticky;
  top: 10px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 4px;
  margin: 18px clamp(16px, 3vw, 34px);
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-strong);
  background: color-mix(in srgb, var(--surface-strong) 94%, transparent);
  box-shadow: 0 16px 45px rgba(29,41,57,.11);
  backdrop-filter: blur(18px);
}

.report-chapter-nav button {
  min-height: 48px;
  padding: 8px 10px;
  border: 0;
  border-radius: 11px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: .69rem;
  font-weight: 800;
  text-align: left;
  transition: color .18s, background .18s, transform .18s;
}

.report-chapter-nav button:hover {
  color: var(--ink);
  background: var(--surface-soft);
  transform: translateY(-1px);
}

.report-chapter-nav button span {
  display: block;
  margin-bottom: 2px;
  color: var(--purple-soft);
  font-size: .57rem;
  letter-spacing: .08em;
}

.editorial-preview { margin-top: 0; }
.report-document {
  position: relative;
  display: block;
}
.editorial-preview .report-document.locked {
  max-height: 760px;
  overflow: hidden;
  filter: blur(9px);
  opacity: .48;
  pointer-events: none;
  user-select: none;
}

.editorial-preview .report-document.locked::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0, rgba(246,248,252,.8) 58%, rgba(246,248,252,1) 100%);
}

html[data-theme="dark"] .editorial-preview .report-document.locked::after {
  background: linear-gradient(to bottom, transparent 0, rgba(2,6,23,.82) 58%, rgba(2,6,23,1) 100%);
}

.editorial-gate { top: 116px; }

.report-chapter {
  min-height: 690px;
  padding: clamp(58px, 8vw, 96px) clamp(28px, 8vw, 112px);
  border-top: 1px solid var(--border);
  background: var(--surface-strong);
  scroll-margin-top: 94px;
}

.report-chapter:nth-child(even) {
  background: linear-gradient(145deg, var(--surface-strong), rgba(22,119,255,.035));
}

.chapter-heading,
.chapter-copy {
  width: min(790px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.chapter-heading {
  padding-bottom: 31px;
  border-bottom: 1px solid var(--border);
}

.chapter-heading h3 {
  margin: 12px 0 12px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.35rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.025em;
}

.chapter-heading p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
}

.chapter-copy { padding-top: 34px; }
.chapter-copy > p {
  margin: 0 0 22px;
  color: var(--copy);
  font-size: 1rem;
  line-height: 1.86;
}

.chapter-copy > p strong { color: var(--ink); }
.chapter-copy > .chapter-lede {
  color: var(--ink);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 1.82rem);
  line-height: 1.48;
}

.chapter-copy h4 {
  margin: 38px 0 14px;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.priority-impact {
  margin: 30px 0 36px;
  padding: 26px 28px;
  border-left: 3px solid var(--blue);
  background: rgba(22,119,255,.055);
}
.priority-impact p { margin: 0; color: var(--copy); font-size: .98rem; line-height: 1.82; }
.priority-impact p + p { margin-top: 17px; }
.priority-impact strong { color: var(--ink); }

.operating-dimensions {
  margin: 46px 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface-soft);
}
.section-intro h4 { margin: 9px 0 8px; color: var(--ink); font-size: 1.12rem; letter-spacing: 0; text-transform: none; }
.section-intro p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.65; }
.dimension-explorer { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(220px, .75fr); gap: 28px; margin-top: 27px; }
.dimension-list { display: grid; gap: 10px; }
.dimension-row {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 9px 16px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background .18s, border-color .18s, transform .18s;
}
.dimension-row:hover { transform: translateY(-1px); background: var(--surface-strong); }
.dimension-row.selected { border-color: rgba(22,119,255,.26); background: var(--surface-strong); box-shadow: 0 10px 25px rgba(15,23,42,.06); }
.dimension-reading strong,
.dimension-reading small { display: block; }
.dimension-reading strong { font-size: .78rem; line-height: 1.25; }
.dimension-reading small { margin-top: 3px; color: var(--muted); font-size: .66rem; }
.dimension-track { position: relative; align-self: center; height: 7px; border-radius: 999px; background: linear-gradient(90deg, #f59e0b 0%, #d8dee9 50%, #1677ff 100%); }
.dimension-track i { position: absolute; top: 50%; width: 14px; height: 14px; border: 3px solid var(--surface-strong); border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 1px rgba(15,23,42,.14); transform: translate(-50%, -50%); }
.dimension-ends { grid-column: 2; display: flex; justify-content: space-between; color: var(--muted); }
.dimension-ends small { font-size: .61rem; }
.dimension-explainer {
  align-self: stretch;
  padding: 23px;
  border-radius: 16px;
  color: #e9f1ff;
  background: linear-gradient(145deg, #15223d, #28345a);
}
.dimension-explainer h4 { margin: 8px 0 17px; color: white; font-family: "DM Serif Display", Georgia, serif; font-size: 1.65rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.dimension-explainer p { margin: 0; color: #cbd7ec; font-size: .79rem; line-height: 1.65; }
.dimension-explainer p + p { margin-top: 14px; color: white; }

.operating-insights { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; margin: 42px 0 46px; }
.operating-insights > div { padding: 24px; border: 1px solid var(--border); border-radius: 17px; background: var(--surface-soft); }
.operating-insights h4 { margin: 0 0 12px; color: var(--ink); font-size: .91rem; letter-spacing: 0; text-transform: none; }
.operating-insights ul { margin: 0; padding: 0; list-style: none; }
.operating-insights li { display: grid; grid-template-columns: 25px 1fr; gap: 10px; padding: 14px 0; border-top: 1px solid var(--border); }
.operating-insights li > span { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid rgba(16,185,129,.42); border-radius: 50%; color: #10b981; }
.operating-insights > div:last-child li > span { border-color: rgba(245,158,11,.46); color: #d68a00; }
.operating-insights .ui-icon { width: 13px; height: 13px; }
.operating-insights strong { display: block; color: var(--ink); font-size: .8rem; line-height: 1.4; }
.operating-insights p { margin: 5px 0 0; color: var(--copy); font-size: .72rem; line-height: 1.58; }

.report-evidence-list,
.intervention-sequence {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.report-evidence-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-top: 1px solid var(--border);
}

.report-evidence-list li:last-child { border-bottom: 1px solid var(--border); }
.evidence-number { color: var(--purple-soft); font-size: .64rem; font-weight: 900; letter-spacing: .08em; }
.report-evidence-list p { margin: 0; color: var(--ink); font-size: .94rem; line-height: 1.65; }

.supporting-patterns { margin: 34px 0; }
.supporting-patterns > h4 { margin-bottom: 14px; }
.supporting-patterns > p { margin: 15px 0 0; color: var(--muted); font-size: .77rem; }
.supporting-pattern-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.supporting-pattern-list article { padding: 18px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface-soft); }
.supporting-pattern-list strong { display: block; color: var(--ink); font-size: .82rem; line-height: 1.4; }
.supporting-pattern-list p { margin: 7px 0 0; color: var(--copy); font-size: .75rem; line-height: 1.58; }

.editorial-aside,
.cultural-comparison,
.working-aid,
.cost-reading {
  margin: 32px 0;
  padding: 25px 28px;
  border-left: 3px solid var(--purple);
  background: rgba(139,92,246,.065);
}

.editorial-aside p,
.cultural-comparison p,
.working-aid p,
.cost-reading p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: .94rem;
  line-height: 1.72;
}

.cultural-comparison {
  border-left-color: var(--blue);
  background: rgba(22,119,255,.06);
}

.cultural-comparison p {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.35;
}

.cultural-comparison small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.55;
}

.cost-reading {
  margin: 32px 0;
  padding: 25px 28px;
  border-left: 3px solid var(--blue);
  background: rgba(22,119,255,.06);
}

.cost-reading > span {
  color: var(--blue-soft);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.cost-reading p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: .96rem;
  line-height: 1.75;
}

.leadership-reading {
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.report-data-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin: 30px 0 34px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.report-data-strip.single-value { grid-template-columns: 1fr; }
.report-data-strip div { padding: 0 22px; }
.report-data-strip div:first-child { padding-left: 0; }
.report-data-strip div + div { border-left: 1px solid var(--border); }
.report-data-strip dt { color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.report-data-strip dd { margin: 8px 0 0; color: var(--ink); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1; }
.labour-strip dd { font-size: clamp(1.35rem, 2.7vw, 2rem); }
.quiet-conclusion { padding-top: 22px; border-top: 1px solid var(--border); color: var(--muted) !important; font-size: .82rem !important; }

.intervention-sequence { counter-reset: report-step; }
.intervention-sequence li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.intervention-sequence li:last-child { border-bottom: 1px solid var(--border); }
.intervention-sequence > li > span { color: var(--blue-soft); font-family: "DM Serif Display", Georgia, serif; font-size: 1.45rem; }
.intervention-sequence strong { display: block; font-size: .91rem; }
.intervention-sequence p { margin: 7px 0 0; color: var(--copy); font-size: .91rem; line-height: 1.68; }
.working-aid h4 { margin: 9px 0 0; color: var(--ink); font-size: 1.08rem; letter-spacing: 0; text-transform: none; }
.working-aid .working-aid-status { color: var(--muted); font-size: .78rem; }
.working-aid-link { margin-top: 15px; }

.feature-spotlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 34px;
  padding: 0;
  list-style: none;
}

.feature-spotlights li {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface-soft);
}

.feature-spotlights strong,
.feature-spotlights span { display: block; }
.feature-spotlights strong { color: var(--ink); font-size: .86rem; }
.feature-spotlights span { margin-top: 7px; color: var(--copy); font-size: .78rem; line-height: 1.65; }

.route-recommendation {
  margin: 34px 0 30px;
  padding: clamp(27px, 4vw, 38px);
  border: 1px solid rgba(22,119,255,.24);
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(22,119,255,.08), rgba(139,92,246,.09));
}

.route-recommendation h4 {
  margin: 10px 0;
  color: var(--ink);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -.015em;
  text-transform: none;
}

.route-recommendation p { margin: 0; color: var(--copy); font-size: .94rem; line-height: 1.7; }
.route-pricing { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.route-pricing strong,
.route-pricing small { display: block; }
.route-pricing strong { color: var(--ink); font-size: .91rem; }
.route-pricing small { margin-top: 7px; color: var(--muted); font-size: .72rem; line-height: 1.6; }
.route-judgement { color: var(--muted) !important; font-size: .88rem !important; }

.enterprise-terms {
  margin: 0 0 30px;
  padding: 23px 25px;
  border-left: 3px solid var(--purple);
  background: rgba(139,92,246,.07);
}
.enterprise-terms p { margin: 8px 0 0; color: var(--ink); font-size: .88rem; line-height: 1.7; }

.report-method {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.report-method summary {
  color: var(--muted);
  cursor: pointer;
  font-size: .74rem;
  font-weight: 800;
}

.report-method ul { display: grid; gap: 13px; margin: 18px 0 0; padding: 0; list-style: none; }
.report-method li { display: grid; grid-template-columns: 145px 1fr; gap: 14px; color: var(--muted); font-size: .71rem; line-height: 1.6; }
.report-method strong { color: var(--ink); }
.editorial-actions { padding: 28px clamp(28px, 5vw, 72px) 34px; border-top: 1px solid var(--border); }

.report-delivery-notice {
  flex: 1 1 100%;
  margin: 0 0 8px;
  padding: 14px 16px;
  border: 1px solid rgba(18,183,106,.24);
  border-radius: 13px;
  color: var(--copy);
  background: rgba(18,183,106,.07);
  font-size: .78rem;
  line-height: 1.6;
}

.report-delivery-notice strong { color: var(--ink); }
.report-delivery-notice.delivery-warning {
  border-color: rgba(245,158,11,.28);
  background: rgba(245,158,11,.08);
}

@media (max-width: 800px) {
  .report-masthead { display: block; }
  .report-scope { justify-content: flex-start; margin-top: 18px; }
  .report-profile-page { min-height: 560px; }
  .report-chapter-nav { grid-template-columns: repeat(5, minmax(112px,1fr)); overflow-x: auto; }
  .report-chapter-nav button { min-width: 112px; }
}

@media (max-width: 600px) {
  .report-masthead { padding: 25px 21px 23px; }
  .report-scope { display: block; }
  .report-scope span { display: block; margin-top: 5px; padding-left: 0 !important; }
  .report-scope span::before { display: none; }
  .report-profile-page { min-height: 0; padding: 74px 22px 54px; }
  .profile-page-number { top: 24px; right: 22px; }
  .profile-copy h2 { font-size: clamp(2.75rem, 15vw, 4.2rem); }
  .profile-strapline { margin-bottom: 26px; font-size: 1.05rem; }
  .profile-copy > p:not(.profile-strapline) { font-size: .91rem; line-height: 1.75; }
  .report-chapter-nav { top: 5px; margin: 10px 8px; border-radius: 13px; }
  .report-chapter { min-height: 0; padding: 52px 22px 58px; scroll-margin-top: 82px; }
  .chapter-heading h3 { font-size: 2.55rem; }
  .chapter-copy > p { font-size: .94rem; line-height: 1.78; }
  .report-data-strip { grid-template-columns: 1fr; padding: 0; }
  .report-data-strip div { padding: 18px 0; }
  .report-data-strip div + div { border-top: 1px solid var(--border); border-left: 0; }
  .report-evidence-list li { grid-template-columns: 36px 1fr; gap: 11px; }
  .intervention-sequence li { grid-template-columns: 40px 1fr; gap: 12px; }
  .editorial-aside,
  .cultural-comparison,
  .working-aid,
  .cost-reading { padding: 21px 20px; }
  .priority-impact { padding: 21px 20px; }
  .operating-dimensions { padding: 20px 16px; }
  .dimension-explorer { grid-template-columns: 1fr; }
  .dimension-row { grid-template-columns: 120px 1fr; padding: 13px 10px; }
  .operating-insights { grid-template-columns: 1fr; }
  .supporting-pattern-list { grid-template-columns: 1fr; }
  .feature-spotlights { grid-template-columns: 1fr; }
  .report-method li { grid-template-columns: 1fr; gap: 3px; }
  .editorial-gate { top: 86px; }
  .editorial-actions { padding: 24px 22px 30px; }
}

@media (max-width: 900px) {
  .stage-map { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .choice-grid.four, .number-row, .headline-evidence { grid-template-columns: 1fr; }
  .review-tools-inner { grid-template-columns: 1fr; }
  .result-summary-grid.three-up { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .stage-map { display: none; }
  .number-card label, .number-card small { min-height: 0; }
  .response-key { display: none; }
  .likert-options .likert-button { font-size: .74rem; }
  .route-card { grid-template-columns: 1fr; }
  .route-plan { white-space: normal; }
  .route-price { max-width: none; text-align: left; }
  .headline-evidence { gap: 7px; }
  .share-formats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .share-panel { padding: 18px; }
  .share-actions .btn { flex: 1 1 calc(50% - 8px); }
  .report-cta .btn,
  .report-actions .btn { width: 100%; }
  .gift-ready { grid-column: 2; }
  .at-a-glance-head,
  .full-analysis-head { display: block; }
  .reading-time { display: block; margin-top: 7px; }
  .glance-actions .btn { width: 100%; }
  .analysis-steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .analysis-orbit > span,
  .analysis-core,
  .analysis-steps div { animation: none; }
}

@media print {
  body { background: white !important; }
  body::before,
  .topbar,
  .progress-wrap,
  .result-summary-grid,
  .at-a-glance,
  .report-actions,
  .report-cta,
  .share-backdrop,
  .gate { display: none !important; }
  .app-shell { width: 100%; padding: 0; }
  .frame,
  .screen { min-height: auto; border: 0; box-shadow: none; background: white; }
  .screen { padding: 0; }
  .report-pages { display: grid !important; max-height: none !important; overflow: visible !important; }
  .report-pages::after { display: none !important; }
  .report-page { break-inside: avoid; page-break-inside: avoid; margin: 0 0 16px; background: white; }
  .report-seam { break-after: avoid; page-break-after: avoid; }
  .report-chapter-nav,
  .editorial-actions { display: none !important; }
  .report-profile-page,
  .report-chapter { min-height: 0; padding: 18mm 14mm; background: white !important; }
  .report-profile-page { break-after: page; page-break-after: always; }
  .report-chapter { break-before: page; page-break-before: always; border: 0; }
  .dimension-row { break-inside: avoid; }
  .dimension-explainer { color: #111827 !important; background: #f3f4f6 !important; }
  .dimension-explainer h4,
  .dimension-explainer p { color: #111827 !important; }
}
