:root {
  --ink: #0b0b0a;
  --ink-2: #24231f;
  --muted: #686258;
  --paper: #f3eee5;
  --surface: #fffdf8;
  --white: #ffffff;
  --line: #cfc6b8;
  --line-dark: #8f877b;
  --signal: #ff4b23;
  --signal-dark: #c82f0f;
  --signal-soft: #fee4d9;
  --amber: #f6b800;
  --green: #087f5b;
  --green-soft: #dff1e9;
  --red: #c7381e;
  --red-soft: #f7ded7;
  --max: 1180px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
a { color: inherit; }
h1, h2, h3, p, figure, dl, dd { margin-top: 0; }

.site-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
  border-top: 6px solid var(--signal);
}
.brand {
  text-decoration: none;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.045em;
}
.brand span { color: var(--signal); }
.header-meta,
.report-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #bdb7ae;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.new-report-link {
  text-decoration: none;
  padding: 9px 13px;
  border: 1px solid #514e48;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  text-transform: none;
  letter-spacing: 0;
}
.new-report-link:hover { border-color: var(--signal); }
.report-stamp { white-space: nowrap; }

.home-main {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - 128px);
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  align-items: stretch;
}
.home-intro,
.calculator-panel {
  min-height: 620px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line);
}
.home-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
  border-right: 0;
  position: relative;
  overflow: hidden;
}
.home-intro::after {
  content: ">";
  position: absolute;
  right: 24px;
  bottom: 4px;
  color: var(--signal);
  font-size: 120px;
  font-weight: 950;
  line-height: 1;
  opacity: .95;
}
.page-kicker,
.eyebrow,
.decision-label,
.summary-label {
  margin-bottom: 10px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.home-intro h1 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(54px, 6vw, 82px);
  line-height: .93;
  letter-spacing: -.055em;
}
.home-subtitle {
  max-width: 440px;
  margin-bottom: auto;
  color: #d0cbc3;
  font-size: 19px;
  line-height: 1.45;
}
.proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 44px 0 0;
  border-top: 1px solid #3c3934;
  border-bottom: 1px solid #3c3934;
}
.proof-grid div {
  padding: 17px 14px 17px 0;
  border-right: 1px solid #3c3934;
}
.proof-grid div + div { padding-left: 14px; }
.proof-grid div:last-child { border-right: 0; }
.proof-grid dt { margin-bottom: 5px; font-size: 18px; font-weight: 900; letter-spacing: -.03em; }
.proof-grid dd { margin: 0; color: #a9a39b; font-size: 11px; line-height: 1.35; }
.calculator-panel { background: var(--surface); }
.panel-heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
}
.panel-index,
.section-index {
  font-size: 13px;
  font-weight: 950;
  color: var(--signal-dark);
}
.panel-heading h2 {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
}
.calculator-form { display: grid; gap: 17px; }
.field { position: relative; display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
label span { color: var(--muted); font-weight: 650; text-transform: none; letter-spacing: 0; }
input, select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #aaa194;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus {
  border-color: var(--signal);
  box-shadow: inset 4px 0 0 var(--signal);
}
.primary-button, .dark-button, .secondary-button {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-weight: 900;
}
.primary-button { background: var(--signal); color: var(--ink); }
.primary-button:hover { background: #ff5c38; }
.primary-button:active { transform: translateY(1px); }
.primary-button:disabled { opacity: .55; cursor: wait; }
.dark-button { background: var(--ink); color: #fff; }
.dark-button:hover { background: #2b2925; }
.secondary-button { background: transparent; color: var(--ink); border-color: var(--line-dark); }
.secondary-button:hover { border-color: var(--ink); }
.inline-button { display: inline-grid; place-items: center; text-decoration: none; width: fit-content; }
.privacy-line { margin: -3px 0 0; color: var(--muted); font-size: 11px; }
.form-error { display: none; color: var(--red); font-size: 12px; font-weight: 800; }
.autocomplete-results {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  z-index: 30;
  max-height: 290px;
  overflow-y: auto;
  padding: 5px;
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: 0 16px 30px rgba(20, 18, 14, .14);
}
.autocomplete-results.open { display: grid; }
.suggestion { appearance: none; border: 0; background: transparent; text-align: left; padding: 10px 11px; cursor: pointer; }
.suggestion:hover,
.suggestion.active { background: var(--signal-soft); outline: 1px solid var(--signal); }
.suggestion strong { display: block; font-size: 14px; }
.suggestion span { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }

.site-footer {
  min-height: 58px;
  padding: 16px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
  border-top: 1px solid var(--line);
}

.report-main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 72px;
}
.executive-summary {
  background: var(--ink);
  color: var(--white);
  border-top: 8px solid var(--signal);
}
.summary-label {
  margin: 0;
  padding: 16px 28px;
  color: #bcb6ad;
  border-bottom: 1px solid #35322e;
}
.summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, .75fr);
}
.summary-copy { padding: clamp(32px, 5vw, 58px); }
.report-context {
  margin-bottom: 12px;
  color: #aaa49b;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.summary-copy h1 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.055em;
}
.report-headline {
  max-width: 760px;
  margin-bottom: 0;
  color: #e8e3db;
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.28;
  letter-spacing: -.025em;
}
.decision-panel {
  padding: clamp(30px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--signal);
  color: var(--ink);
}
.decision-label { color: #67200d; }
.decision-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: .98;
  letter-spacing: -.045em;
}
.decision-panel p:not(.decision-label) {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.45;
}
.decision-panel .primary-button {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #35322e;
}
.hero-metric {
  min-height: 102px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px 24px;
  border-right: 1px solid #35322e;
}
.hero-metric:last-child { border-right: 0; }
.hero-metric span {
  color: #9f9990;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.hero-metric strong { font-size: clamp(22px, 2.5vw, 30px); letter-spacing: -.035em; }
.hero-metric.signal strong { color: var(--signal); }

.report-section {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  margin-top: 22px;
  padding: clamp(28px, 4.5vw, 52px) clamp(22px, 4vw, 48px) clamp(30px, 4.5vw, 54px) 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-index {
  padding-top: 5px;
  text-align: center;
}
.section-body { min-width: 0; }
.section-head { max-width: 930px; margin-bottom: 26px; }
.eyebrow { margin-bottom: 8px; }
.section-head h2,
.plan-offer h2,
.share-panel h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.3vw, 52px);
  line-height: .98;
  letter-spacing: -.045em;
}
.section-deck {
  max-width: 850px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.report-figure { margin: 0; }
.report-figure figcaption {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.35;
}
.report-figure figcaption span {
  flex: 0 0 auto;
  color: var(--signal-dark);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.report-figure figcaption strong { font-size: 15px; }
.chart-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.chart-shell svg { display: block; width: 100%; height: auto; }
.figure-source {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 12px;
}
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; }
.legend-line { width: 28px; height: 4px; }
.scenario-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.scenario-item {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}
.scenario-item:last-child { border-right: 0; }
.scenario-item span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.scenario-item strong { font-size: 23px; letter-spacing: -.035em; }
.scenario-item.upgrade strong { color: var(--green); }
.scenario-item.downside strong { color: var(--red); }

.task-axis {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) 2fr 62px;
  gap: 14px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.task-axis span:first-child { grid-column: 2; justify-self: start; }
.task-axis span:nth-child(2) { grid-column: 2; justify-self: center; }
.task-axis span:last-child { grid-column: 2; justify-self: end; }
.task-chart { display: grid; gap: 9px; }
.task-row {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) 2fr 62px;
  gap: 14px;
  align-items: center;
  min-height: 40px;
}
.task-name { font-size: 13px; font-weight: 800; line-height: 1.25; }
.task-track { position: relative; height: 22px; background: #ebe7df; overflow: hidden; }
.task-track::after { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: #6f685e; }
.task-bar { position: absolute; top: 4px; bottom: 4px; }
.task-bar.negative { right: 50%; background: var(--red); }
.task-bar.positive { left: 50%; background: var(--green); }
.task-value { font-size: 12px; font-weight: 950; text-align: right; }
.task-value.negative { color: var(--red); }
.task-value.positive { color: var(--green); }

.training-table-head,
.training-card {
  display: grid;
  grid-template-columns: minmax(190px, 1.2fr) minmax(180px, .9fr) minmax(250px, 1.35fr) minmax(130px, .65fr);
  gap: 18px;
  align-items: center;
}
.training-table-head {
  padding: 10px 14px;
  color: var(--muted);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.training-grid { display: grid; }
.training-card {
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
}
.training-card h3 { margin-bottom: 5px; font-size: 17px; line-height: 1.15; }
.training-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.attribute-meter { display: grid; gap: 7px; }
.attribute-labels { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 850; }
.attribute-track { height: 10px; background: #e4dfd7; overflow: hidden; }
.attribute-current { height: 100%; background: var(--ink); }
.attribute-target { height: 4px; margin-top: -7px; background: var(--signal); position: relative; z-index: 2; }
.training-proof strong { display: block; margin-bottom: 5px; font-size: 12px; }
.training-value { text-align: right; }
.training-value strong { display: block; font-size: 18px; color: var(--signal-dark); }
.training-value span { color: var(--muted); font-size: 10px; }

.path-table {
  display: grid;
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.path-row {
  display: grid;
  grid-template-columns: 34px 1.5fr .8fr .8fr .7fr .75fr;
  gap: 12px;
  align-items: center;
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
}
.path-row:last-child { border-bottom: 0; }
.path-row.header {
  color: var(--muted);
  background: transparent;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.path-row strong { font-size: 13px; }
.path-number { font-weight: 950; color: var(--signal-dark); }
.path-row.recommended { box-shadow: inset 4px 0 0 var(--signal); background: #fff8f4; }
.path-status { font-weight: 850; }
.path-status.positive { color: var(--green); }
.path-status.negative { color: var(--red); }

.action-zone {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  margin-top: 22px;
  border-top: 8px solid var(--signal);
}
.plan-offer,
.share-panel { padding: clamp(28px, 4vw, 46px); }
.plan-offer { background: var(--ink); color: var(--white); }
.plan-offer .eyebrow { color: var(--amber); }
.plan-offer h2 { max-width: 680px; }
.plan-offer ul {
  margin: 22px 0 28px;
  padding-left: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 26px;
  color: #d2ccc3;
  font-size: 13px;
}
.offer-cta {
  display: grid;
  grid-template-columns: auto minmax(180px, 240px) 1fr;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid #3a3732;
}
.offer-cta > strong { font-size: 36px; letter-spacing: -.045em; }
.offer-cta > span { color: #9f9990; font-size: 10px; }
.offer-cta .primary-button { width: 100%; }
.beta-form { margin-top: 20px; padding-top: 20px; border-top: 1px solid #3a3732; }
.beta-form label { display: block; margin-bottom: 7px; color: #fff; }
.beta-row { display: grid; grid-template-columns: 1fr auto; gap: 9px; }
.beta-row input { border-color: #5c564f; background: #25231f; color: #fff; }
.status-line { margin: 9px 0 0; min-height: 16px; color: var(--muted); font-size: 11px; }
.plan-offer .status-line { color: #c5bfb6; }
.share-panel { background: var(--surface); border: 1px solid var(--line); border-top: 0; }
.share-panel h2 { font-size: clamp(29px, 3.2vw, 42px); }
.share-preview {
  margin: 20px 0 26px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.share-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.method-details {
  margin-top: 18px;
  padding: 17px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.45);
}
.method-details summary { cursor: pointer; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.method-details div { padding-top: 13px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.method-details p:last-child { margin-bottom: 0; }
.empty-state { min-height: calc(100vh - 120px); display: grid; place-content: center; text-align: center; padding: 40px; }
.empty-state h1 { font-size: 46px; letter-spacing: -.045em; }

@media (max-width: 900px) {
  .home-main { grid-template-columns: 1fr; padding: 26px 0; }
  .home-intro, .calculator-panel { min-height: auto; }
  .home-intro { border-right: 1px solid var(--line); border-bottom: 0; }
  .home-intro h1 { max-width: 720px; }
  .summary-grid { grid-template-columns: 1fr; }
  .decision-panel { min-height: 260px; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .hero-metric:nth-child(2) { border-right: 0; }
  .hero-metric:nth-child(-n+2) { border-bottom: 1px solid #35322e; }
  .training-table-head { display: none; }
  .training-card { grid-template-columns: 1fr 1fr; }
  .training-card > :first-child { grid-column: 1 / -1; }
  .training-proof { grid-column: 1; }
  .training-value { grid-column: 2; }
  .action-zone { grid-template-columns: 1fr; }
  .share-panel { border-top: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .site-header { min-height: 58px; padding: 0 16px; }
  .header-meta span:first-child,
  .report-stamp { display: none; }
  .home-main, .report-main { width: min(100% - 20px, var(--max)); }
  .home-intro, .calculator-panel { padding: 28px 20px; }
  .home-intro h1 { font-size: 44px; max-width: 330px; }
  .home-subtitle { font-size: 15px; margin-bottom: 0; }
  .home-intro::after { font-size: 72px; }
  .proof-grid { display: none; }
  .proof-grid div, .proof-grid div + div { padding: 12px 0; border-right: 0; border-bottom: 1px solid #3c3934; }
  .proof-grid div:last-child { border-bottom: 0; }
  .field-row { grid-template-columns: 1fr; }
  .report-main { padding-top: 12px; }
  .summary-label { padding: 13px 18px; }
  .summary-copy, .decision-panel { padding: 27px 18px; }
  .summary-copy h1 { font-size: 44px; }
  .report-headline { font-size: 20px; }
  .decision-panel { min-height: 0; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .hero-metric { min-height: 78px; border-right: 1px solid #35322e; border-bottom: 1px solid #35322e; padding: 14px; }
  .hero-metric:nth-child(2n) { border-right: 0; }
  .hero-metric:nth-last-child(-n+2) { border-bottom: 0; }
  .report-section { grid-template-columns: 1fr; padding: 27px 18px 30px; }
  .section-index { text-align: left; margin-bottom: 9px; }
  .section-head h2 { font-size: 34px; }
  .report-figure figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .scenario-summary { grid-template-columns: 1fr; }
  .scenario-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .scenario-item:last-child { border-bottom: 0; }
  .task-axis { display: none; }
  .task-row { grid-template-columns: 1fr 48px; gap: 6px 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
  .task-track { grid-column: 1 / -1; grid-row: 2; }
  .task-value { grid-column: 2; grid-row: 1; }
  .training-card { grid-template-columns: 1fr; padding: 17px 0; }
  .training-card > :first-child, .training-proof, .training-value { grid-column: 1; }
  .training-value { text-align: left; }
  .path-shell { display: none; }
  .path-row { grid-template-columns: 28px 1fr 1fr; padding: 13px 8px; }
  .path-row.header { display: none; }
  .path-row span::before { display: block; margin-bottom: 3px; color: var(--muted); font-size: 9px; font-weight: 900; text-transform: uppercase; }
  .path-row strong { grid-column: 2 / -1; }
  .path-row span:nth-child(3)::before { content: "3-year value"; }
  .path-row span:nth-child(4)::before { content: "Transition"; }
  .path-row span:nth-child(5)::before { content: "Skill reuse"; }
  .path-row span:nth-child(6)::before { content: "Value delta"; }
  .plan-offer, .share-panel { padding: 28px 18px; }
  .plan-offer ul { grid-template-columns: 1fr; }
  .offer-cta { grid-template-columns: 1fr; }
  .share-buttons { grid-template-columns: 1fr; }
  .beta-row { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; padding: 16px; }
}

/* 1.2 layout system ------------------------------------------------------- */
:root {
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --report-page-min: 680px;
  --reading-width: 920px;
}

.home-mobile-cta { display: none; }
.home-intro::after { content: none; }

/* Desktop report pages use one consistent sheet rhythm. */
@media (min-width: 901px) {
  .executive-summary {
    min-height: 560px;
    display: grid;
    grid-template-rows: auto 1fr auto;
  }
  .summary-grid { min-height: 374px; }
  .summary-copy,
  .decision-panel { min-height: 100%; }
  .report-section {
    min-height: var(--report-page-min);
    margin-top: 28px;
    padding-top: 52px;
    padding-right: 56px;
    padding-bottom: 52px;
  }
  .section-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }
  .section-head {
    max-width: var(--reading-width);
    margin-bottom: 34px;
  }
  .report-figure,
  #skillsList { margin-top: auto; }
  .action-zone {
    min-height: 520px;
    margin-top: 28px;
  }
  .plan-offer,
  .share-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Stronger global spacing and text measure. */
.report-headline,
.section-deck,
.decision-panel p,
.share-preview { max-width: 64ch; }
.section-head h2 { max-width: 26ch; }
.report-figure figcaption { min-height: 22px; }
.figure-source { max-width: 110ch; }
.training-card { min-height: 118px; }
.path-stat small { display: none; }
.method-details { margin-top: 28px; }

/* Tablet: preserve report breathing room without fixed-height pages. */
@media (max-width: 900px) {
  .report-section { padding: 42px 36px 46px 0; }
  .section-index { width: 54px; }
  .section-head { margin-bottom: 30px; }
  .summary-copy,
  .decision-panel { padding: 42px 36px; }
  .action-zone { margin-top: 20px; }
}

/* Mobile homepage is intentionally two screens: promise, then calculator. */
@media (max-width: 680px) {
  body.home-page { background: var(--surface); }
  .home-page .site-header {
    min-height: 58px;
    position: relative;
    z-index: 20;
  }
  .home-main {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }
  .home-intro,
  .calculator-panel {
    width: 100%;
    border-left: 0;
    border-right: 0;
    scroll-margin-top: 0;
  }
  .home-intro {
    min-height: calc(100svh - 58px);
    padding: clamp(34px, 9vh, 76px) 24px max(24px, env(safe-area-inset-bottom));
    justify-content: flex-start;
    border-top: 0;
    border-bottom: 0;
  }
  .home-intro h1 {
    max-width: 9ch;
    margin-top: 8px;
    margin-bottom: 24px;
    font-size: clamp(54px, 16vw, 76px);
    line-height: .9;
    letter-spacing: -.06em;
  }
  .home-subtitle {
    max-width: 26ch;
    margin: 0;
    color: #d8d3cb;
    font-size: 18px;
    line-height: 1.45;
  }
  .home-mobile-cta {
    min-height: 58px;
    margin-top: auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--signal);
    color: var(--ink);
    text-decoration: none;
    font-size: 16px;
    font-weight: 950;
  }
  .home-mobile-cta span { font-size: 24px; line-height: 1; }
  .proof-grid { display: none; }

  .calculator-panel {
    min-height: 100svh;
    padding: 30px 24px max(28px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 6px solid var(--signal);
    border-bottom: 0;
  }
  .panel-heading {
    grid-template-columns: 32px 1fr;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 16px;
  }
  .panel-heading h2 { font-size: 32px; }
  .calculator-form { gap: 12px; }
  .field { gap: 6px; }
  .field-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  label { font-size: 10px; line-height: 1.25; }
  input, select { min-height: 48px; padding: 0 12px; }
  .primary-button { min-height: 52px; }
  .privacy-line { font-size: 10px; }
  .home-page .site-footer { min-height: auto; }

  /* Mobile report: larger type, clear separation, no compressed tables. */
  .report-page .site-header { position: sticky; top: 0; z-index: 40; }
  .report-main { width: 100%; padding: 10px 10px 48px; }
  .executive-summary,
  .report-section,
  .action-zone,
  .method-details { margin-left: 0; margin-right: 0; }
  .summary-label { padding: 14px 20px; }
  .summary-copy,
  .decision-panel { padding: 30px 22px 34px; }
  .summary-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: .92;
  }
  .report-context { margin-bottom: 12px; line-height: 1.4; }
  .report-headline { font-size: 20px; line-height: 1.35; }
  .decision-panel h2 { font-size: 34px; line-height: 1; }
  .decision-panel p:not(.decision-label) { margin-bottom: 22px; line-height: 1.55; }
  .hero-metric { min-height: 92px; padding: 16px; }
  .hero-metric span { line-height: 1.35; }
  .hero-metric strong { font-size: 24px; }

  .report-section {
    margin-top: 12px;
    padding: 34px 22px 38px;
    display: block;
  }
  .section-index {
    width: auto;
    margin-bottom: 12px;
    padding: 0;
    text-align: left;
  }
  .section-head { margin-bottom: 26px; }
  .section-head h2 {
    max-width: 100%;
    font-size: clamp(30px, 9.4vw, 38px);
    line-height: 1.04;
    letter-spacing: -.045em;
  }
  .section-deck { margin-top: 14px; font-size: 15px; line-height: 1.55; }
  .report-figure figcaption {
    min-height: 0;
    margin-bottom: 16px;
    gap: 6px;
    line-height: 1.45;
  }
  .report-figure figcaption strong { font-size: 14px; }
  .chart-shell { overflow-x: auto; overscroll-behavior-inline: contain; }
  .figure-source { margin-top: 14px; font-size: 11px; line-height: 1.55; }
  .chart-legend { margin-top: 14px; gap: 12px 16px; }
  .scenario-summary { margin-top: 18px; }
  .scenario-item { padding: 16px 0; }

  .task-chart { gap: 0; }
  .task-row {
    min-height: 0;
    padding: 16px 0;
    gap: 10px 12px;
  }
  .task-name { font-size: 14px; line-height: 1.4; }
  .task-track { height: 20px; }
  .task-value { font-size: 14px; }

  .training-grid { gap: 0; }
  .training-card {
    min-height: 0;
    padding: 24px 0;
    gap: 18px;
  }
  .training-card h3 { font-size: 20px; line-height: 1.2; }
  .training-card p { font-size: 12px; line-height: 1.55; }
  .attribute-meter { gap: 9px; }
  .training-proof strong { font-size: 13px; }
  .training-value strong { font-size: 22px; }

  .path-table { gap: 12px; border: 0; background: transparent; }
  .path-row.header { display: none; }
  .path-row {
    grid-template-columns: 32px 1fr 1fr;
    gap: 14px 12px;
    padding: 18px 16px;
    border: 1px solid var(--line);
    background: #fff;
  }
  .path-row.recommended { border-color: var(--signal); box-shadow: inset 5px 0 0 var(--signal); }
  .path-number { grid-column: 1; grid-row: 1; }
  .path-name { grid-column: 2 / -1; grid-row: 1; font-size: 16px !important; line-height: 1.25; }
  .path-stat {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    line-height: 1.3;
  }
  .path-stat small {
    display: block;
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .path-value { grid-column: 2; }
  .path-transition { grid-column: 3; }
  .path-reuse { grid-column: 2; }
  .path-delta { grid-column: 3; }

  .action-zone { margin-top: 12px; }
  .plan-offer,
  .share-panel { padding: 36px 22px 40px; }
  .plan-offer h2,
  .share-panel h2 { font-size: 36px; line-height: 1; }
  .plan-offer ul { margin: 24px 0 30px; gap: 12px; line-height: 1.45; }
  .offer-cta { gap: 14px; padding-top: 22px; }
  .offer-cta > strong { font-size: 40px; }
  .share-preview { margin: 22px 0 28px; line-height: 1.55; }
  .method-details { margin-top: 12px; padding: 20px 18px; }
  .report-page .site-footer { padding: 18px 16px; }
}

@media (max-width: 360px) {
  .home-intro { padding-left: 20px; padding-right: 20px; }
  .home-intro h1 { font-size: 52px; }
  .calculator-panel { padding-left: 18px; padding-right: 18px; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .path-row span::before { content: none !important; display: none !important; }
}

/* Career-option exhibit: chart and ranked options share one desktop page. */
@media (min-width: 901px) {
  .path-visual-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 22px;
    align-items: stretch;
  }
  .path-visual-grid .path-shell { min-height: 360px; }
  .path-visual-grid .path-table {
    margin-top: 0;
    border: 0;
    gap: 10px;
    align-content: start;
  }
  .path-visual-grid .path-row.header { display: none; }
  .path-visual-grid .path-row {
    grid-template-columns: 30px 1fr 1fr;
    gap: 11px 12px;
    min-height: 78px;
    padding: 14px 14px;
    border: 1px solid var(--line);
  }
  .path-visual-grid .path-number { grid-column: 1; grid-row: 1; }
  .path-visual-grid .path-name { grid-column: 2 / -1; grid-row: 1; }
  .path-visual-grid .path-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    font-size: 11px;
    line-height: 1.25;
  }
  .path-visual-grid .path-stat small {
    display: block;
    color: var(--muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
  }
  .path-visual-grid .path-value,
  .path-visual-grid .path-reuse { grid-column: 2; }
  .path-visual-grid .path-transition,
  .path-visual-grid .path-delta { grid-column: 3; }
}

@media (max-width: 900px) {
  .path-visual-grid { display: block; }
}

/* 1.3 MVP upgrade: career-value simulator and watchlist beta ----------- */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.value-simulator {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(320px, 1.25fr) minmax(220px, .8fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 24px;
  padding: 24px;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.simulator-copy {
  padding-right: 18px;
  border-right: 1px solid var(--line);
}
.simulator-copy h3 {
  max-width: 9ch;
  margin: 0;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.045em;
}
.simulator-skills { display: grid; gap: 8px; align-content: center; }
.simulator-skill {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.simulator-skill:hover { border-color: var(--ink); }
.simulator-skill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.simulator-check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: #fff;
}
.simulator-skill input:checked + .simulator-check {
  border-color: var(--signal);
  background: var(--signal);
}
.simulator-skill input:checked + .simulator-check::after {
  content: "✓";
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}
.simulator-skill input:focus-visible + .simulator-check { outline: 3px solid var(--amber); outline-offset: 3px; }
.simulator-skill-copy { min-width: 0; }
.simulator-skill-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.25;
}
.simulator-skill-copy small { color: var(--muted); font-size: 10px; font-weight: 800; }
.simulator-result {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: var(--ink);
  color: #fff;
}
.simulator-result > span {
  color: #aaa49b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.simulator-result > strong {
  display: block;
  margin: 7px 0 5px;
  color: var(--amber);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.05em;
}
.simulator-result p {
  min-height: 34px;
  margin: 0 0 16px;
  color: #cfc9c0;
  font-size: 11px;
  line-height: 1.45;
}
.simulator-result .dark-button {
  width: 100%;
  background: var(--signal);
  color: var(--ink);
}
.watch-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(220px, .8fr) auto;
  gap: 10px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}
.watch-form > div { display: grid; gap: 3px; }
.watch-form > div strong { font-size: 13px; }
.watch-form > div span { color: var(--muted); font-size: 10px; }
.watch-form input { min-height: 46px; }
.watch-form button { min-height: 46px; white-space: nowrap; }
.watch-form .status-line {
  grid-column: 2 / -1;
  margin: 0;
  min-height: 0;
}
.watch-form.submitted input,
.watch-form.submitted button { opacity: .55; }

@media (max-width: 900px) {
  .value-simulator { grid-template-columns: 1fr 1fr; }
  .simulator-copy { grid-column: 1 / -1; padding-right: 0; padding-bottom: 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .simulator-copy h3 { max-width: none; }
  .watch-form { grid-template-columns: 1fr 1fr; }
  .watch-form > div { grid-column: 1 / -1; }
  .watch-form .status-line { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .value-simulator {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
    padding: 18px;
  }
  .simulator-copy { grid-column: 1; }
  .simulator-copy h3 { font-size: 28px; }
  .simulator-skill { min-height: 62px; }
  .simulator-result { min-height: 220px; padding: 22px; }
  .simulator-result > strong { font-size: 46px; }
  .watch-form { grid-column: 1; grid-template-columns: 1fr; }
  .watch-form > div,
  .watch-form .status-line { grid-column: 1; }
  .watch-form button { width: 100%; }
}

/* 1.4 product DNA: career market intelligence --------------------------- */
:root {
  --ink: #0a0a09;
  --ink-2: #24211d;
  --muted: #6c655b;
  --paper: #f2ede4;
  --surface: #fffdf8;
  --white: #ffffff;
  --line: #d2c9bc;
  --line-dark: #8f877b;
  --signal: #ff5a2f;
  --signal-dark: #bb2d0f;
  --signal-soft: #ffe5d9;
  --amber: #ffc229;
  --green: #07835f;
  --green-soft: #dff2e9;
  --red: #c54029;
  --red-soft: #f6ded7;
  --max: 1220px;
  --report-page-min: 720px;
}

body {
  font-variant-numeric: tabular-nums lining-nums;
  text-rendering: optimizeLegibility;
}

.site-header {
  min-height: 68px;
  border-top-width: 5px;
}

.brand {
  font-size: 20px;
  letter-spacing: -.05em;
}

.header-meta,
.report-header-actions {
  font-size: 10px;
  letter-spacing: .12em;
}

.primary-button,
.dark-button,
.secondary-button,
.new-report-link {
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}

.primary-button:hover,
.dark-button:hover,
.secondary-button:hover,
.new-report-link:hover {
  transform: translateY(-1px);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.primary-button::after {
  content: "→";
  font-size: 19px;
  line-height: 1;
}

/* Homepage: one promise, one action, one market model. */
.home-main {
  grid-template-columns: minmax(0, .94fr) minmax(500px, 1.06fr);
  padding: 48px 0;
}

.home-intro,
.calculator-panel {
  min-height: 650px;
}

.home-intro {
  isolation: isolate;
  justify-content: flex-start;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 100% 72px,
    var(--ink);
}

.home-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -8% 22% 42%;
  height: 3px;
  background: var(--signal);
  transform: rotate(-11deg);
  transform-origin: right center;
  box-shadow: 140px -28px 0 -1px var(--signal), 280px -76px 0 -1px var(--signal);
  opacity: .95;
}

.home-promise {
  max-width: 560px;
}

.home-intro h1 {
  max-width: 9.5ch;
  margin-bottom: 28px;
  font-size: clamp(62px, 6vw, 88px);
  line-height: .91;
}

.home-subtitle {
  max-width: 36ch;
  margin-bottom: 0;
  color: #d8d2c8;
  font-size: 19px;
  line-height: 1.52;
}

.value-sequence {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #423e38;
  border-bottom: 1px solid #423e38;
}

.value-sequence li {
  min-width: 0;
  padding: 18px 16px 19px 0;
  border-right: 1px solid #423e38;
}

.value-sequence li + li { padding-left: 16px; }
.value-sequence li:last-child { border-right: 0; }
.value-sequence span {
  display: block;
  margin-bottom: 15px;
  color: var(--signal);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
}
.value-sequence strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 17px;
  letter-spacing: -.025em;
}
.value-sequence small {
  display: block;
  color: #aaa39a;
  font-size: 10px;
  line-height: 1.45;
}

.calculator-panel {
  padding: clamp(42px, 5vw, 66px);
}

.panel-heading {
  margin-bottom: 34px;
  padding-bottom: 24px;
}

.panel-heading h2 {
  font-size: clamp(34px, 3vw, 42px);
}

.calculator-form { gap: 19px; }
input, select { min-height: 54px; }
.calculator-form > .primary-button { min-height: 56px; }
.privacy-line { margin-top: -4px; }

/* Report: market terminal, not a consulting-company imitation. */
.report-main {
  width: min(var(--max), calc(100% - 36px));
  padding-top: 38px;
}

.executive-summary {
  border: 1px solid #2e2b27;
  border-top: 7px solid var(--signal);
}

.summary-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #d3cdc4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
}

.summary-label span:last-child { color: #817b72; }

.summary-copy h1 {
  max-width: 14ch;
  font-size: clamp(54px, 6vw, 82px);
}

.report-headline {
  max-width: 52ch;
  font-size: clamp(22px, 2.4vw, 30px);
}

.decision-panel {
  border-left: 1px solid #2e2b27;
}

.decision-panel h2 { max-width: 12ch; }
.decision-panel .primary-button { min-width: 190px; }

.hero-metric {
  min-height: 112px;
  padding: 20px 26px;
}
.hero-metric strong { font-size: clamp(24px, 2.5vw, 32px); }

.report-section {
  position: relative;
  min-height: var(--report-page-min);
  margin-top: 30px;
  padding-top: 58px;
  padding-right: 62px;
  padding-bottom: 58px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--ink);
}

.report-section::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 62px;
  height: 4px;
  background: var(--signal);
}

.section-index {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .1em;
}

.section-head {
  max-width: 980px;
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 24ch;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: .97;
}

.eyebrow,
.page-kicker,
.decision-label {
  letter-spacing: .13em;
}

.report-figure figcaption {
  min-height: auto;
  margin-bottom: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.report-figure figcaption span {
  min-width: 64px;
  color: var(--signal-dark);
}

.chart-shell {
  border-color: #bdb3a5;
}

.figure-source {
  margin-top: 13px;
  font-size: 10px;
}

.scenario-summary {
  margin-top: 16px;
}

.value-simulator {
  margin-top: 28px;
  border-width: 1px;
  border-top: 5px solid var(--signal);
  background: #f7f1e7;
}

.simulator-copy h3 {
  max-width: 11ch;
  font-size: 32px;
}

.simulator-result > strong { color: var(--signal); }

.watch-form {
  padding-top: 20px;
}

.training-table-head {
  padding: 12px 14px;
}

.training-card {
  min-height: 126px;
  padding-top: 21px;
  padding-bottom: 21px;
}

.path-row.recommended {
  background: #fff5ef;
}

.action-zone {
  min-height: 540px;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--signal);
}

.plan-offer,
.share-panel {
  padding: clamp(34px, 4.2vw, 52px);
}

.plan-offer h2,
.share-panel h2 { max-width: 13ch; }

.method-details {
  margin-top: 26px;
  background: transparent;
}

/* Mobile: a full promise screen, then a full calculator screen. */
@media (max-width: 680px) {
  .site-header { min-height: 58px; }
  .home-page .header-meta { display: none; }

  .home-intro {
    min-height: calc(100svh - 58px);
    padding: clamp(42px, 8vh, 72px) 24px max(24px, env(safe-area-inset-bottom));
    background:
      linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 100% 64px,
      var(--ink);
  }

  .home-intro::before {
    inset: auto -24% 26% 38%;
    transform: rotate(-14deg);
  }

  .home-intro h1 {
    max-width: 8.2ch;
    margin-top: 10px;
    font-size: clamp(58px, 17vw, 76px);
    line-height: .89;
  }

  .home-subtitle {
    max-width: 28ch;
    font-size: 17px;
    line-height: 1.5;
  }

  .value-sequence { display: none; }

  .home-mobile-cta {
    min-height: 62px;
    margin-top: auto;
    font-size: 15px;
  }

  .calculator-panel {
    min-height: 100svh;
    padding: 30px 24px max(28px, env(safe-area-inset-bottom));
  }

  .calculator-form { gap: 13px; }
  .field-row { grid-template-columns: 1fr 1fr; }
  input, select { min-height: 49px; }

  .report-main { width: 100%; padding: 10px 10px 50px; }
  .summary-label span:last-child { display: none; }
  .summary-copy h1 { max-width: 100%; font-size: clamp(44px, 13vw, 60px); }
  .decision-panel { border-left: 0; border-top: 1px solid #2e2b27; }
  .decision-panel h2 { max-width: 11ch; }

  .report-section {
    min-height: 0;
    margin-top: 12px;
    padding: 34px 21px 40px;
    border-top-width: 4px;
  }

  .report-section::after { width: 44px; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 {
    max-width: 100%;
    font-size: clamp(31px, 9.5vw, 40px);
    line-height: 1.03;
  }

  .report-figure figcaption {
    padding: 10px 0;
  }

  .value-simulator {
    padding: 18px;
    border-top-width: 5px;
  }

  .simulator-copy h3 { max-width: 100%; }
  .training-card { padding: 26px 0; }
  .action-zone { min-height: 0; }
  .plan-offer h2,
  .share-panel h2 { max-width: 100%; }
}

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

/* 1.4 compact decision layouts keep analytical pages closer in height. */
@media (min-width: 901px) {
  .trajectory-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
    gap: 24px;
    align-items: stretch;
  }
  .trajectory-chart-block { min-width: 0; }
  .trajectory-layout .value-simulator {
    min-width: 0;
    margin-top: 0;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }
  .trajectory-layout .simulator-copy {
    padding: 0 0 15px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trajectory-layout .simulator-copy h3 {
    max-width: 100%;
    font-size: 28px;
  }
  .trajectory-layout .simulator-skill { min-height: 52px; }
  .trajectory-layout .simulator-result { min-height: 190px; padding: 18px; }
  .trajectory-layout .watch-form {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 15px;
  }
  .trajectory-layout .watch-form > div,
  .trajectory-layout .watch-form .status-line { grid-column: 1; }
  .trajectory-layout .watch-form button { width: 100%; }
}

@media (max-width: 900px) {
  .trajectory-layout { display: block; }
}

@media (max-width: 680px) {
  .home-main { padding: 0; }
  .home-intro::before {
    inset: auto -22% 20% 42%;
    box-shadow: none;
  }
}

@media (min-width: 681px) {
  .home-intro::before {
    inset: auto -8% 29% 54%;
    box-shadow: none;
  }
}

@media (min-width: 901px) {
  .trajectory-layout .value-simulator {
    gap: 10px;
    padding: 16px;
  }
  .trajectory-layout .simulator-copy {
    padding-bottom: 11px;
  }
  .trajectory-layout .simulator-copy h3 {
    font-size: 24px;
    line-height: 1.02;
  }
  .trajectory-layout .simulator-skills { gap: 6px; }
  .trajectory-layout .simulator-skill {
    min-height: 44px;
    padding: 7px 9px;
  }
  .trajectory-layout .simulator-skill-copy strong { font-size: 12px; }
  .trajectory-layout .simulator-result {
    min-height: 158px;
    padding: 15px;
  }
  .trajectory-layout .simulator-result > strong { font-size: 40px; }
  .trajectory-layout .simulator-result p { min-height: 28px; margin-bottom: 12px; }
  .trajectory-layout .watch-form {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
    padding-top: 11px;
  }
  .trajectory-layout .watch-form > div { grid-column: 1 / -1; }
  .trajectory-layout .watch-form input,
  .trajectory-layout .watch-form button { min-height: 40px; }
  .trajectory-layout .watch-form .status-line { grid-column: 1 / -1; }
}

/* 1.5 validation loop: share-safe career signal artifact. */
.share-card-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.45;
  text-transform: uppercase;
}
.share-buttons button:disabled {
  cursor: wait;
  opacity: .62;
}
