:root {
  --ink: #10211d;
  --ink-soft: #1c302a;
  --paper: #f7f7f2;
  --paper-deep: #ebeee7;
  --line: #d8ddd4;
  --muted: #64736e;
  --lime: #b8e94e;
  --lime-deep: #8fbf25;
  --teal: #008f82;
  --white: #ffffff;
  --danger: #9a452e;
  --shadow: 0 18px 54px rgba(16, 33, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
textarea,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 242, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.02;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: -0.08em;
}

.header-action,
.quiet-button {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 4px 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-primary:hover:not(:disabled) {
  background: #c5f257;
  transform: translateY(-2px);
}

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

.button-secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover,
.button-ghost:hover {
  color: var(--white);
  background: var(--ink);
}

.button-ghost {
  border-color: #5d6d67;
  color: var(--white);
  background: transparent;
}

.button-ghost:hover {
  border-color: var(--white);
}

.arrow {
  font-size: 19px;
  line-height: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  gap: 58px;
  align-items: center;
  padding: 82px 5vw 72px;
  border-radius: 0 0 28px 28px;
  color: var(--white);
  background: var(--ink);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -320px;
  right: -90px;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(184, 233, 78, 0.18);
  border-radius: 50%;
}

.hero::after {
  right: 16%;
  bottom: -480px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.hero-copy,
.sample-card {
  position: relative;
  z-index: 1;
}

.hero .eyebrow,
.closing-panel .eyebrow {
  color: var(--lime);
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(46px, 6.3vw, 88px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero h1 span {
  color: #aebdb7;
}

.hero-summary {
  max-width: 640px;
  margin: 26px 0 0;
  color: #d7e0dc;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}

.time-note,
.private-note {
  color: #b2c0bb;
  font-size: 11px;
}

.private-note {
  display: block;
  margin-top: 15px;
}

.sample-card {
  max-width: 440px;
  justify-self: end;
  padding: 22px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #e8f0ec;
  background: rgba(37, 57, 50, 0.72);
  box-shadow: var(--shadow);
}

.card-kicker {
  display: flex;
  justify-content: space-between;
  color: #b5c4be;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sample-priority {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  margin: 24px 0;
}

.priority-number {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid var(--lime);
  border-radius: 50%;
  color: var(--white);
  font-size: 23px;
  font-weight: 700;
}

.priority-number small {
  display: block;
  margin-top: -8px;
  color: #afc3bb;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sample-priority p,
.sample-priority h2 {
  margin: 0;
}

.sample-priority p {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sample-priority h2 {
  margin-top: 5px;
  font-size: 22px;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.sample-bars,
.score-bars {
  display: grid;
  gap: 11px;
}

.sample-bar,
.score-row {
  display: grid;
  grid-template-columns: 22px 1fr 31px;
  align-items: center;
  gap: 10px;
  color: #b5c4be;
  font-size: 9px;
}

.bar-track {
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.bar-fill {
  height: 100%;
  background: #48cdb8;
}

.bar-fill.lime {
  background: var(--lime);
}

.sample-footnote {
  margin: 22px 0 0;
  color: #b5c4be;
  font-size: 10px;
  line-height: 1.55;
}

.signal-band {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 35px;
  align-items: center;
  min-height: 140px;
  padding: 30px 5vw;
  border-bottom: 1px solid var(--line);
  background: #f1f1eb;
}

.signal-band p {
  margin: 0;
}

.signal-label {
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.signal-statement {
  font-size: clamp(21px, 2.35vw, 31px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.signal-detail {
  border-left: 1px solid var(--line);
  padding-left: 32px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.section {
  padding: 108px 5vw;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section h2,
.closing-panel h2,
.assessment-title h1,
.report-title h1 {
  margin: 0;
  font-size: clamp(35px, 4.5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.section-intro > p {
  max-width: 460px;
  margin: 0 0 5px auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.system-card {
  min-height: 184px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.system-card:nth-child(3n) {
  border-right: 0;
}

.system-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.system-number {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
}

.system-card h3 {
  max-width: 200px;
  margin: 28px 0 9px;
  font-size: 17px;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.system-card p {
  max-width: 240px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.closing-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 86px 5vw;
  color: var(--white);
  background: var(--ink);
}

.closing-panel h2 {
  max-width: 680px;
}

.closing-panel > div > p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: #c9d4cf;
  font-size: 15px;
  line-height: 1.55;
}

.closing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
}

.closing-stat {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 10px;
}

.closing-stat:last-child {
  border-right: 0;
}

.closing-stat strong {
  display: block;
  color: var(--lime);
  font-size: 28px;
  letter-spacing: -0.07em;
}

.closing-stat span {
  display: block;
  margin-top: 4px;
  color: #b9c8c2;
  font-size: 8px;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.closing-stats .button-primary {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 5vw;
  color: var(--muted);
  font-size: 10px;
}

.assessment-shell,
.report-shell {
  min-height: 100vh;
  background: var(--paper);
}

.assessment-header,
.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 5vw;
  border-bottom: 1px solid var(--line);
}

.assessment-step {
  min-width: 186px;
}

.assessment-step div span {
  white-space: nowrap;
}

.assessment-step div,
.report-header > span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assessment-progress {
  height: 4px;
  background: var(--line);
}

.assessment-progress span {
  display: block;
  height: 100%;
  background: var(--teal);
  transition: width 200ms ease;
}

.assessment-main,
.context-main {
  width: min(1120px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 72px 0 58px;
}

.assessment-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 52px;
  align-items: end;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.assessment-title h1 {
  max-width: 660px;
}

.assessment-title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.question-list {
  display: grid;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.question-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 448px;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.question-index {
  align-self: start;
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.question-copy {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.23;
}

.rating-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.rating-option {
  min-height: 62px;
  border: 1px solid var(--line);
  padding: 8px;
  color: var(--ink);
  background: var(--white);
  text-align: left;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.rating-option:hover {
  border-color: var(--teal);
}

.rating-option.selected {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.rating-value {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
}

.rating-option.selected .rating-value {
  color: var(--lime);
}

.rating-label {
  display: block;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.15;
}

.assessment-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
}

.validation-note {
  margin: 0;
  color: var(--danger);
  font-size: 12px;
}

.rating-guide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  border: 1px solid var(--line);
  background: var(--line);
}

.rating-guide div {
  padding: 16px;
  background: #f2f4ee;
}

.rating-guide strong {
  display: block;
  color: var(--teal);
  font-size: 12px;
}

.rating-guide span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.context-main {
  max-width: 850px;
}

.context-intro {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.context-list {
  display: grid;
  gap: 18px;
  margin-top: 45px;
}

.context-field {
  display: block;
}

.context-field span {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.context-field textarea {
  display: block;
  width: 100%;
  min-height: 108px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 15px;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  line-height: 1.5;
}

.context-field textarea::placeholder {
  color: #9aa59f;
}

.context-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
}

.lead-main {
  width: min(790px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 82px 0;
}

.lead-main h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(39px, 5vw, 66px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.lead-intro {
  max-width: 610px;
  margin: 22px 0 38px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.lead-form {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 33, 29, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-field {
  display: block;
}

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

.form-field span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.form-field input {
  display: block;
  width: 100%;
  height: 51px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 13px;
  color: var(--ink);
  background: #fbfcf9;
  font-size: 14px;
}

.form-field input::placeholder {
  color: #9aa59f;
}

.lead-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.lead-form-footer p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.report-hero {
  padding: 68px 5vw 58px;
  color: var(--white);
  background: var(--ink);
}

.report-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 60px;
  align-items: end;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.report-title h1 {
  max-width: 650px;
}

.report-primary-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.report-primary-card > span {
  display: block;
  color: var(--lime);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-primary-card h2 {
  margin: 12px 0 8px;
  color: var(--white);
  font-size: 29px;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.report-primary-card p {
  margin: 0;
  color: #c1cdc7;
  font-size: 12px;
  line-height: 1.5;
}

.report-main {
  width: min(1120px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 72px 0 84px;
}

.report-section {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 62px;
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
}

.report-section:first-child {
  padding-top: 0;
}

.report-section h2 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.report-section .section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.report-section p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.score-bars {
  gap: 21px;
}

.score-row {
  grid-template-columns: minmax(150px, 0.8fr) minmax(150px, 1.3fr) 70px;
  gap: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.score-row .bar-track {
  height: 6px;
  background: #d9ded6;
}

.score-row .bar-fill {
  background: var(--teal);
}

.score-row.primary .bar-fill {
  background: var(--lime-deep);
}

.score-meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  text-align: right;
}

.score-row.primary .score-meta {
  color: var(--teal);
  font-weight: 850;
}

.profile-note {
  margin-top: 32px !important;
  padding: 16px 18px;
  border-left: 3px solid var(--lime-deep);
  background: #eef2e9;
}

.cascade-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.cascade-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.045em;
}

.cascade-card > p {
  margin-top: 10px;
}

.effect-list,
.workshop-list {
  display: grid;
  gap: 13px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.effect-list li,
.workshop-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
}

.effect-list li::before,
.workshop-list li::before {
  position: absolute;
  left: 0;
  content: "+";
  color: var(--teal);
  font-weight: 850;
}

.hypothesis-note {
  margin-top: 28px !important;
  padding: 16px 18px;
  border: 1px solid var(--line);
  color: var(--muted) !important;
  background: #f5f6f2;
  font-size: 12px !important;
}

.next-step-card {
  padding: 30px;
  color: var(--white);
  background: var(--ink);
}

.next-step-card h3 {
  margin: 0;
  color: var(--lime);
  font-size: 24px;
  letter-spacing: -0.055em;
  line-height: 1;
}

.next-step-card p {
  margin-top: 15px;
  color: #ccd7d1;
}

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

@media (max-width: 900px) {
  .hero,
  .closing-panel,
  .report-title {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 48px;
    padding-top: 66px;
  }

  .sample-card {
    max-width: none;
    justify-self: stretch;
  }

  .signal-band,
  .section-intro,
  .assessment-title,
  .report-section {
    grid-template-columns: 1fr;
  }

  .signal-band {
    gap: 20px;
  }

  .signal-detail {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 20px;
    padding-left: 0;
  }

  .section-intro > p {
    margin: 0;
  }

  .report-title {
    gap: 34px;
  }

  .report-section {
    gap: 30px;
  }

  .question-card {
    grid-template-columns: 32px 1fr;
  }

  .rating-options {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .site-header,
  .assessment-header,
  .report-header {
    min-height: 65px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .header-action {
    font-size: 10px;
  }

  .hero,
  .section,
  .closing-panel,
  .report-hero {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
    padding-bottom: 48px;
    border-radius: 0 0 20px 20px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-summary {
    font-size: 15px;
  }

  .sample-card {
    padding: 19px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .system-card,
  .system-card:nth-child(3n),
  .system-card:nth-last-child(-n + 3) {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .system-card:last-child {
    border-bottom: 0;
  }

  .closing-panel {
    gap: 38px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .site-footer {
    flex-direction: column;
    padding: 25px 24px;
  }

  .assessment-main,
  .context-main,
  .report-main,
  .lead-main {
    width: min(100% - 48px, 1120px);
  }

  .assessment-main,
  .context-main,
  .lead-main {
    padding-top: 48px;
  }

  .assessment-step {
    min-width: 112px;
  }

  .assessment-title h1,
  .report-title h1 {
    font-size: 43px;
  }

  .question-card {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 24px 0;
  }

  .question-index,
  .rating-options {
    grid-column: 1;
  }

  .rating-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .rating-option {
    min-height: 57px;
  }

  .assessment-actions,
  .context-actions,
  .lead-form-footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .assessment-actions .button-primary,
  .assessment-actions .button-secondary,
  .context-actions .button-primary,
  .context-actions .button-secondary,
  .lead-form-footer .button-primary {
    width: 100%;
  }

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

  .form-field.full-width {
    grid-column: auto;
  }

  .rating-guide {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-hero {
    padding-top: 48px;
    padding-bottom: 44px;
  }

  .score-row {
    grid-template-columns: 1fr 48px;
    gap: 9px 15px;
  }

  .score-row .bar-track {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .score-meta {
    grid-column: 2;
    grid-row: 1;
  }
}

@media print {
  .site-header,
  .report-header,
  .report-actions,
  .button-primary,
  .button-secondary,
  .quiet-button {
    display: none !important;
  }

  body,
  .report-shell {
    background: var(--white);
  }

  .report-hero {
    padding: 28px 0;
  }

  .report-main {
    width: 100%;
    padding: 32px 0;
  }

  .report-section {
    break-inside: avoid;
    grid-template-columns: 210px 1fr;
    padding: 28px 0;
  }
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.howto-rating {
  padding: 22px 24px;
  background: var(--white);
}

.howto-rating strong {
  display: block;
  color: var(--teal);
  font-size: 21px;
  font-weight: 850;
}

.howto-rating span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.candid-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.report-section div > p + p {
  margin-top: 14px;
}

.score-interpretation {
  grid-column: 2;
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.cascade-divider {
  margin: 30px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.workshop-system {
  margin: 28px 0 0;
  font-size: 17px;
  letter-spacing: -0.045em;
}

.workshop-system:first-child {
  margin-top: 0;
}

.next-step-card .email-status {
  margin-top: 16px;
  color: var(--lime);
  font-size: 12px;
}

.next-step-card .email-status.failed {
  color: #ccd7d1;
}

@media (max-width: 620px) {
  .howto-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .score-interpretation {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 0;
  }
}
