:root {
  --ink: #102238;
  --ink-strong: #07182a;
  --muted: #526173;
  --paper: #ffffff;
  --paper-warm: #f7f7f3;
  --paper-blue: #eef4f8;
  --line: #cfd8df;
  --line-dark: #9eacb8;
  --blue: #145fc7;
  --green: #117d69;
  --purple: #6551a8;
  --red: #b54b3f;
  --white: #ffffff;
  --radius: 4px;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--white);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 20;
  padding: 9px 13px;
  border-radius: var(--radius);
  background: var(--ink-strong);
  color: var(--white);
}

.skip-link:focus {
  top: 12px;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: min(100%, var(--max));
  min-height: 70px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 245px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  border-bottom: 4px solid var(--green);
  background: var(--ink-strong);
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 14px;
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
  color: #2d4055;
  font-size: 13px;
  font-weight: 700;
}

.nav-links > a:not(.nav-cta) {
  padding: 8px 0 6px;
  border-bottom: 2px solid transparent;
}

.nav-links > a:not(.nav-cta):hover,
.nav-links > a[aria-current="page"] {
  color: var(--blue);
  border-bottom-color: currentColor;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: var(--radius);
  background: var(--ink-strong);
  color: var(--white);
}

.nav-cta:hover {
  background: var(--blue);
}

.nav-cta svg,
.button svg {
  width: 16px;
  height: 16px;
}

.nav-cta path,
.button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 900px;
}

.section-pad {
  padding: 82px 0;
}

.compact-top {
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 66px;
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.12;
}

h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
}

.hero {
  padding: 78px 0 0;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 60px;
  align-items: end;
  padding-bottom: 54px;
}

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

.hero-copy h1 {
  max-width: 760px;
}

.hero-summary {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-side {
  padding: 0 0 4px 26px;
  border-left: 3px solid var(--green);
}

.hero-side strong {
  display: block;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.25;
}

.hero-side p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--blue);
  color: var(--white);
}

.button.primary:hover {
  background: var(--ink-strong);
}

.button.secondary {
  border-color: var(--line-dark);
  background: var(--paper);
  color: var(--ink);
}

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

.report-ledger {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  padding: 0;
  border-top: 1px solid #29405a;
  background: var(--ink-strong);
  color: var(--white);
}

.report-ledger > div {
  min-height: 108px;
  padding: 22px 24px;
  border-right: 1px solid #29405a;
}

.report-ledger > div:last-child {
  border-right: 0;
}

.report-ledger span,
.hero-facts dt,
.experience-ledger dt,
.case-sidebar dt,
.result-strip span,
.metric-grid span,
.quote-logic span,
.contact-method span {
  display: block;
  color: #a8b6c5;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.report-ledger strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
}

.report-ledger .ledger-title strong {
  font-family: var(--serif);
  font-size: 23px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.plain-text p,
.section-heading p,
.sample-copy p,
.quote-grid p,
.value-calc p,
.contact-copy p,
.legal-copy p,
.case-content p,
.credibility-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  margin-top: 40px;
  border-top: 2px solid var(--ink);
}

.service-card {
  display: grid;
  grid-template-columns: 48px 250px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.service-card svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.service-card:nth-child(2) svg {
  color: var(--green);
}

.service-card:nth-child(3) svg {
  color: var(--purple);
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.process-band {
  background: var(--ink-strong);
  color: var(--white);
}

.process-band .eyebrow {
  color: #6dd7c2;
}

.process-band .sample-copy p,
.process-band .plain-text p {
  color: #c1cad3;
}

.process-band .before-after h3,
.process-band .before-after strong {
  color: var(--ink);
}

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

.section-heading p {
  margin-top: 16px;
  color: #c1cad3;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid #37506b;
  border-bottom: 1px solid #37506b;
}

.process-list article {
  padding: 27px 22px 30px 0;
  border-right: 1px solid #37506b;
}

.process-list article + article {
  padding-left: 22px;
}

.process-list article:last-child {
  border-right: 0;
}

.process-list span {
  color: #6dd7c2;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.process-list h3 {
  margin-top: 16px;
}

.process-list p {
  margin: 10px 0 0;
  color: #bac5d0;
  font-size: 14px;
}

.sample-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  gap: 60px;
  align-items: start;
}

.check-list,
.feature-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #33465a;
}

.check-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 2px;
  background: var(--green);
}

.text-link {
  display: inline-block;
  margin-top: 25px;
  padding-bottom: 2px;
  border-bottom: 2px solid currentColor;
  color: var(--blue);
  font-weight: 800;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.before-after > div {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 26px;
  border-right: 1px solid var(--line);
  background: var(--paper-warm);
}

.before-after > div:last-child {
  border-right: 0;
  background: var(--paper-blue);
}

.before-after p {
  color: var(--muted);
}

.before-after strong {
  font-family: var(--serif);
  font-size: 27px;
}

.credibility-band {
  background: #edf3ef;
  border-top: 1px solid #cedbd4;
  border-bottom: 1px solid #cedbd4;
}

.credibility-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.credibility-copy h2 {
  max-width: 570px;
}

.credibility-copy p {
  margin-top: 20px;
  max-width: 620px;
}

.experience-ledger {
  margin: 0;
  border-top: 2px solid var(--green);
}

.experience-ledger > div {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #c5d4cc;
}

.experience-ledger dt {
  color: #436359;
}

.experience-ledger dd {
  margin: 0;
  font-weight: 700;
}

.quote-band {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-grid,
.value-calc {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.quote-logic {
  border-top: 2px solid var(--ink);
}

.quote-logic > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.quote-logic span {
  color: var(--muted);
}

.quote-logic strong {
  font-family: var(--serif);
  font-size: 20px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 35px;
  align-items: center;
  padding: 34px 0;
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.cta-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

.page-hero {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: 52px;
  line-height: 1.05;
}

.page-hero p {
  max-width: 730px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.page-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.two-column,
.contact-grid,
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-block {
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}

.content-block.tinted {
  border-top-color: var(--green);
}

.offer-table {
  margin-top: 38px;
  border-top: 2px solid var(--white);
}

.offer-table article {
  display: grid;
  grid-template-columns: 55px 220px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid #37506b;
}

.offer-table article > span {
  color: #6dd7c2;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.offer-table p {
  margin: 0;
  color: #bac5d0;
  font-size: 14px;
}

.offer-table strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  white-space: nowrap;
}

.pricing-factors {
  border-top: 2px solid var(--purple);
}

.pricing-factors div {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-factors strong {
  display: block;
}

.pricing-factors span {
  color: var(--muted);
  font-size: 14px;
}

.case-grid {
  grid-template-columns: 285px minmax(0, 1fr);
}

.case-sidebar {
  position: sticky;
  top: 96px;
  padding-top: 20px;
  border-top: 3px solid var(--purple);
}

.case-sidebar dl {
  margin: 20px 0 0;
}

.case-sidebar dl > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.case-sidebar dt {
  color: var(--muted);
}

.case-sidebar dd {
  margin: 4px 0 0;
  font-weight: 750;
}

.case-content {
  display: grid;
  gap: 28px;
}

.case-content > h2 {
  margin-top: 16px;
}

.sample-signal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.sample-signal div {
  padding: 18px 18px 18px 0;
  border-right: 1px solid var(--line);
}

.sample-signal div + div {
  padding-left: 18px;
}

.sample-signal div:last-child {
  border-right: 0;
}

.sample-signal span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.sample-signal strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 24px;
}

.workflow-map {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
}

.workflow-row {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

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

.workflow-label {
  padding: 18px;
  background: var(--paper-warm);
  border-right: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-steps span {
  position: relative;
  padding: 18px 30px 18px 16px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.workflow-steps span:last-child {
  border-right: 0;
}

.workflow-steps span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: translateY(-50%) rotate(45deg);
}

.sample-table,
.findings-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  font-size: 13px;
}

.sample-table [role="row"],
.findings-table [role="row"] {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.5fr;
}

.sample-table span,
.findings-table span {
  padding: 12px 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sample-table span:last-child,
.findings-table span:last-child {
  border-right: 0;
}

.sample-table [role="row"]:last-child span,
.findings-table [role="row"]:last-child span {
  border-bottom: 0;
}

.table-head {
  background: var(--ink-strong);
  color: var(--white);
  font-weight: 800;
}

.qa-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--green);
}

.qa-checklist div {
  padding: 15px 18px 15px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.qa-checklist div:nth-child(even) {
  border-right: 0;
}

.qa-checklist div::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 17px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

.result-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--purple);
  border-bottom: 1px solid var(--line);
}

.result-strip > div {
  padding: 18px 18px 18px 0;
  border-right: 1px solid var(--line);
}

.result-strip > div + div {
  padding-left: 18px;
}

.result-strip > div:last-child {
  border-right: 0;
}

.result-strip span {
  color: var(--muted);
}

.result-strip strong {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 20px;
}

.note {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--purple);
  background: #f3f0f8;
  color: var(--muted);
  font-size: 14px;
}

.workbook-preview {
  margin: 0;
  border-top: 3px solid var(--green);
}

.workbook-preview img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-top: 0;
}

.workbook-preview figcaption {
  padding: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}

.download-row span {
  color: var(--muted);
  font-size: 13px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
  gap: 70px;
}

.contact-copy {
  padding-right: 10px;
}

.contact-steps {
  counter-reset: contact-step;
  margin: 25px 0 0;
  border-top: 2px solid var(--ink);
}

.contact-steps div {
  counter-increment: contact-step;
  position: relative;
  padding: 18px 0 18px 42px;
  border-bottom: 1px solid var(--line);
}

.contact-steps div::before {
  content: "0" counter(contact-step);
  position: absolute;
  left: 0;
  top: 20px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.contact-steps strong {
  display: block;
}

.contact-steps span {
  color: var(--muted);
  font-size: 14px;
}

.contact-method {
  margin-top: 28px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.contact-method span {
  color: var(--muted);
}

.contact-method a {
  display: inline-block;
  margin-top: 7px;
  color: var(--blue);
  font-weight: 800;
}

.contact-method p {
  margin-top: 7px;
}

.form-shell {
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  background: var(--paper);
}

.assessment-form {
  display: grid;
  gap: 17px;
}

.form-heading h2,
.form-heading p {
  margin: 0;
}

.form-heading p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.form-grid {
  display: grid;
  gap: 15px;
}

.form-grid.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.assessment-form label > span,
.assessment-form legend {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.assessment-form input,
.assessment-form select,
.assessment-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid #b8c6d1;
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
}

.assessment-form textarea {
  min-height: 120px;
  resize: vertical;
}

.assessment-form input:focus,
.assessment-form select:focus,
.assessment-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--white);
}

.form-consent,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-consent a,
.form-fallback a,
.assessment-form a {
  color: var(--blue);
  font-weight: 800;
}

.form-actions {
  display: grid;
  gap: 9px;
}

.form-actions .button {
  justify-self: start;
  border: 0;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status[data-state="error"] {
  color: #9f3028;
}

.form-status[data-state="error"] a {
  color: currentColor;
  text-decoration: underline;
}

.form-status[data-state="success"] {
  color: #08705d;
  font-weight: 750;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.honeypot input {
  pointer-events: none;
}

.form-fallback {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 32px;
  font-size: 28px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  margin-top: 10px;
}

.legal-copy a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  padding: 44px 0;
  background: var(--ink-strong);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  color: #b8c4cf;
}

.footer-grid strong {
  display: block;
  margin-bottom: 8px;
}

.footer-grid span {
  display: block;
  margin-bottom: 9px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid .footer-address-label {
  margin-top: 18px;
}

.footer-grid a {
  display: block;
  margin: 6px 0;
}

.footer-grid a:hover {
  color: var(--white);
}

.confirmation-actions {
  margin-top: 34px;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 16px 35px rgba(7, 24, 42, 0.15);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero-intro,
  .split-section,
  .sample-showcase,
  .credibility-grid,
  .quote-grid,
  .value-calc,
  .two-column,
  .contact-grid,
  .case-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    max-width: 560px;
  }

  .report-ledger {
    grid-template-columns: 1fr 1fr;
  }

  .report-ledger > div:nth-child(2) {
    border-right: 0;
  }

  .report-ledger > div:nth-child(-n + 2) {
    border-bottom: 1px solid #29405a;
  }

  .service-card {
    grid-template-columns: 42px 220px minmax(0, 1fr);
  }

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

  .process-list article:nth-child(2) {
    border-right: 0;
  }

  .process-list article:nth-child(-n + 2) {
    border-bottom: 1px solid #37506b;
  }

  .offer-table article {
    grid-template-columns: 45px 180px minmax(0, 1fr);
  }

  .offer-table strong {
    grid-column: 2 / -1;
  }

  .case-sidebar {
    position: static;
  }

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

@media (max-width: 640px) {
  .nav-shell {
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy span {
    font-size: 11px;
  }

  .container {
    padding: 0 18px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .compact-top {
    padding-top: 27px;
  }

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

  h2 {
    font-size: 32px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-intro {
    gap: 35px;
    padding-bottom: 42px;
  }

  .hero-summary,
  .page-hero p {
    font-size: 16px;
  }

  .report-ledger,
  .sample-signal,
  .result-strip {
    grid-template-columns: 1fr;
  }

  .report-ledger > div,
  .report-ledger > div:nth-child(2),
  .sample-signal div,
  .result-strip > div {
    border-right: 0;
    border-bottom: 1px solid #29405a;
  }

  .sample-signal div,
  .sample-signal div + div,
  .result-strip > div,
  .result-strip > div + div {
    padding: 16px 0;
    border-bottom-color: var(--line);
  }

  .service-card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 13px;
  }

  .service-card p {
    grid-column: 2;
  }

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

  .process-list article,
  .process-list article + article,
  .process-list article:nth-child(2) {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid #37506b;
  }

  .before-after,
  .qa-checklist,
  .form-grid.two-columns {
    grid-template-columns: 1fr;
  }

  .before-after > div,
  .before-after > div:last-child {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .experience-ledger > div,
  .offer-table article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .offer-table strong {
    grid-column: auto;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .workflow-row {
    grid-template-columns: 1fr;
  }

  .workflow-label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-steps span:not(:last-child)::after {
    right: 16px;
    transform: translateY(-65%) rotate(135deg);
  }

  .sample-table,
  .findings-table {
    overflow-x: auto;
  }

  .sample-table [role="row"],
  .findings-table [role="row"] {
    min-width: 620px;
  }

  .qa-checklist div,
  .qa-checklist div:nth-child(even) {
    border-right: 0;
  }

  .contact-grid {
    gap: 42px;
  }

  .form-shell {
    padding: 21px 18px;
  }
}

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