:root {
  --red: #cb263d;
  --red-dark: #8b1b15;
  --ink: #141414;
  --muted: #5f5f5f;
  --line: #dedede;
  --soft: #e5e5e4;
  --soft-red: #f8e5e8;
  --white: #ffffff;
  --answer-red-1: #8b1b15;
  --answer-red-2: #a51f26;
  --answer-red-3: #cb263d;
  --answer-red-4: #e04753;
  --answer-red-5: #f06b75;
  --advanced-green: #5aa86c;
  --leader-green: #176b3a;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--soft);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", Arial, sans-serif;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

.shell,
.app-shell {
  width: min(1100px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  width: 118px;
  height: auto;
  display: block;
}

.header-title {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.app-shell {
  flex: 1;
  padding: 34px 0 56px;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 14px;
}

.footer-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer a {
  color: var(--white);
  font-weight: 600;
  text-underline-offset: 4px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f48a94;
}

.legal-page {
  width: min(860px, calc(100vw - 32px));
}

.legal-content {
  padding: clamp(28px, 5vw, 56px);
}

.legal-content h1 {
  max-width: none;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
}

.legal-content h2 {
  margin-top: 32px;
  font-size: 20px;
}

.legal-content p {
  color: var(--muted);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.legal-content a {
  color: var(--red-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-content .legal-updated {
  margin: 12px 0 30px;
  font-size: 14px;
}

.legal-back {
  display: inline-block;
  margin-top: 24px;
}

.panel {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  min-width: 0;
}

.panel-body {
  padding: 34px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 0;
}

.hero-main {
  padding: 42px;
  min-width: 0;
}

.hero-side {
  position: relative;
  overflow: hidden;
  background: #2b0e0d;
  color: var(--white);
  padding: 42px 34px;
  min-width: 0;
}

.hero-side::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -64px;
  top: -64px;
  border: 28px solid rgba(203, 38, 61, 0.42);
  transform: rotate(45deg);
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.08;
}

.lead,
.body-copy {
  color: var(--muted);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
}

.hero-study-copy,
.trust-copy {
  max-width: 680px;
  color: var(--muted);
  font-family: "Work Sans", Arial, sans-serif;
  line-height: 1.5;
}

.hero-study-copy {
  margin: 14px 0 0;
  font-size: 16px;
}

.trust-copy {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.facts {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  font-family: "Work Sans", Arial, sans-serif;
}

.fact {
  border-left: 4px solid var(--red);
  padding-left: 14px;
}

.fact strong {
  display: block;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
}

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

.button {
  max-width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
}

.button.secondary {
  border: 1px solid var(--red);
  background: var(--white);
  color: var(--red);
}

.action-icon {
  font-size: 18px;
  line-height: 1;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button.is-loading {
  opacity: 0.78;
  cursor: wait;
  box-shadow: 0 0 0 4px rgba(203, 38, 61, 0.14);
}

.progress-wrap {
  padding: 22px 34px 0;
}

.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.progress-track {
  height: 8px;
  border-radius: 999px;
  background: #f1cfd4;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--red);
  transition: width 180ms ease;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.company-field {
  max-width: 680px;
}

label,
.field-label {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
}

select,
input[type="email"],
input[type="text"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
}

.optional-label {
  color: var(--muted);
  font-weight: 700;
}

.field-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

.consent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-nudge {
  margin-top: 12px;
  border-left: 4px solid var(--red);
  border-radius: 7px;
  background: var(--soft-red);
  color: var(--red-dark);
  padding: 14px 16px;
  font-family: "Work Sans", Arial, sans-serif;
  line-height: 1.45;
}

.consent-nudge > strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 6px;
}

.consent-nudge p {
  margin: 0;
}

.consent-nudge p + p {
  margin-top: 8px;
}

.radio-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-family: "Work Sans", Arial, sans-serif;
  font-weight: 600;
}

.question-category {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.question-text {
  max-width: 860px;
}

.options-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.option-card {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  padding: 15px 12px;
  text-align: left;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.option-card.selected {
  border: 2px solid var(--red);
  background: #fff5f7;
  box-shadow: 8px 8px 0 rgba(158, 30, 47, 0.16);
}

.option-card.selected-pending {
  border-color: var(--red);
  background: #ffe8ed;
  box-shadow: 0 0 0 4px rgba(203, 38, 61, 0.14);
  transform: translateY(-1px);
}

.option-number {
  display: block;
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 900;
}

.option-card:nth-child(1) .option-number {
  color: var(--answer-red-1);
}

.option-card:nth-child(2) .option-number {
  color: var(--answer-red-2);
}

.option-card:nth-child(3) .option-number {
  color: var(--answer-red-3);
}

.option-card:nth-child(4) .option-number {
  color: var(--answer-red-4);
}

.option-card:nth-child(5) .option-number {
  color: var(--answer-red-5);
}

.option-text {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.message {
  margin-top: 18px;
  color: var(--red-dark);
  font-family: "Work Sans", Arial, sans-serif;
  font-weight: 700;
}

.result-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.score-block {
  border-left: 6px solid var(--red);
  padding-left: 18px;
}

.score-value {
  color: var(--red-dark);
  font-size: 68px;
  font-weight: 900;
  line-height: 0.95;
}

.score-label {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 900;
}

.executive-report .panel-body {
  padding: 38px 34px;
}

.report-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.score-report {
  --gauge-score-color: var(--red);
  display: grid;
  justify-items: center;
  min-width: 0;
}

.score-report.level-initial {
  --gauge-score-color: #8b1b15;
}

.score-report.level-basic {
  --gauge-score-color: #ef3b2f;
}

.score-report.level-developing {
  --gauge-score-color: #e48305;
}

.score-report.level-advanced {
  --gauge-score-color: var(--advanced-green);
}

.score-report.level-leader {
  --gauge-score-color: var(--leader-green);
}

.score-gauge {
  position: relative;
  width: min(560px, 100%);
  margin-top: 4px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.score-gauge-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.score-gauge-rail,
.gauge-segment {
  fill: none;
  stroke-linecap: butt;
  stroke-width: 38;
}

.score-gauge-rail {
  stroke: #ebe7e7;
}

.gauge-initial {
  stroke: #8b1b15;
}

.gauge-basic {
  stroke: #ef3b2f;
}

.gauge-developing {
  stroke: #ffa51f;
}

.gauge-advanced {
  stroke: var(--advanced-green);
}

.gauge-leader {
  stroke: var(--leader-green);
}

.score-gauge-marker-halo {
  fill: var(--white);
  stroke: #1f1f1f;
  stroke-width: 3;
}

.score-gauge-marker {
  fill: #1f1f1f;
  stroke: var(--white);
  stroke-width: 3;
}

.score-gauge-value {
  fill: var(--gauge-score-color);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 78px;
  font-weight: 900;
}

.score-gauge-over {
  fill: var(--muted);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.score-gauge-result {
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.score-gauge-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  max-width: 480px;
  color: var(--muted);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.score-gauge-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.score-gauge-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.score-gauge-swatch.gauge-initial {
  background: #8b1b15;
}

.score-gauge-swatch.gauge-basic {
  background: #ef3b2f;
}

.score-gauge-swatch.gauge-developing {
  background: #ffa51f;
}

.score-gauge-swatch.gauge-advanced {
  background: var(--advanced-green);
}

.score-gauge-swatch.gauge-leader {
  background: var(--leader-green);
}

.category-total.level-initial {
  --score-color: #8b1b15;
}

.category-total.level-basic {
  --score-color: #cb263d;
}

.category-total.level-developing {
  --score-color: #e48305;
}

.category-total.level-advanced {
  --score-color: var(--advanced-green);
}

.category-total.level-leader {
  --score-color: var(--leader-green);
}

.score-over {
  color: var(--muted);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.report-summary h2 {
  max-width: 760px;
}

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

.hero-insight {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  border-right: 1px solid var(--line);
  padding-right: 14px;
}

.hero-insight:last-child {
  border-right: 0;
}

.hero-insight-mark {
  --insight-color: var(--red);
  --insight-bg: var(--soft-red);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--insight-bg);
  border: 1px solid color-mix(in srgb, var(--insight-color) 30%, white);
  color: var(--insight-color);
}

.insight-positive .hero-insight-mark {
  --insight-color: var(--leader-green);
  --insight-bg: #e8f4eb;
}

.insight-strong .hero-insight-mark {
  --insight-color: var(--advanced-green);
  --insight-bg: #e6f4ed;
}

.insight-improve .hero-insight-mark {
  --insight-color: var(--red);
  --insight-bg: #f8e5e8;
}

.hero-insight-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.hero-insight strong {
  color: var(--ink);
  font-size: 14px;
}

.hero-insight p {
  margin: 5px 0 0;
  color: var(--muted);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.35;
}

.report-section {
  padding-top: 30px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

.category-totals {
  display: grid;
  gap: 18px;
}

.category-totals-header {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 120px 70px minmax(220px, 0.65fr);
  gap: 16px;
  padding: 0 16px 2px;
  color: var(--red-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-total {
  --score-color: var(--red);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 120px 70px minmax(220px, 0.65fr);
  gap: 16px 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 4px solid var(--score-color);
  border-radius: 8px;
  background: #fff;
  padding: 20px 22px;
}

.category-total-main {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.category-total-icon-wrap {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #fafafa;
  color: var(--score-color);
}

.category-total-icon {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.category-total-label {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.category-total-status {
  justify-self: start;
  min-width: 100px;
  border-radius: 6px;
  background: #f7eeee;
  color: var(--score-color);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  text-align: center;
}

.category-total-recommendation {
  grid-column: 1 / -1;
  margin: 0;
  border-radius: 7px;
  background: #fafafa;
  padding: 14px 16px;
  color: var(--muted);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.category-total-recommendation strong {
  color: var(--red-dark);
}

.category-total-score {
  color: var(--score-color);
  font-size: 26px;
  font-weight: 900;
  text-align: right;
}

.category-total-track {
  height: 8px;
  border-radius: 999px;
  background: #efeded;
  overflow: hidden;
}

.category-total-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--score-color);
}

.action-plan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.action-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.action-empty {
  border: 1px solid rgba(21, 116, 61, 0.22);
  border-left: 4px solid var(--leader);
  border-radius: 8px;
  background: rgba(21, 116, 61, 0.06);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
  padding: 18px 20px;
}

.action-number {
  color: var(--red);
  border-right: 1px solid var(--line);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.action-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
}

.action-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.action-card strong {
  color: var(--red-dark);
}

.share-widget {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 24px;
  align-items: center;
  margin-top: 30px;
  border: 1px solid #e8b7bf;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #fff8f9);
  padding: 22px;
}

.share-widget-copy h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.share-widget-copy p,
.share-feedback {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

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

.share-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.share-button:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.share-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.share-feedback {
  grid-column: 1 / -1;
  margin-top: 0;
  color: var(--red-dark);
  font-weight: 700;
}

.results-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  font-family: "Work Sans", Arial, sans-serif;
}

.results-table th,
.results-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 8px;
  text-align: left;
}

.results-table th {
  color: var(--red-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.recommendations {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.recommendation {
  border-left: 4px solid var(--red);
  background: #fafafa;
  padding: 12px 14px;
  font-family: "Work Sans", Arial, sans-serif;
  line-height: 1.45;
}

.warning {
  margin-top: 18px;
  border: 1px solid #e8b7bf;
  border-radius: 7px;
  background: var(--soft-red);
  color: var(--red-dark);
  padding: 12px 14px;
  font-family: "Work Sans", Arial, sans-serif;
  font-weight: 700;
}

@media (max-width: 820px) {
  .shell,
  .app-shell {
    width: min(100%, 520px);
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-inner {
    min-height: 64px;
  }

  .logo {
    width: 98px;
  }

  .header-title {
    max-width: 150px;
    text-align: right;
    font-size: 10px;
  }

  .app-shell {
    padding-top: 20px;
  }

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

  .hero-main,
  .hero-side,
  .panel-body {
    padding: 24px 18px;
  }

  .progress-wrap {
    padding: 18px 18px 0;
  }

  .form-grid,
  .result-layout,
  .report-hero {
    grid-template-columns: 1fr;
  }

  .executive-report .panel-body {
    padding: 24px 18px;
  }

  .report-hero {
    gap: 24px;
  }

  .score-report,
  .report-summary,
  .hero-insight,
  .category-total,
  .action-card {
    min-width: 0;
  }

  .report-summary h2 {
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .score-gauge {
    width: min(310px, 100%);
    justify-self: center;
  }

  .score-gauge-value {
    font-size: 64px;
  }

  .score-gauge-result {
    font-size: 19px;
  }

  .hero-insights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-insight {
    grid-template-columns: 34px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 12px;
  }

  .hero-insight strong,
  .hero-insight p {
    overflow-wrap: anywhere;
  }

  .category-total {
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 10px 12px;
    overflow: hidden;
    padding: 16px;
  }

  .category-total-label {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .category-totals-header {
    display: none;
  }

  .category-total-main {
    grid-column: 1 / -1;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .category-total-icon-wrap {
    width: 38px;
    height: 38px;
  }

  .category-total-status {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    min-width: 0;
  }

  .category-total-score {
    grid-column: 2;
    grid-row: 2;
  }

  .category-total-track,
  .category-total-recommendation {
    grid-column: 1 / -1;
  }

  .category-total-recommendation {
    font-size: 13px;
    overflow-wrap: anywhere;
    padding: 12px;
  }

  .action-card {
    grid-template-columns: 1fr;
  }

  .share-widget {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .share-widget-copy h2 {
    font-size: 21px;
  }

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

  .share-button {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

  .action-number {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
  }

  .options-scale {
    grid-template-columns: 1fr;
  }

  .option-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 11px;
    align-items: start;
  }

  .option-number {
    margin: 0;
    line-height: 1;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .form-actions {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .form-actions .action-secondary {
    grid-column: 1;
    order: 1;
  }

  .form-actions .action-primary {
    grid-column: 2;
    order: 2;
  }

  .form-actions .action-secondary .action-text {
    display: none;
  }

  .form-actions .compact-action .action-text {
    display: none;
  }

  .form-actions .action-secondary,
  .form-actions .compact-action {
    padding-left: 10px;
    padding-right: 10px;
  }

  .button {
    width: 100%;
  }
}

@media print {
  @page {
    margin: 12mm;
  }

  body {
    background: #fff;
  }

  .shell,
  .app-shell {
    width: 100%;
    padding: 0;
  }

  .site-header {
    box-shadow: none;
  }

  .site-footer {
    display: none;
  }

  .app-shell {
    padding-top: 14px;
    padding-bottom: 0;
  }

  .executive-report {
    box-shadow: none;
    border-radius: 0;
  }

  .executive-report .panel-body {
    padding: 0;
  }

  .actions,
  .share-widget {
    display: none;
  }

  .report-hero,
  .report-section,
  .action-card,
  .category-total {
    break-inside: avoid;
  }

  .category-total,
  .action-card {
    box-shadow: none;
  }
}
