:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef8f3;
  --text: #07162d;
  --muted: #526179;
  --border: #dce3eb;
  --green: #009b6d;
  --green-dark: #007a58;
  --green-soft: #c9f8e0;
  --blue: #2165ff;
  --violet: #8a33ff;
  --orange: #ff6b18;
  --shadow: 0 18px 55px rgba(9, 31, 66, 0.12);
  --radius: 8px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 78px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #25324a;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #eef4fa;
  outline: none;
}

.site-nav .nav-cta {
  color: #ffffff;
  background: var(--green);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--green-dark);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
}

.menu-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(540px, 1.2fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 58px 0 46px;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
  font-weight: 800;
}

.hero-copy p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 750;
}

.primary-button {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(0, 155, 109, 0.22);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--green-dark);
  outline: none;
}

.secondary-button {
  color: #17243a;
  background: #ffffff;
  border: 1px solid var(--border);
}

.product-frame {
  padding: 14px;
  border: 1px solid #d8e0e9;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.app-shell {
  overflow: hidden;
  border: 1px solid #dbe3ec;
  border-radius: var(--radius);
  background: #f1f3f6;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 20px;
  background: #ffffff;
  border-bottom: 1px solid #dbe3ec;
}

.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.user-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: var(--green-soft);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 24px 24px 14px;
}

.metric-card,
.welcome-panel,
.session-card {
  background: #ffffff;
  border: 1px solid #dbe3ec;
  border-radius: var(--radius);
}

.metric-card {
  min-height: 104px;
  padding: 16px;
}

.metric-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 9px;
  border-radius: var(--radius);
  font-weight: 750;
}

.metric-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-icon.green {
  color: var(--green);
  background: var(--green-soft);
}

.metric-icon.blue {
  color: var(--blue);
  background: #dce9ff;
}

.metric-icon.violet {
  color: var(--violet);
  background: #eedfff;
  font-size: 13px;
}

.metric-card p {
  margin: 0 0 4px;
  color: #18243a;
  font-size: 12px;
}

.metric-card strong {
  font-size: 26px;
}

.welcome-panel {
  margin: 8px 24px 22px;
  padding: 20px;
}

.welcome-panel h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.welcome-panel p {
  margin: 0;
  color: #33415a;
  font-size: 13px;
}

.tab-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  color: #33415a;
  font-size: 13px;
  font-weight: 750;
}

.tab-row span {
  padding: 9px 12px;
  border-radius: var(--radius);
}

.tab-row .active-tab {
  color: #ffffff;
  background: var(--green);
}

.session-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 14px;
}

.session-heading h3 {
  margin: 0;
  font-size: 20px;
}

.session-heading button {
  height: 36px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--green);
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

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

.session-card {
  min-height: 210px;
  padding: 18px;
}

.session-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  font-weight: 800;
}

.blurred-text {
  filter: blur(4px);
  user-select: none;
}

.credits {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 38px;
  padding: 0 10px;
  color: #00795b;
  background: var(--green-soft);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 750;
}

.division-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.division-list span {
  padding: 4px 8px;
  color: #1153d8;
  background: #dceaff;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
}

.recurring {
  margin: 12px 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.session-card strong,
.time {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
}

.progress {
  height: 6px;
  overflow: hidden;
  margin-top: 14px;
  background: #d9e2ec;
  border-radius: 999px;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--green);
}

.section-intro {
  width: min(880px, calc(100% - 48px));
  margin: 34px auto 30px;
  text-align: center;
}

.section-intro h2,
.feature-band h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.section-intro p,
.feature-band p,
.contact-section p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
  width: min(1080px, calc(100% - 48px));
  margin: 18px auto;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.member-band {
  background: linear-gradient(135deg, #ffffff 0%, #effaf5 100%);
}

.session-band {
  background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
}

.evaluation-band {
  background: linear-gradient(135deg, #ffffff 0%, #effaf5 55%, #eef4ff 100%);
}

.evaluation-card-link {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 170px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dbe3ec;
  border-radius: var(--radius);
}

.evaluation-card-link p {
  margin: 0;
  color: #26344d;
  font-size: 16px;
  line-height: 1.55;
}

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

.feature-list li {
  min-height: 58px;
  padding: 16px 16px 16px 44px;
  background: #f7fafc;
  border: 1px solid #e1e8ef;
  border-radius: var(--radius);
  color: #26344d;
  font-weight: 650;
  line-height: 1.35;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #d6f6e6;
}

.contact-section {
  width: min(1080px, calc(100% - 48px));
  margin: 76px auto 54px;
  padding: 42px;
  color: #ffffff;
  background: #06251d;
  border-radius: var(--radius);
  text-align: center;
}

.contact-section p {
  color: #c9d8d2;
  margin-bottom: 26px;
}

.contact-section .primary-button {
  background: #ffffff;
  color: #06251d;
  box-shadow: none;
}

.contact-section .primary-button:hover,
.contact-section .primary-button:focus-visible {
  background: #d8f7e8;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: #65738a;
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--text);
  font-weight: 800;
}

.evaluation-page {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 26px;
}

.evaluation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
}

.evaluation-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  font-weight: 800;
}

.evaluation-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.evaluation-mode-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.evaluation-mode-strip span {
  padding: 10px 12px;
  color: #0b5f46;
  background: #e6f8ef;
  border: 1px solid #bee9d4;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
}

.resume-panel,
.evaluation-panel,
.report-sidebar,
.result-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(9, 31, 66, 0.08);
}

.resume-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.resume-panel > span,
.result-card > span,
.field-grid label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.resume-panel strong {
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.resume-panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.evaluation-progress {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(9, 31, 66, 0.08);
}

.cost-control-notice {
  padding: 14px 16px;
  color: #7a1f1f;
  background: #fff1f1;
  border: 1px solid #f1b9b9;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.progress-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.progress-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.progress-summary strong {
  font-size: 20px;
}

.step-meter {
  height: 8px;
  overflow: hidden;
  background: #dfe7ef;
  border-radius: 999px;
}

.step-meter span {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--green);
  transition: width 180ms ease;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.step-list li,
.step-list button {
  padding: 10px 12px;
  color: #34445e;
  background: #f6f8fb;
  border: 1px solid #e1e8ef;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  cursor: pointer;
}

.step-list button {
  width: 100%;
  font-family: inherit;
}

.step-list li.active {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.step-list li:focus-visible {
  outline: 3px solid rgba(0, 155, 109, 0.18);
  outline-offset: 2px;
}

.step-list li.done {
  color: #007a58;
  background: #eefaf4;
  border-color: #c8eedc;
}

.resume-form {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.resume-form label,
.field-grid label {
  display: grid;
  gap: 8px;
  color: #1d2a40;
  font-size: 14px;
  font-weight: 750;
}

.resume-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.resume-form p,
.save-message {
  min-height: 20px;
  margin: 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

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

textarea {
  resize: vertical;
  line-height: 1.55;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(0, 155, 109, 0.16);
}

.small-button {
  min-height: 44px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--green);
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

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

.evaluation-form {
  display: grid;
  gap: 18px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.evaluation-panel {
  padding: 24px;
}

.panel-heading {
  margin-bottom: 20px;
}

.panel-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
}

.panel-heading p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.field-grid.single {
  grid-template-columns: 1fr;
}

.skills-sections {
  display: grid;
  gap: 12px;
}

.category-step-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.category-step-nav span {
  color: #17243a;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.category-step-nav button {
  border: 1px solid var(--border);
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.skill-category {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fbfcfe;
}

.category-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: #17243a;
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
  text-align: left;
}

.level-help-toggle {
  width: fit-content;
  min-height: 34px;
  padding: 0 11px;
  color: var(--green-dark);
  background: #eefaf4;
  border: 1px solid #c7ecd8;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.level-help-toggle:hover,
.level-help-toggle:focus-visible {
  background: #ddf6e9;
  outline: 2px solid rgba(16, 122, 73, 0.18);
  outline-offset: 2px;
}

.level-help-box {
  padding: 14px 16px 16px;
  background: #f3fbf7;
  border-bottom: 1px solid var(--border);
}

.level-help-box dl {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin: 0;
}

.level-help-box div {
  display: grid;
  gap: 3px;
}

.level-help-box dt {
  color: #0c2f24;
  font-size: 13px;
  font-weight: 850;
}

.level-help-box dd {
  margin: 0;
  color: #39465f;
  font-size: 13px;
  line-height: 1.5;
}

.competency-list {
  display: grid;
}

.competency-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 230px);
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e7edf4;
}

.competency-row:last-child {
  border-bottom: 0;
}

.competency-row span {
  color: #25324a;
  font-size: 14px;
  font-weight: 700;
}

.competency-row select {
  min-height: 40px;
}

.report-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.result-card {
  padding: 18px;
  box-shadow: none;
}

.result-card strong {
  display: block;
  margin-top: 6px;
  font-size: 42px;
  line-height: 1;
}

.result-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.result-card.compact strong {
  font-size: 28px;
}

.report-preview {
  max-height: 640px;
  overflow: auto;
  padding: 14px;
  background: #eef2f6;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.report-preview .report-cover,
.report-preview .report-cover dl,
.report-preview .report-summary-grid,
.report-preview .promo-feature-grid,
.report-preview .promo-brochure-grid,
.report-preview .promo-problem-grid,
.report-preview .promo-cta-row,
.report-preview .division-bar-row,
.report-preview .not-observed-grid,
.report-preview .roadmap {
  grid-template-columns: 1fr;
}

.report-preview .report-cover {
  padding: 18px;
}

.report-preview .report-cover aside strong {
  font-size: 46px;
}

.report-preview .report-summary-grid {
  display: grid;
}

.report-preview .report-promo {
  padding: 12px;
}

.report-preview .report-promo-heading {
  flex-direction: column;
  gap: 4px;
}

.report-preview .roadmap i {
  width: 2px;
  height: 18px;
  margin: 0 auto;
}

.report-preview .competency-matrix {
  min-width: 620px;
}

.report-inline-preview {
  overflow: auto;
  max-height: 720px;
  padding: 14px;
  background: #eef2f6;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.report-document {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dbe3ec;
  border-radius: var(--radius);
  color: #1d2a40;
  line-height: 1.55;
}

.report-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  color: #ffffff;
  background: #06251d;
  border-radius: var(--radius);
}

.report-cover h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}

.report-cover p {
  margin: 8px 0 18px;
  color: #d8f7e8;
  font-size: 14px;
}

.report-cover dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.report-cover dl div {
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.report-cover dt,
.report-summary-card span {
  color: #c9d8d2;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-cover dd {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 750;
}

.report-cover aside {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 18px;
  color: #06251d;
  background: #ffffff;
  border-radius: var(--radius);
  text-align: center;
}

.report-cover aside span {
  color: #526179;
  font-size: 12px;
  font-weight: 800;
}

.report-cover aside strong {
  display: block;
  margin: 4px 0;
  font-size: 58px;
  line-height: 0.95;
}

.report-cover aside em {
  color: #007a58;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.report-document h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
}

.report-subtitle {
  margin: 8px 0 18px;
  color: var(--muted);
}

.report-guide {
  margin: 0 0 18px;
  padding: 12px;
  color: #1f3d32;
  background: #eefaf4;
  border: 1px solid #c8eedc;
  border-radius: var(--radius);
}

.report-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.report-summary-card {
  min-height: 92px;
  padding: 14px;
  background: #f7fafc;
  border: 1px solid #dbe3ec;
  border-radius: var(--radius);
}

.report-summary-card span {
  color: var(--muted);
}

.report-summary-card strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.05;
}

.report-promo {
  margin-top: 16px;
  padding: 18px 22px 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #f7fffb 0%, #e8f8f0 52%, #f8fffb 100%);
  border: 1px solid #cfe5da;
  border-radius: 14px;
  break-inside: avoid;
  page-break-inside: avoid;
}

.report-promo-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
  text-align: center;
}

.report-promo-heading::before,
.report-promo-heading::after {
  content: "";
  height: 1px;
  background: #7ab69f;
}

.report-promo-heading h3 {
  margin: 0;
  color: #06251d;
  font-size: 23px;
  line-height: 1.1;
}

.report-promo-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.report-promo-heading strong {
  color: #007a58;
  font-size: 13px;
  white-space: nowrap;
}

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

.promo-feature-card {
  min-height: 118px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d8e7df;
  border-radius: var(--radius);
  break-inside: avoid;
  page-break-inside: avoid;
}

.promo-feature-card > span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-bottom: 5px;
  background: #e6f8ef;
  border-radius: 6px;
  font-size: 14px;
}

.promo-feature-card h4 {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 1.15;
}

.promo-feature-card ul {
  display: grid;
  gap: 2px;
  padding-left: 14px;
  margin: 0;
  color: #33415a;
  font-size: 10.5px;
  line-height: 1.25;
}

.promo-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid #8fc5af;
}

.promo-problem-card,
.promo-solution-card,
.promo-brand-tile,
.promo-demo-card,
.promo-shuttle-card {
  break-inside: avoid;
  page-break-inside: avoid;
}

.promo-problem-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 112px;
  padding: 0 14px;
  text-align: center;
  border-right: 1px solid #9ac9b4;
}

.promo-problem-card:last-child {
  border-right: 0;
}

.promo-problem-card img {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.promo-problem-card strong {
  color: #071b18;
  font-size: 15px;
  line-height: 1.25;
}

.promo-main-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 210px;
  gap: 22px;
  align-items: center;
  padding: 20px 0 18px;
  border-bottom: 1px dashed #8fc5af;
}

.promo-brand-tile {
  display: grid;
  place-items: center;
  min-height: 120px;
}

.promo-brand-tile img {
  display: block;
  width: 118px;
  height: 118px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(6, 37, 29, 0.16);
}

.promo-solution-card {
  padding: 0;
  color: #071b18;
  background: transparent;
  border: 0;
}

.promo-solution-card h4 {
  margin: 0 0 10px;
  color: #071b18;
  font-size: 20px;
  line-height: 1.1;
}

.promo-solution-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  color: #071b18;
  font-size: 13px;
  line-height: 1.25;
  list-style: none;
}

.promo-solution-card li::before {
  content: "✓";
  margin-right: 9px;
  color: #0f7b56;
  font-weight: 900;
}

.promo-demo-card,
.promo-shuttle-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #b7decf;
  border-radius: 12px;
}

.promo-demo-card {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 16px;
  text-align: center;
}

.promo-demo-card > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #0f7b56;
  border: 2px solid #0f7b56;
  border-radius: 8px;
  font-size: 24px;
}

.promo-demo-card strong {
  display: block;
  color: #0f7b56;
  font-size: 18px;
  line-height: 1.1;
}

.promo-demo-card em {
  display: block;
  width: 100%;
  padding: 8px 10px;
  color: #ffffff;
  background: #0a6f4c;
  border-radius: 5px;
  font-size: 18px;
  font-style: normal;
  font-weight: 850;
}

.promo-shuttle-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.8fr);
  gap: 20px;
  align-items: center;
  padding: 14px 50px 12px;
  border-bottom: 1px solid transparent;
}

.promo-shuttle-title,
.promo-delivery {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
}

.promo-shuttle-title img,
.promo-delivery img {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.promo-shuttle-title strong {
  color: #071b18;
  font-size: 18px;
  line-height: 1.15;
}

.promo-shuttle-title small {
  color: #071b18;
  font-size: 13px;
  font-weight: 750;
}

.promo-delivery {
  border-left: 1px solid #9ac9b4;
  padding-left: 28px;
}

.promo-delivery strong {
  color: #071b18;
  font-size: 14px;
  line-height: 1.2;
}

.promo-shuttle-card strong,
.promo-shuttle-card small {
  display: block;
}

.promo-cta {
  margin: 0 -22px;
  padding: 9px 12px;
  color: #ffffff;
  background: linear-gradient(90deg, #052a20, #0b6d4b, #052a20);
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.promo-continue {
  margin: 8px 0 !important;
  color: #1f3d32;
  font-size: 11px !important;
  font-weight: 800;
  text-align: center;
}

.report-section {
  margin-top: 20px;
  break-inside: avoid;
}

.report-section p {
  margin: 0;
  line-height: 1.65;
}

.division-bars {
  display: grid;
  gap: 9px;
}

.division-bar-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(130px, 1.1fr) 94px;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #fbfcfe;
  border: 1px solid #e1e8ef;
  border-left: 5px solid #9aa8ba;
  border-radius: var(--radius);
  break-inside: avoid;
}

.division-bar-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.division-bar-label strong {
  font-size: 13px;
}

.division-bar-label span {
  color: #17243a;
  font-size: 13px;
  font-weight: 800;
}

.division-bar-track {
  height: 10px;
  overflow: hidden;
  background: #e6ecf2;
  border-radius: 999px;
}

.division-bar-track span {
  display: block;
  height: 100%;
  background: #9aa8ba;
  border-radius: inherit;
}

.division-bar-row em {
  color: #526179;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.status-above {
  border-left-color: #009b6d;
}

.status-above .division-bar-track span,
.status-pill.status-above {
  background: #009b6d;
}

.status-at {
  border-left-color: #d89100;
}

.status-at .division-bar-track span,
.status-pill.status-at {
  background: #d89100;
}

.status-below {
  border-left-color: #d64545;
}

.status-below .division-bar-track span,
.status-pill.status-below {
  background: #d64545;
}

.status-not-observed {
  border-left-color: #9aa8ba;
}

.status-not-observed .division-bar-track span,
.status-pill.status-not-observed {
  background: #9aa8ba;
}

.report-list {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
  font-size: 14px;
}

.report-list li {
  padding-left: 2px;
}

.report-list.numbered li strong {
  display: block;
}

.report-list.numbered li span {
  color: var(--muted);
}

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

.not-observed-grid article {
  padding: 12px;
  background: #f7fafc;
  border: 1px solid #e1e8ef;
  border-radius: var(--radius);
}

.not-observed-grid strong,
.not-observed-grid span,
.not-observed-grid small {
  display: block;
}

.not-observed-grid span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 750;
}

.not-observed-grid small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.roadmap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: stretch;
}

.roadmap div {
  padding: 12px;
  background: #eefaf4;
  border: 1px solid #c8eedc;
  border-radius: var(--radius);
}

.roadmap span {
  display: block;
  color: #1f3d32;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.roadmap strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.3;
}

.roadmap i {
  align-self: center;
  width: 18px;
  height: 2px;
  background: #009b6d;
}

.competency-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.competency-matrix th,
.competency-matrix td {
  padding: 8px;
  border: 1px solid #e1e8ef;
  text-align: left;
  vertical-align: top;
}

.competency-matrix th {
  background: #f6f8fb;
  color: #26344d;
  font-size: 11px;
  text-transform: uppercase;
}

.competency-matrix thead {
  display: table-header-group;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  color: #ffffff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.report-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.report-meta div {
  padding: 10px;
  background: #f7fafc;
  border: 1px solid #e1e8ef;
  border-radius: var(--radius);
}

.report-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-meta dd {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.report-callout {
  margin: 18px 0;
  padding: 16px;
  color: #ffffff;
  background: #06251d;
  border-radius: var(--radius);
}

.report-callout span {
  display: block;
  color: #c9d8d2;
  font-size: 12px;
  font-weight: 800;
}

.report-callout strong {
  display: block;
  margin-top: 4px;
  font-size: 40px;
  line-height: 1;
}

.report-callout p {
  margin: 8px 0 0;
  color: #d8f7e8;
}

.report-document h3 {
  margin: 20px 0 8px;
  font-size: 17px;
}

.report-document p {
  margin: 0;
  font-size: 14px;
}

.report-document table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 13px;
}

.report-document td {
  padding: 8px 10px;
  border: 1px solid #e1e8ef;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.recommendation-card {
  padding: 18px;
  background: #f7fafc;
  border: 1px solid #e1e8ef;
  border-radius: var(--radius);
}

.recommendation-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.recommendation-card strong {
  display: block;
  margin-top: 6px;
  font-size: 30px;
}

.division-profile-wrap {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.division-profile {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.division-profile th,
.division-profile td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.division-profile th {
  color: #26344d;
  background: #f6f8fb;
  font-size: 13px;
}

.ai-recommendation {
  margin-top: 18px;
  padding: 18px;
  background: #eefaf4;
  border: 1px solid #c8eedc;
  border-radius: var(--radius);
}

.ai-recommendation h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.ai-recommendation p {
  margin: 0;
  color: #1f3d32;
  line-height: 1.65;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.form-actions button {
  border: 1px solid var(--border);
  cursor: pointer;
}

.form-actions .primary-button {
  border-color: var(--green);
}

.report-final-notes {
  padding: 16px;
  background: #f7fafc;
  border: 1px solid #dbe3ec;
  border-radius: var(--radius);
}

.report-disclaimer {
  margin-top: 8px !important;
  color: var(--muted);
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.report-disclaimer strong {
  color: #1d2a40;
}

.report-actions {
  display: grid;
  gap: 10px;
}

.report-actions button {
  border: 0;
  cursor: pointer;
}

.print-body {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0;
  background: #ffffff;
}

.print-body .report-document {
  border: 0;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-frame {
    max-width: 760px;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .evaluation-hero,
  .evaluation-workspace {
    grid-template-columns: 1fr;
  }

  .report-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
    min-height: 0;
    padding: 12px 16px;
  }

  .brand {
    font-size: 18px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
  }

  .site-nav a {
    padding: 8px 10px;
  }

  .site-nav .nav-cta {
    white-space: nowrap;
  }

  body {
    overflow-x: hidden;
  }

  .hero,
  .section-intro,
  .feature-band,
  .contact-section,
  .site-footer,
  .evaluation-page {
    width: min(100% - 32px, 1080px);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p,
  .section-intro p,
  .feature-band p,
  .contact-section p {
    font-size: 16px;
  }

  .metric-grid,
  .session-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .welcome-panel,
  .session-grid {
    margin-left: 14px;
    margin-right: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .metric-grid {
    padding-top: 14px;
  }

  .welcome-panel {
    padding: 16px;
  }

  .session-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .feature-band,
  .contact-section {
    padding: 26px 20px;
  }

  .evaluation-hero h1 {
    font-size: 42px;
  }

  .evaluation-hero p,
  .panel-heading p {
    max-width: 100%;
  }

  .evaluation-panel,
  .resume-panel,
  .report-sidebar {
    padding: 18px;
  }

  .field-grid,
  .competency-row,
  .report-meta,
  .report-cover,
  .report-cover dl,
  .report-summary-grid,
  .report-promo-heading,
  .promo-feature-grid,
  .promo-brochure-grid,
  .promo-problem-grid,
  .promo-cta-row,
  .not-observed-grid,
  .division-bar-row,
  .roadmap,
  .resume-form div {
    grid-template-columns: 1fr;
  }

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

  .progress-summary,
  .category-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-step-nav,
  .recommendation-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    justify-content: stretch;
  }

  .form-actions button,
  .report-actions button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media print {
  .site-header,
  .site-footer,
  .evaluation-hero,
  .evaluation-form,
  .result-card,
  .report-actions,
  .save-message {
    display: none !important;
  }

  body,
  .evaluation-page,
  .evaluation-workspace,
  .report-sidebar,
  .report-preview {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 0;
    box-shadow: none;
  }

  .report-preview {
    max-height: none;
    overflow: visible;
  }

  .report-document {
    border: 0;
    padding: 0;
  }

  .report-cover,
  .report-summary-card,
  .report-promo,
  .promo-feature-card,
  .promo-problem-card,
  .promo-solution-card,
  .promo-demo-card,
  .promo-shuttle-card,
  .promo-cta,
  .division-bar-row,
  .not-observed-grid article,
  .roadmap div {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .report-section {
    break-inside: avoid;
  }

  .report-promo {
    break-inside: avoid;
    page-break-inside: avoid;
    break-after: page;
    page-break-after: always;
  }
}
