:root {
  --ink: #17231f;
  --ink-soft: #43504b;
  --ink-faint: #66736e;
  --paper: #fbfcfa;
  --white: #ffffff;
  --line: #dce3df;
  --line-strong: #c7d1cc;
  --tint: #f0f5f2;
  --tint-warm: #f6f2e9;
  --green: #1f5b48;
  --green-dark: #163f33;
  --green-light: #dcebe4;
  --navy: #182b30;
  --amber: #8a5b16;
  --amber-bg: #f7ecd8;
  --red: #a13737;
  --red-bg: #fff1ef;
  --blue: #315f78;
  --blue-bg: #eaf2f6;
  --shadow-sm: 0 1px 2px rgb(23 35 31 / 5%), 0 5px 18px rgb(23 35 31 / 5%);
  --shadow-md: 0 18px 55px rgb(23 35 31 / 10%);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shell: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
dl {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  font-weight: 670;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.05rem);
  font-weight: 650;
}

h3 {
  font-size: 1.14rem;
}

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-dark);
}

:focus-visible {
  outline: 3px solid #edaa3a;
  outline-offset: 3px;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: 96px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

.skip-link:focus {
  color: var(--white);
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgb(251 252 250 / 94%);
  backdrop-filter: blur(12px);
}

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

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.wordmark:hover {
  color: var(--ink);
}

.wordmark-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.wordmark strong,
.wordmark small {
  display: block;
  line-height: 1.1;
}

.wordmark strong {
  font-size: 0.97rem;
}

.wordmark small {
  margin-top: 4px;
  color: var(--ink-faint);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header nav a {
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 590;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--green);
}

.site-header nav .nav-cta {
  padding: 9px 15px;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius-sm);
}

.site-header nav .nav-cta:hover {
  color: var(--white);
  background: var(--green-dark);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  padding-block: 88px 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgb(31 91 72 / 11%), transparent 32%),
    linear-gradient(180deg, var(--paper), #f7faf8);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.hero-copy {
  max-width: 735px;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 680;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 7px 22px rgb(31 91 72 / 18%);
}

.button-primary:hover {
  color: var(--white);
  background: var(--green-dark);
}

.button-secondary {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  color: var(--green-dark);
  border-color: var(--green);
}

.text-link {
  font-size: 0.94rem;
  font-weight: 650;
}

.quiet-note {
  max-width: 680px;
  margin: 26px 0 0;
  padding-left: 14px;
  color: var(--ink-faint);
  border-left: 2px solid var(--line-strong);
  font-size: 0.86rem;
}

.offer-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.offer-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.offer-topline .eyebrow {
  margin: 0;
}

.availability {
  padding: 5px 8px;
  color: var(--green-dark);
  background: var(--green-light);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 720;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.offer-card h2 {
  margin: 24px 0 8px;
}

.price {
  font-size: 3.35rem;
}

.price-unit {
  color: var(--ink-faint);
  font-size: 0.98rem;
  font-weight: 550;
  letter-spacing: 0;
}

.offer-card > p {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 0.89rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 2px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}

.offer-callout {
  padding: 15px;
  background: var(--tint-warm);
  border-radius: var(--radius-sm);
}

.offer-callout strong,
.offer-callout span {
  display: block;
}

.offer-callout strong {
  margin-bottom: 3px;
  color: #624111;
  font-size: 0.88rem;
}

.offer-callout span {
  color: #786241;
  font-size: 0.78rem;
  line-height: 1.5;
}

.offer-card .offer-footnote {
  margin: 15px 0 0;
  font-size: 0.76rem;
}

.fit-signal {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-grid p {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 20px 34px;
  border-right: 1px solid var(--line);
}

.signal-grid p:first-child {
  border-left: 1px solid var(--line);
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  margin-bottom: 3px;
  color: var(--green);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-grid span {
  color: var(--ink-soft);
  font-size: 0.89rem;
  font-weight: 590;
}

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

.section-heading > p:last-child {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.narrow-heading {
  max-width: 720px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 285px;
  padding: 28px 28px 24px;
  border-right: 1px solid var(--line);
}

.process-grid li:first-child {
  border-left: 1px solid var(--line);
}

.step-number {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.process-grid h3 {
  margin-bottom: 12px;
}

.process-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.89rem;
}

.section-tint {
  background: var(--tint);
  border-block: 1px solid var(--line);
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(52px, 8vw, 105px);
  align-items: center;
}

.report-copy p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.report-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  background: #f8faf9;
  border-bottom: 1px solid var(--line);
}

.report-card-header div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-card-header > span {
  color: var(--ink-faint);
  font-size: 0.75rem;
}

.sample-label {
  padding: 4px 7px;
  color: #654914;
  background: var(--amber-bg);
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.report-row {
  display: grid;
  grid-template-columns: 130px 1fr 1.15fr;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}

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

.report-row > span:last-child {
  color: var(--ink-faint);
}

.status {
  width: fit-content;
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-waiting {
  color: var(--blue);
  background: var(--blue-bg);
}

.status-action {
  color: var(--amber);
  background: var(--amber-bg);
}

.status-detail {
  color: #67536a;
  background: #f1ebf2;
}

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

.scope-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scope-in {
  background: #f2f8f4;
  border-top: 4px solid var(--green);
}

.scope-out {
  background: #faf7f5;
  border-top: 4px solid #876b5d;
}

.scope-kicker {
  margin-bottom: 13px;
  color: var(--ink-faint);
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scope-card h3 {
  max-width: 430px;
  margin-bottom: 24px;
  font-size: 1.35rem;
}

.scope-card ul,
.fit-guidance ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.scope-card li::marker,
.fit-guidance li::marker {
  color: var(--green);
}

.boundary-note {
  margin: 24px 0 0;
  padding: 16px 20px;
  color: var(--ink-soft);
  background: var(--tint-warm);
  border: 1px solid #e6dac1;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-dark .eyebrow {
  color: #90c9b4;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 90px;
}

.service-levels {
  margin: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.service-levels div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 35px;
  padding: 24px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.service-levels dt {
  color: #b7ddce;
  font-size: 0.83rem;
  font-weight: 720;
}

.service-levels dd {
  margin: 0;
  color: #d1ddda;
  font-size: 0.91rem;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(540px, 1.3fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 32px;
}

.form-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.fit-guidance {
  margin-top: 30px;
  padding: 24px;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fit-guidance h3 {
  margin-bottom: 16px;
}

.fit-guidance p {
  margin: 20px 0 0;
  padding-top: 17px;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.form-card {
  padding: clamp(25px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 21px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 680;
}

.field label span {
  color: var(--ink-faint);
  font-size: 0.72rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 16px;
}

input,
select {
  height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 112px;
  padding: 11px 12px;
  line-height: 1.5;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #9daaa4;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(31 91 72 / 12%);
  outline: 3px solid #edaa3a;
  outline-offset: 2px;
}

[aria-invalid="true"] {
  border-color: var(--red);
}

.field-hint,
.field-error {
  margin: 6px 0 0;
  font-size: 0.74rem;
  line-height: 1.4;
}

.field-hint {
  color: var(--ink-faint);
}

.field-error {
  color: var(--red);
  font-weight: 620;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  align-items: start;
  margin: 2px 0 8px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
}

.checkbox-field label {
  color: var(--ink-soft);
  font-size: 0.79rem;
}

.checkbox-error {
  margin: 0 0 18px 29px;
}

.button-full {
  width: 100%;
  margin-top: 20px;
}

.submit-note {
  margin: 12px 0 0;
  color: var(--ink-faint);
  font-size: 0.72rem;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.error-summary {
  margin-bottom: 26px;
  padding: 17px 19px;
  color: #7b2929;
  background: var(--red-bg);
  border: 1px solid #e9b8b3;
  border-radius: var(--radius-sm);
}

.error-summary h3 {
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.error-summary ul {
  margin: 0;
  padding-left: 19px;
  font-size: 0.79rem;
}

.error-summary a {
  color: inherit;
}

.faq-section {
  padding-top: 24px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 670;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 8px;
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  padding: 0 45px 22px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer {
  padding-block: 46px;
  color: #c9d7d2;
  background: #112026;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 60px;
  align-items: start;
}

.footer-name {
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 670;
}

.footer-note,
.copyright {
  margin: 0;
  color: #93a9a2;
  font-size: 0.76rem;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer a {
  color: #c9d7d2;
  font-size: 0.8rem;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 23px;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.copyright p {
  margin: 0 0 3px;
}

/* Sample report */
.report-page {
  background: #f6f8f6;
}

.sample-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  padding: 12px 16px;
  color: #654914;
  background: var(--amber-bg);
  border: 1px solid #e8d09f;
  border-radius: var(--radius-sm);
  font-size: 0.81rem;
}

.sample-banner strong {
  white-space: nowrap;
}

.report-page-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--ink);
}

.report-page-header h1 {
  margin-bottom: 8px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.report-page-header p:last-child {
  margin: 0;
  color: var(--ink-faint);
}

.report-meta {
  min-width: 280px;
  display: flex;
  flex-direction: column;
  padding-left: 22px;
  border-left: 1px solid var(--line-strong);
}

.report-meta span {
  color: var(--ink-faint);
  font-size: 0.72rem;
}

.report-meta strong {
  margin-block: 2px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 55px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.metric-grid div {
  padding: 23px;
  border-right: 1px solid var(--line);
}

.metric-grid div:last-child {
  border-right: 0;
}

.metric-grid dt {
  color: var(--ink-faint);
  font-size: 0.72rem;
}

.metric-grid dd {
  margin: 7px 0 0;
  font-size: 1.75rem;
  font-weight: 680;
  line-height: 1;
}

.sample-report-section {
  margin-bottom: 48px;
}

.report-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 18px;
}

.report-section-heading h2,
.sample-report-section h2 {
  margin-bottom: 0;
  font-size: 1.65rem;
}

.report-section-heading > p {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.8rem;
}

.table-scroll {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  min-width: 930px;
  border-collapse: collapse;
  font-size: 0.78rem;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

th,
td {
  padding: 16px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

thead th {
  color: var(--ink-faint);
  background: #f3f6f4;
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tbody th {
  min-width: 180px;
}

tbody th strong,
tbody th span,
tbody td strong,
tbody td > span:not(.status) {
  display: block;
}

tbody th span,
tbody td > span:not(.status) {
  margin-top: 3px;
  color: var(--ink-faint);
  font-size: 0.72rem;
  font-weight: 400;
}

.sample-bottom-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.sample-bottom-grid .sample-report-section {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.activity-list {
  margin: 21px 0 0;
}

.activity-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.83rem;
}

.activity-list div:last-child {
  border-bottom: 0;
}

.activity-list dd {
  margin: 0;
  font-weight: 680;
}

.report-boundary p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.report-boundary h2 + p {
  margin-top: 21px;
}

.sample-report-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}

.sample-report-footer p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

/* Legal and confirmation pages */
.legal-shell {
  max-width: 760px;
}

.legal-page header {
  margin-bottom: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-page h1,
.confirmation-card h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal-updated {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.83rem;
}

.legal-page h2 {
  margin: 36px 0 12px;
  font-size: 1.35rem;
}

.legal-page p {
  color: var(--ink-soft);
}

.confirmation-section {
  min-height: 70vh;
  display: grid;
  align-items: center;
}

.confirmation-card {
  max-width: 720px;
  padding: clamp(35px, 7vw, 70px);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.confirmation-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--green-dark);
  background: var(--green-light);
  border-radius: 50%;
  font-size: 1.35rem;
}

.confirmation-card > p:not(.eyebrow) {
  max-width: 570px;
  margin-inline: auto;
  color: var(--ink-soft);
}

.confirmation-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.visually-hidden {
  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;
}

@media (max-width: 950px) {
  .hero-grid,
  .report-layout,
  .form-layout,
  .service-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .offer-card {
    max-width: 620px;
  }

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

  .process-grid li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .report-layout {
    gap: 45px;
  }

  .form-intro {
    position: static;
    max-width: 720px;
  }

  .fit-guidance {
    max-width: 620px;
  }

  .service-grid,
  .faq-layout {
    gap: 35px;
  }

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

  .metric-grid div:nth-child(2) {
    border-right: 0;
  }

  .metric-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .section {
    padding-block: 68px;
  }

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

  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-block: 62px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-card {
    padding: 24px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
    padding-block: 7px;
  }

  .signal-grid p,
  .signal-grid p:first-child {
    min-height: 80px;
    padding: 15px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .signal-grid p:last-child {
    border-bottom: 0;
  }

  .process-grid,
  .scope-grid,
  .field-row,
  .sample-bottom-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li,
  .process-grid li:first-child,
  .process-grid li:nth-child(3) {
    min-height: auto;
    padding: 24px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .step-number {
    margin-bottom: 25px;
  }

  .report-card-header div {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .scope-card {
    padding: 26px;
  }

  .service-levels div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form-card {
    padding: 24px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: auto;
  }

  .sample-banner,
  .report-page-header,
  .report-section-heading,
  .sample-report-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .sample-banner strong {
    white-space: normal;
  }

  .report-meta {
    min-width: 0;
  }

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

  .metric-grid div,
  .metric-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-grid div:last-child {
    border-bottom: 0;
  }

  .confirmation-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .sample-report-footer .button {
    display: none;
  }

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

  .report-page {
    padding: 20px 0;
  }

  .shell {
    width: 100%;
  }

  .table-scroll {
    overflow: visible;
  }

  table {
    min-width: 0;
    font-size: 8pt;
  }

  .metric-grid,
  .sample-bottom-grid {
    break-inside: avoid;
  }
}
