:root {
  --warm-white: #faf8f1;
  --paper: #fefdf9;
  --graphite: #0e0f0f;
  --steel: #74808c;
  --steel-line: #c7c9c2;
  --signal: #77ff23;
  --muted-green: #2e6638;
  --error: #b3261e;
  --max: 1440px;
  --radius: 8px;
  --section-gap: 176px;
  --section-gap-tight: 120px;
  --section-internal-gap: 100px;
  --label-title-gap: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--graphite);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  border-bottom: 1px solid var(--steel-line);
  background: var(--warm-white);
}

.nav {
  max-width: var(--max);
  min-height: 88px;
  margin: 0 auto;
  padding: 0 clamp(32px, 8.333vw, 120px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 58px;
}

.brand {
  margin-right: auto;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid var(--steel-line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  border-color: var(--graphite);
  background: var(--graphite);
  color: var(--paper);
}

.button.signal {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--graphite);
}

.button.ghost-dark {
  border-color: var(--steel);
  color: var(--paper);
}

.button.full {
  width: 100%;
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(32px, 8.333vw, 120px) 120px;
}

.section {
  margin-top: var(--section-gap);
}

.section[id] {
  scroll-margin-top: var(--section-gap-tight);
}

.section-tight {
  margin-top: var(--section-internal-gap);
}

.hero {
  min-height: 892px;
  display: grid;
  grid-template-columns: 650px 440px;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
  padding-top: 102px;
}

.eyebrow {
  margin: 0 0 var(--label-title-gap);
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow.dark {
  display: inline-flex;
  min-height: 28px;
  padding: 0 18px;
  align-items: center;
  border-radius: 999px;
  background: var(--graphite);
  color: var(--paper);
  letter-spacing: 0.06em;
}

.label {
  margin: 0;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow:has(+ h1),
.eyebrow:has(+ h2),
.eyebrow:has(+ h3),
.label:has(+ h1),
.label:has(+ h2),
.label:has(+ h3) {
  margin-bottom: var(--label-title-gap) !important;
}

.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3,
.label + h1,
.label + h2,
.label + h3 {
  margin-top: 0 !important;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 69px;
  font-size: 78px;
  line-height: 87px;
  letter-spacing: 0;
}

h2 {
  max-width: 720px;
  margin-bottom: 34px;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 26px;
  line-height: 1.08;
}

.lead {
  max-width: 650px;
  margin-bottom: 45px;
  font-size: 21px;
  line-height: 29px;
}

.copy {
  max-width: 650px;
  color: #242625;
  font-size: 18px;
}

.support {
  max-width: 560px;
  color: var(--steel);
  font-weight: 700;
  font-size: 15px;
  line-height: 21px;
}

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

.decision-panel,
.graphite-panel {
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--paper);
}

.decision-panel {
  width: 440px;
  min-height: 450px;
  padding: 40px 52px 36px 58px;
}

.decision-title {
  margin-bottom: 44px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.decision-list {
  border-left: 4px solid var(--signal);
  padding-left: 28px;
}

.decision-step {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
  padding: 0 0 14px;
}

.decision-step + .decision-step {
  padding-top: 8px;
}

.decision-step:not(:last-child) .decision-copy {
  border-bottom: 1px solid #414747;
  padding-bottom: 22px;
}

.node {
  width: 28px;
  height: 28px;
  border: 1px solid var(--steel);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  font-size: 11px;
  font-weight: 900;
}

.node.signal {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--graphite);
}

.decision-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
}

.decision-copy span {
  color: var(--steel);
  font-size: 13px;
}

.decision-step.active strong,
.decision-step.active span {
  color: var(--signal);
}

.owned-next {
  display: none;
}

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

.paper-panel {
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 72px;
}

.services-home {
  margin-top: 0;
}

.services-home .eyebrow {
  margin-bottom: var(--label-title-gap);
}

.services-home h2 {
  max-width: 770px;
  margin-bottom: 42px;
}

.services-home .copy {
  max-width: 800px;
}

.services-home .service-grid {
  margin-top: 92px;
}

.paper-panel.compact {
  padding: 56px;
}

.problem-list {
  display: grid;
  gap: 24px;
}

.problem-item,
.card,
.field-card,
.fit-item {
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  background: var(--paper);
}

.problem-item {
  padding: 24px 30px;
  font-weight: 800;
}

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

.service-card {
  min-height: 232px;
  border-left: 4px solid var(--signal);
  padding: 30px 26px 30px 34px;
  display: flex;
  flex-direction: column;
}

.service-card .number {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card h3,
.card h3 {
  margin: 22px 0 24px;
  font-size: 22px;
}

.service-card > p:not(.outcome) {
  margin: 0 0 20px;
  line-height: 22px;
}

.outcome {
  color: var(--muted-green);
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.green-note {
  color: var(--muted-green);
  font-size: 13px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.service-card .outcome {
  margin: auto 0 0;
}

.method-strip {
  padding: 52px 54px;
}

.method-home {
  margin-top: 204px;
}

.flow-horizontal {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 46px;
}

.flow-item {
  display: grid;
  gap: 16px;
}

.flow-item small {
  color: var(--steel);
  font-size: 11px;
  line-height: 14px;
}

.flow-line {
  height: 2px;
  background: var(--steel-line);
}

.flow-item.active .flow-line {
  background: var(--signal);
}

.flow-item strong {
  min-height: 42px;
}

.proof-wrap {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 52px;
}

.proof-anchor {
  min-height: 510px;
  padding: 64px 52px;
}

.proof-anchor .eyebrow {
  margin-bottom: 76px;
}

.proof-anchor h3 {
  max-width: 250px;
  margin-bottom: 80px;
  color: var(--paper);
  font-size: 34px;
}

.proof-anchor p {
  color: #d7dad7;
  font-size: 18px;
}

.proof-line {
  width: 100%;
  height: 3px;
  margin-top: 84px;
  background: var(--signal);
}

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

.card {
  min-height: 160px;
  padding: 32px 34px;
}

.pattern-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 20px;
  align-items: start;
}

.pattern-card .number {
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 0.08em;
}

.pattern-card h3 {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 20px;
}

.pattern-card p {
  margin: 0;
  font-size: 14px;
  line-height: 19px;
}

.fit-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.fit-mobile-heading {
  display: none;
}

.fit-intro {
  min-height: 520px;
  padding-right: 50px;
  border-right: 1px solid var(--steel-line);
}

.fit-intro .label {
  color: var(--steel);
}

.fit-intro h2 {
  max-width: 310px;
  margin: var(--label-title-gap) 0 72px;
  font-size: 30px;
  line-height: 33px;
}

.fit-intro p:not(.label) {
  max-width: 310px;
  margin: 0;
  color: #242625;
  font-size: 17px;
  line-height: 24px;
}

.fit-column {
  border-top: 4px solid var(--steel-line);
  padding-top: 28px;
}

.fit-column.good {
  border-color: var(--signal);
}

.pill {
  display: inline-flex;
  min-height: 32px;
  padding: 0 20px;
  align-items: center;
  border: 1px solid var(--steel-line);
  border-radius: 999px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill.signal {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--graphite);
}

.fit-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.fit-item {
  min-height: 72px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
}

.fit-column.good .node {
  border-color: var(--muted-green);
  color: var(--muted-green);
}

.about-panel,
.final-panel {
  padding: 72px;
}

.about-panel {
  background: transparent;
  color: var(--graphite);
  display: grid;
  grid-template-columns: minmax(0, 680px) 440px;
  gap: 80px;
  padding: 0;
}

.final-panel h2 {
  color: var(--paper);
  font-size: 38px;
  line-height: 44px;
}

.final-panel p {
  color: #e6e8e5;
}

.about-panel h2 {
  color: var(--graphite);
}

.about-panel p {
  color: #242625;
}

.operating-block {
  min-height: 360px;
  padding: 56px 38px 36px 44px;
}

.process-device .label {
  color: #242625;
  opacity: 0.7;
}

.graphite-panel .label,
.process-device .label {
  color: var(--steel);
}

.process-rail {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 42px;
  margin-left: -42px;
}

.operating-block.process-device .label {
  display: none;
}

.operating-block.process-device .process-rail {
  margin-top: 0;
  margin-left: 0;
}

.operating-block.process-device .process-rail::before {
  left: 12px;
  top: 18px;
}

.operating-block.process-device .process-step {
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 18px;
  min-height: 60px;
}

.operating-block.process-device .process-step strong {
  grid-column: 2;
  display: flex;
  align-items: center;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.operating-block.process-device .process-step strong::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 24px;
  background: #52595e;
}

.operating-block.process-device .process-line {
  display: none;
}

.operating-block.process-device .process-step.active {
  min-height: 36px;
}

.operating-block.process-device .process-step.active strong {
  grid-column: 2;
  min-height: 36px;
  align-items: center;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.operating-block.process-device .process-step.active strong::after {
  display: none;
}

.process-rail::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: 15px;
  width: 2px;
  background: var(--steel-line);
  opacity: 0.7;
}

.graphite-panel .process-rail::before {
  background: var(--steel);
  opacity: 0.65;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 24px 118px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  min-height: 60px;
}

.process-step .node {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  background: var(--graphite);
  font-size: 8px;
}

.process-step .node.signal {
  background: var(--signal);
}

.process-step strong {
  grid-column: 2;
  color: var(--paper);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-line {
  grid-column: 3;
  width: 100%;
  height: 1px;
  background: #52595e;
}

.process-step.active {
  min-height: 32px;
}

.process-step.active strong {
  grid-column: 2 / 4;
  min-height: 32px;
  padding: 10px 18px;
  border-radius: 4px;
  background: var(--signal);
  color: var(--graphite);
}

.checklist {
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 16px;
}

.check-row {
  min-height: 64px;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: center;
  font-weight: 900;
}

.check-row.active {
  border-color: var(--signal);
  color: var(--signal);
}

.final-panel {
  min-height: 230px;
  padding: 38px 40px;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 420px);
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.final-panel .checklist {
  align-self: center;
}

.final-panel .button.signal {
  margin-top: 0;
}

.final-panel .actions {
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.page-hero {
  padding: 120px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 86px;
}

.page-hero .label {
  margin-bottom: var(--label-title-gap);
}

.page-hero.single {
  display: block;
}

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

.diagnostic-card,
.combine-card {
  min-height: 176px;
  padding: 34px;
}

.services-page > .paper-panel:not(.section) {
  margin-top: 0;
}

.services-page .page-hero {
  align-items: center;
}

.services-page .paper-panel.two-col {
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 72px;
  min-height: 470px;
}

.services-page .paper-panel.two-col > div:first-child {
  display: flex;
  flex-direction: column;
  min-height: 326px;
}

.services-page .paper-panel.two-col > div:first-child .actions {
  margin-top: auto;
}

.services-page .paper-panel h2 {
  max-width: 100%;
  font-size: 56px;
  line-height: 60px;
  overflow-wrap: break-word;
}

.services-page .diagnostic-grid,
.services-page .combine-grid {
  align-items: stretch;
}

.services-page .diagnostic-card,
.services-page .combine-card {
  min-height: 176px;
  padding: 30px 32px 28px;
  display: flex;
  flex-direction: column;
}

.services-page .diagnostic-card h3,
.services-page .combine-card h3 {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 24px;
}

.services-page .diagnostic-card .green-note,
.services-page .combine-card .green-note {
  margin: 0 0 18px;
}

.services-page .diagnostic-card p:last-child,
.services-page .combine-card p:last-child {
  margin-bottom: 0;
}

.services-page .service-layers-section > .label + .service-grid {
  margin-top: 72px;
}

.services-page .paper-panel.combine-section {
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: 78px;
  min-height: 530px;
  padding: 60px 72px 64px;
  align-items: start;
}

.services-page .combine-section > div:first-child {
  min-height: 380px;
}

.services-page .combine-section h2 {
  max-width: 490px;
  margin-bottom: 44px;
  font-size: 42px;
  line-height: 50px;
}

.services-page .combine-section .copy {
  max-width: 500px;
  font-size: 18px;
  line-height: 26px;
}

.services-page .combine-section .actions {
  margin-top: 50px;
}

.services-page .combine-section .combine-grid {
  gap: 40px 34px;
}

.services-page .combine-section .combine-card {
  min-height: 154px;
  padding: 26px 28px 24px;
}

.services-page .combine-section .combine-card h3 {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 22px;
}

.services-page .combine-section .combine-card p {
  font-size: 14px;
  line-height: 18px;
}

.services-page .combine-section .combine-card .green-note {
  margin-top: auto;
  margin-bottom: 0;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.services-page .combine-section .combine-card .green-note strong {
  font-weight: 900;
}

.dark-model {
  padding: 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}

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

.operating-model-panel {
  min-height: 420px;
  align-items: center;
}

.operating-model-panel .lead {
  max-width: 576px;
  margin: 0;
  font-size: 21px;
  line-height: 31px;
}

.operating-model-panel .model-steps {
  position: relative;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 36px;
}

.operating-model-panel .model-steps::before,
.operating-model-panel .model-steps::after {
  content: "";
  position: absolute;
  top: 14px;
  height: 2px;
  background: var(--steel);
}

.operating-model-panel .model-steps::before {
  left: calc(16.666% + 30px);
  right: calc(50% + 30px);
}

.operating-model-panel .model-steps::after {
  left: calc(50% + 30px);
  right: calc(16.666% + 30px);
  background: var(--signal);
}

.operating-model-panel .check-row {
  min-height: 74px;
  border: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  justify-items: center;
  text-align: center;
  background: transparent;
}

.operating-model-panel .check-row .node {
  background: var(--graphite);
  z-index: 1;
}

.operating-model-panel .check-row.active .node {
  background: var(--signal);
}

.operating-model-panel .check-row span:last-child {
  max-width: 190px;
  color: var(--paper);
  font-size: 14px;
  line-height: 17px;
}

.operating-model-panel .check-row.active span:last-child {
  color: var(--signal);
}

.scope-discipline-panel .model-steps {
  gap: 20px;
}

.scope-discipline-panel .check-row {
  min-height: 88px;
  padding: 16px 14px;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.scope-discipline-panel .check-row span:last-child {
  min-width: 0;
  font-size: 17px;
  line-height: 20px;
}

.output-list {
  display: grid;
  gap: 30px;
}

.output-card {
  min-height: 130px;
  padding: 28px 34px;
}

.output-card h3 {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 22px;
}

.output-card p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 20px;
}

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

.question-card {
  min-height: 220px;
  padding: 32px;
}

.status-grid {
  display: grid;
  gap: 34px;
}

.status-card {
  min-height: 128px;
  padding: 32px 38px;
}

.status-card.ready {
  border-color: var(--signal);
}

.method-page .paper-panel.two-col {
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 72px;
}

.method-page .page-hero {
  align-items: center;
}

.method-page .method-strip {
  min-height: 216px;
  padding: 34px;
}

.method-page .method-strip .flow-horizontal {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.method-page .method-strip .flow-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: 34px auto auto;
  column-gap: 16px;
  row-gap: 0;
  align-items: center;
}

.method-page .method-strip .flow-item .node {
  grid-column: 1;
  grid-row: 1;
  width: 34px;
  height: 34px;
  background: var(--paper);
  font-size: 11px;
}

.method-page .method-strip .flow-item .node.signal {
  background: var(--signal);
}

.method-page .method-strip .flow-item .flow-line {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 2px;
}

.method-page .method-strip .flow-item strong {
  grid-column: 1 / -1;
  grid-row: 2;
  min-height: 0;
  margin-top: 14px;
  font-size: 18px;
  line-height: 20px;
}

.method-page .method-strip .flow-item small {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 10px;
  color: var(--steel);
  font-size: 11px;
  line-height: 14px;
}

.method-page .method-strip .flow-item.active .flow-line {
  display: none;
}

.method-page .method-strip .flow-item.active .node {
  grid-column: 1;
}

.method-page .method-strip .flow-item:nth-child(4) .flow-line {
  background: var(--signal);
}

.method-page .method-strip .flow-item.active small {
  color: var(--muted-green);
}

.method-page .paper-panel h2 {
  max-width: 100%;
  font-size: 56px;
  line-height: 60px;
  overflow-wrap: break-word;
}

.contact-hero {
  padding-bottom: 40px;
}

.contact-page .contact-hero {
  align-items: center;
  padding-bottom: 52px;
}

.contact-intake-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 80px;
  align-items: start;
  margin-top: var(--section-gap-tight);
}

.intake-logic {
  min-height: 640px;
  padding: 34px;
}

.contact-page .intake-logic {
  min-height: 660px;
  padding: 42px 46px 48px;
}

.intake-logic h2 {
  margin: 0 0 18px;
  color: var(--paper);
  font-size: 34px;
  line-height: 40px;
}

.intake-logic p:not(.label) {
  max-width: 362px;
  color: #e6e8e5;
  font-size: 17px;
  line-height: 25px;
}

.intake-logic .process-rail {
  margin-top: 48px;
  margin-left: 0;
}

.intake-logic .process-rail::before {
  left: 13px;
  top: 31px;
  bottom: 31px;
}

.intake-logic .process-step {
  grid-template-columns: 26px minmax(0, 1fr);
  column-gap: 18px;
  min-height: 62px;
}

.intake-logic .process-step strong {
  letter-spacing: 0;
  text-transform: none;
  font-size: 15px;
  line-height: 18px;
}

.intake-logic .process-step.active strong {
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--signal);
}

.form-intro {
  max-width: 620px;
  margin-bottom: 54px;
}

.form-intro h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 50px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.contact-details-panel {
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 34px;
}

.contact-details-panel + .question-grid.section-tight {
  margin-top: 72px;
}

.contact-detail-field label {
  display: block;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 900;
}

.contact-detail-field input {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--steel-line);
  border-radius: 4px;
  background: var(--warm-white);
  color: var(--graphite);
  padding: 16px 18px;
  font-size: 14px;
  line-height: 20px;
  outline: none;
}

.contact-detail-field input:focus {
  border-color: var(--graphite);
}

.contact-detail-field.invalid input {
  border-color: var(--error);
}

.field-card {
  padding: 28px 28px 36px;
}

.field-card.wide {
  min-height: 254px;
}

.contact-page .field-card.wide {
  min-height: 276px;
  padding: 32px 34px 40px;
}

.field-card label {
  display: block;
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 900;
}

.field-card input,
.field-card textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--steel-line);
  border-radius: 4px;
  background: var(--warm-white);
  color: var(--graphite);
  padding: 16px 18px;
  font-size: 14px;
  line-height: 20px;
  outline: none;
}

.field-card textarea {
  min-height: 128px;
  resize: vertical;
}

.field-card input:focus,
.field-card textarea:focus {
  border-color: var(--graphite);
}

.field-error {
  margin: 12px 0 0;
  color: var(--error);
  font-size: 13px;
  font-weight: 800;
}

.field-card.invalid input,
.field-card.invalid textarea {
  border-color: var(--error);
}

.error-summary,
.submit-error {
  display: none;
  margin-bottom: 30px;
  border: 1px solid var(--error);
  border-radius: var(--radius);
  background: #fff8f6;
  color: var(--error);
  padding: 22px 26px;
  font-weight: 800;
}

.error-summary.visible,
.submit-error.visible {
  display: block;
}

.submit-panel {
  margin-top: 58px;
  padding: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.submit-panel h2 {
  margin-bottom: 22px;
  color: var(--paper);
}

.submit-attached {
  margin-top: 58px;
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 42px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 46px;
  align-items: center;
}

.contact-page .submit-attached {
  margin-top: 70px;
  padding: 46px 50px;
}

.submit-attached h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 31px;
}

.submit-attached p:not(.label) {
  margin: 0;
  color: #242625;
  font-size: 14px;
  line-height: 19px;
}

.after-send {
  margin-top: var(--section-gap);
}

.after-send.graphite-panel {
  padding: 52px 66px;
}

.after-send .label {
  color: var(--steel);
}

.after-send-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 420px);
  gap: 78px;
  margin-top: 48px;
}

.after-send h2 {
  margin-bottom: 26px;
  color: var(--paper);
  font-size: 36px;
  line-height: 43px;
}

.after-send p {
  color: #e6e8e5;
  font-size: 16px;
  line-height: 24px;
}

.mini-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.mini-list div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.mini-list span:last-child {
  color: var(--paper);
  font-size: 14px;
  line-height: 18px;
}

.outcome-stack {
  display: grid;
  gap: 18px;
}

.outcome-stack article {
  border: 1px solid #52595e;
  border-radius: var(--radius);
  padding: 20px 24px;
}

.outcome-stack h3 {
  margin: 0 0 8px;
  color: var(--paper);
  font-size: 14px;
  line-height: 17px;
}

.outcome-stack p {
  margin: 0;
  color: var(--steel);
  font-size: 12px;
  line-height: 15px;
}

.thank-next {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 420px);
  gap: 90px;
}

.thank-next h2 {
  margin: 42px 0 54px;
  font-size: 42px;
  line-height: 48px;
}

.mini-list.light span:last-child {
  color: var(--graphite);
  font-size: 18px;
  line-height: 24px;
}

.outcome-stack.light article {
  border-color: var(--steel-line);
  background: var(--paper);
}

.outcome-stack.light h3 {
  color: var(--graphite);
}

.technical-note {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 84px 0 0;
  color: var(--steel);
  font-size: 16px;
  line-height: 28px;
}

.error-state-section {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 560px);
  gap: 90px;
  align-items: start;
}

.error-demo {
  display: grid;
  gap: 28px;
}

.error-summary.visible strong,
.error-summary.visible span {
  display: block;
}

.error-summary.visible strong {
  margin-bottom: 8px;
}

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

.submit-error-demo {
  padding: 48px;
}

.submit-error-demo p {
  margin: 34px 0 0;
  color: var(--steel);
  font-size: 14px;
  line-height: 19px;
}

.status-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer {
  border-top: 1px solid var(--steel-line);
  padding: 48px 24px;
  color: var(--steel);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 861px) {
  body {
    overflow-x: hidden;
  }

  .home-page {
    position: relative;
    width: 1440px;
    max-width: 1440px;
    height: 6700px;
    padding: 0;
    overflow: hidden;
  }

  .home-page > section {
    position: absolute;
    margin: 0;
  }

  .home-page .hero {
    top: 0;
    left: 0;
    width: 1440px;
    height: 892px;
    min-height: 0;
    display: block;
    padding: 0;
  }

  .home-page .hero > div:first-child {
    position: absolute;
    left: 120px;
    top: 102px;
    width: 650px;
  }

  .home-page .hero h1 {
    width: 650px;
    height: 261px;
    margin: 0 0 69px;
    font-size: 78px;
    line-height: 87px;
  }

  .home-page .hero .lead {
    width: 620px;
    margin: 0 0 29px;
    font-size: 21px;
    line-height: 29px;
  }

  .home-page .hero .support {
    width: 560px;
    margin: 0 0 29px;
    font-size: 15px;
    line-height: 21px;
  }

  .home-page .hero .actions {
    gap: 20px;
  }

  .home-page .hero .button {
    min-height: 44px;
    padding: 0;
    font-size: 12px;
  }

  .home-page .hero .button.primary {
    width: 188px;
  }

  .home-page .hero .button:not(.primary) {
    width: 182px;
  }

  .home-page .hero .decision-panel {
    position: absolute;
    left: 785px;
    top: 78px;
    width: 520px;
    height: 555px;
    min-height: 0;
    padding: 0;
  }

  .home-page .hero .decision-title {
    position: absolute;
    left: 78px;
    top: 62px;
    margin: 0;
    color: #74808c;
    font-size: 14px;
    line-height: 16px;
    font-weight: 900;
    letter-spacing: 0.18em;
  }

  .home-page .hero .decision-list {
    position: absolute;
    left: 42px;
    top: 82px;
    width: 430px;
    height: 432px;
    padding: 0;
    border-left: 5px solid var(--signal);
  }

  .home-page .hero .decision-step {
    position: absolute;
    left: 24px;
    width: 420px;
    height: 74px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 30px;
    padding: 0;
  }

  .home-page .hero .decision-step:nth-child(1) {
    top: 58px;
  }

  .home-page .hero .decision-step:nth-child(2) {
    top: 133px;
  }

  .home-page .hero .decision-step:nth-child(3) {
    top: 208px;
  }

  .home-page .hero .decision-step:nth-child(4) {
    top: 283px;
  }

  .home-page .hero .decision-step:nth-child(5) {
    top: 358px;
  }

  .home-page .hero .decision-step .node {
    width: 30px;
    height: 30px;
    background: var(--graphite);
    font-size: 11px;
    line-height: 11px;
  }

  .home-page .hero .decision-copy {
    width: 376px;
    min-width: 0;
  }

  .home-page .hero .decision-copy strong {
    margin: 8px 0 10px;
    font-size: 15px;
    line-height: 17px;
    letter-spacing: 0.04em;
  }

  .home-page .hero .decision-copy span {
    color: #9aa4aa;
    font-size: 13px;
    line-height: 15px;
  }

  .home-page .hero .decision-step:not(:last-child) .decision-copy {
    border-bottom: 1px solid #667078;
    padding-bottom: 16px;
  }

  .home-page .hero .decision-step.active .decision-copy {
    border-top: 1px solid var(--signal);
    padding-top: 20px;
  }

  .home-page .hero .owned-next {
    position: absolute;
    right: 48px;
    bottom: 36px;
    width: 118px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--signal);
    color: var(--graphite);
    font-size: 12px;
    line-height: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .home-page .problem-section {
    top: 892px;
    left: 120px;
    width: 1200px;
    height: 390px;
    display: block;
  }

  .home-page .problem-section > div:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 640px;
  }

  .home-page .problem-section .eyebrow {
    margin: 0 0 var(--label-title-gap);
  }

  .home-page .problem-section h2 {
    width: 640px;
    margin: 0 0 40px;
    font-size: 44px;
    line-height: 46px;
  }

  .home-page .problem-section .copy {
    width: 630px;
    font-size: 18px;
    line-height: 26px;
  }

  .home-page .problem-section .problem-list {
    position: absolute;
    left: 700px;
    top: 80px;
    width: 440px;
    gap: 24px;
  }

  .home-page .problem-item {
    min-height: 58px;
    padding: 0 26px;
    display: flex;
    align-items: center;
    font-size: 15px;
  }

  .home-page .services-section {
    top: 1452px;
    left: 120px;
    width: 1200px;
    height: 1240px;
  }

  .home-page .services-section h2 {
    width: 770px;
    margin: 0 0 42px;
    font-size: 54px;
    line-height: 72px;
  }

  .home-page .services-section .copy {
    width: 800px;
    font-size: 18px;
    line-height: 26px;
  }

  .home-page .services-section .service-grid {
    margin-top: 92px;
    grid-template-columns: 560px 560px;
    gap: 56px 60px;
  }

  .home-page .service-card {
    width: 560px;
    height: 232px;
  }

  .home-page .method-section {
    top: 2902px;
    left: 120px;
    width: 1200px;
    height: 760px;
  }

  .home-page .method-section .label {
    display: inline-flex;
    min-height: 26px;
    margin: 0 0 var(--label-title-gap);
    padding: 0 18px;
    align-items: center;
    border-radius: 999px;
    background: var(--signal);
    color: var(--graphite);
    font-size: 11px;
    letter-spacing: 0;
  }

  .home-page .method-strip > .strip-title {
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--steel);
    font-size: 14px;
    line-height: 16px;
    font-weight: 900;
    letter-spacing: 0.18em;
  }

  .home-page .method-section h2 {
    width: 760px;
    margin: 0 0 34px;
    font-size: 54px;
    line-height: 58px;
  }

  .home-page .method-section > .copy:first-of-type {
    width: 1060px;
    max-width: none;
    font-size: 21px;
    line-height: 31px;
  }

  .home-page .method-strip {
    margin-top: 96px;
    width: 1200px;
    min-height: 216px;
    padding: 34px 34px 28px;
  }

  .home-page .method-strip .flow-horizontal {
    grid-template-columns: repeat(5, 205px);
    gap: 26px;
    margin-top: 44px;
  }

  .home-page .method-strip .flow-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: 34px auto auto;
    column-gap: 16px;
    row-gap: 0;
    align-items: center;
  }

  .home-page .method-strip .flow-item .node {
    grid-column: 1;
    grid-row: 1;
    width: 34px;
    height: 34px;
    background: var(--paper);
    font-size: 11px;
  }

  .home-page .method-strip .flow-item .flow-line {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 2px;
  }

  .home-page .method-strip .flow-item strong {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 0;
    margin-top: 14px;
    font-size: 18px;
    line-height: 20px;
  }

  .home-page .method-strip .flow-item small {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 10px;
    color: var(--steel);
    font-size: 11px;
    line-height: 14px;
  }

  .home-page .method-strip .flow-item.active {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .home-page .method-strip .flow-item.active .flow-line {
    display: none;
  }

  .home-page .method-strip .flow-item.active .node {
    grid-column: 1;
  }

  .home-page .method-strip .flow-item:nth-child(4) .flow-line {
    background: var(--signal);
  }

  .home-page .method-strip .flow-item.active strong,
  .home-page .method-strip .flow-item.active small {
    color: var(--graphite);
  }

  .home-page .method-strip .flow-item.active small {
    color: var(--muted-green);
  }

  .home-page .method-section > .copy:last-child {
    margin-top: 52px;
    width: 1200px;
    max-width: none;
    font-size: 19px;
    line-height: 26px;
  }

  .home-page .method-section > .copy:last-child strong {
    font-weight: 700;
  }

  .home-page .capability-section {
    top: 3742px;
    left: 120px;
    width: 1200px;
    height: 1076px;
    padding-top: 34px;
  }

  .home-page .capability-section h2 {
    width: 900px;
    margin: 0 0 28px;
    font-size: 44px;
    line-height: 48px;
  }

  .home-page .capability-section > .eyebrow.dark {
    margin: 0 0 var(--label-title-gap);
  }

  .home-page .capability-section > .copy {
    width: 810px;
    max-width: none;
    font-size: 19px;
    line-height: 27px;
  }

  .home-page .capability-section .proof-wrap {
    margin-top: var(--section-internal-gap);
    width: 1200px;
    min-height: 610px;
    padding: 32px;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;
  }

  .home-page .capability-section .proof-anchor {
    width: 320px;
    min-height: 546px;
    padding: 46px 32px 38px;
  }

  .home-page .capability-section .proof-anchor .eyebrow {
    margin-bottom: 48px;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.18em;
  }

  .home-page .capability-section .proof-anchor h3 {
    max-width: 230px;
    margin-bottom: 44px;
    font-size: 32px;
    line-height: 34px;
  }

  .home-page .capability-section .proof-anchor p {
    width: 230px;
    font-size: 17px;
    line-height: 23px;
  }

  .home-page .capability-section .proof-line {
    width: 232px;
    height: 2px;
    margin-top: 64px;
  }

  .home-page .capability-section .tile-grid {
    grid-template-columns: 360px 360px;
    gap: 24px 32px;
  }

  .home-page .capability-section .pattern-card {
    width: 360px;
    min-height: 152px;
    padding: 24px 22px;
  }

  .home-page .fit-section {
    top: 4916px;
    left: 120px;
    width: 1200px;
    height: 650px;
    padding: 56px;
  }

  .home-page .fit-section .fit-intro h2 {
    width: 310px;
  }

  .home-page .about-section {
    top: 5742px;
    left: 120px;
    width: 1200px;
    min-height: 548px;
  }

  .home-page .about-section h2 {
    width: 620px;
    margin: 0 0 28px;
    font-size: 44px;
    line-height: 46px;
  }

  .home-page .about-section .lead {
    width: 680px;
    margin-bottom: 36px;
    font-size: 18px;
    line-height: 26px;
  }

  .home-page .about-section .copy {
    width: 620px;
    margin-bottom: 44px;
    font-size: 18px;
    line-height: 26px;
  }

  .home-page .about-section .operating-block {
    position: absolute;
    right: 60px;
    top: 70px;
    width: 440px;
    min-height: 360px;
  }

  .home-page .final-home-section {
    top: 6370px;
    left: 120px;
    width: 1200px;
    min-height: 230px;
  }
}

@media (min-width: 861px) and (max-width: 1439px) {
  :root {
    --desktop-scale: calc(100vw / 1440px);
  }

  .site-header,
  .page,
  .footer {
    width: 1440px;
    max-width: 1440px;
    zoom: var(--desktop-scale);
  }

  .page {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --section-gap: 132px;
    --section-gap-tight: 92px;
    --section-internal-gap: 76px;
  }

  .nav {
    min-height: 82px;
  }

  .nav-links,
  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    min-height: 38px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: var(--graphite);
    color: var(--paper);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
  }

  body.menu-open .nav-links {
    position: absolute;
    top: 82px;
    left: 24px;
    right: 24px;
    z-index: 10;
    border: 1px solid var(--steel-line);
    border-radius: var(--radius);
    display: grid;
    gap: 0;
    background: var(--paper);
    box-shadow: 0 20px 60px rgb(12 13 13 / 12%);
  }

  body.menu-open .nav-links a {
    padding: 20px 22px;
    border-bottom: 1px solid var(--steel-line);
  }

  body.menu-open .nav-links a:last-child {
    border-bottom: 0;
  }

  .page {
    padding: 0 20px 96px;
    overflow: hidden;
  }

  .hero,
  .two-col,
  .proof-wrap,
  .about-panel,
  .final-panel,
  .page-hero,
  .dark-model,
  .contact-intake-layout,
  .after-send-grid,
  .thank-next,
  .error-state-section {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .page-hero {
    gap: 28px;
    padding: 72px 0 42px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 0;
    justify-content: stretch;
  }

  .services-home {
    margin-top: var(--section-gap);
  }

  h1 {
    max-width: 100%;
    margin-bottom: 46px;
    font-size: 46px;
    line-height: 52px;
    overflow-wrap: break-word;
  }

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

  h2 {
    font-size: 38px;
  }

  .lead {
    margin-bottom: 34px;
    font-size: 19px;
  }

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

  .button {
    width: 100%;
    min-width: 0;
    padding: 0 18px;
    font-size: 13px;
    text-align: center;
  }

  .decision-panel,
  .graphite-panel,
  .paper-panel,
  .paper-panel.compact,
  .about-panel,
  .final-panel,
  .dark-model,
  .intake-logic,
  .after-send.graphite-panel {
    width: 100%;
    padding: 32px;
  }

  .decision-panel {
    min-height: auto;
  }

  .decision-list {
    padding-left: 22px;
  }

  .decision-step {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px;
  }

  .hero .decision-panel .decision-step.active .node.signal {
    border-color: var(--signal);
    background: var(--graphite);
    color: var(--signal);
  }

  .service-grid,
  .tile-grid,
  .fit-grid,
  .diagnostic-grid,
  .combine-grid,
  .question-grid,
  .form-grid,
  .model-steps {
    grid-template-columns: 1fr;
  }

  .fit-intro {
    min-height: auto;
    padding: 36px 28px 48px;
    border: 1px solid var(--steel-line);
    border-radius: var(--radius);
    background: var(--paper);
  }

  .fit-intro h2,
  .fit-intro p:not(.label) {
    max-width: none;
  }

  .fit-section {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .fit-mobile-heading {
    display: block;
    margin-bottom: 34px;
    font-size: 38px;
    line-height: 42px;
  }

  .fit-grid {
    gap: 40px;
  }

  .fit-column {
    position: relative;
    padding: 56px 28px 28px;
    border: 1px solid var(--steel-line);
    border-radius: var(--radius);
    background: var(--paper);
  }

  .fit-column.good {
    border-color: var(--steel-line);
  }

  .fit-column::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 4px;
    background: var(--steel-line);
  }

  .fit-column.good::before {
    background: var(--signal);
  }

  .fit-list {
    gap: 14px;
    margin-top: 28px;
  }

  .fit-item {
    min-height: 78px;
    padding: 18px;
    font-size: 15px;
    line-height: 19px;
  }

  .service-card,
  .diagnostic-card,
  .combine-card,
  .question-card,
  .card,
  .field-card {
    min-height: auto;
    padding: 28px;
  }

  .services-page .paper-panel.two-col {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .services-page .paper-panel.two-col > div:first-child {
    min-height: auto;
  }

  .services-page .paper-panel.two-col > div:first-child .actions {
    margin-top: 42px;
  }

  .services-page .paper-panel h2 {
    font-size: 38px;
    line-height: 42px;
  }

  .services-page .page-hero {
    align-items: start;
  }

  .services-page .service-layers-section > .label + .service-grid {
    margin-top: 48px;
  }

  .services-page .paper-panel.combine-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 32px;
    gap: 52px;
  }

  .services-page .combine-section > div:first-child {
    min-height: auto;
  }

  .services-page .combine-section h2 {
    max-width: 100%;
    margin-bottom: 32px;
    font-size: 38px;
    line-height: 42px;
  }

  .services-page .combine-section .copy {
    font-size: 16px;
    line-height: 22px;
  }

  .services-page .combine-section .actions {
    margin-top: 42px;
  }

  .services-page .combine-section .combine-grid {
    gap: 18px;
  }

  .services-page .combine-section .combine-card {
    min-height: auto;
    padding: 28px 30px 30px;
  }

  .services-page .combine-section .combine-card h3 {
    font-size: 19px;
    line-height: 23px;
  }

  .services-page .combine-section .combine-card p {
    font-size: 16px;
    line-height: 22px;
  }

  .services-page .combine-section .combine-card .green-note {
    margin-top: 20px;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0;
    text-transform: none;
  }

  .method-page .paper-panel.two-col {
    grid-template-columns: 1fr;
  }

  .method-page .paper-panel h2 {
    font-size: 38px;
    line-height: 42px;
  }

  .contact-details-panel {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }

  .contact-details-panel + .question-grid.section-tight {
    margin-top: 56px;
  }

  .method-page .method-strip .flow-horizontal {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 38px;
  }

  .method-page .method-strip .flow-item {
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 6px;
    align-items: start;
  }

  .method-page .method-strip .flow-item .node,
  .method-page .method-strip .flow-item.active .node {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .method-page .method-strip .flow-item .flow-line {
    display: none;
  }

  .method-page .method-strip .flow-item strong,
  .method-page .method-strip .flow-item small {
    grid-column: 2;
    min-height: 0;
    margin: 0;
  }

  .method-page .method-strip .flow-item strong {
    grid-row: 1;
    font-size: 18px;
    line-height: 22px;
  }

  .method-page .method-strip .flow-item small {
    grid-row: 2;
    color: var(--steel);
    font-size: 13px;
    line-height: 17px;
  }

  .method-page .method-strip .flow-item.active small {
    color: var(--muted-green);
  }

  .services-page .diagnostic-grid,
  .services-page .combine-grid {
    gap: 18px;
  }

  .services-page .diagnostic-card,
  .services-page .combine-card {
    min-height: auto;
    padding: 28px 30px 30px;
  }

  .services-page .diagnostic-card h3,
  .services-page .combine-card h3 {
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 23px;
  }

  .services-page .diagnostic-card .green-note,
  .services-page .combine-card .green-note {
    margin-bottom: 16px;
  }

  .flow-horizontal {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .method-strip {
    padding: 32px 24px;
  }

  .method-strip .flow-horizontal {
    gap: 26px;
    margin-top: 38px;
  }

  .method-strip .flow-item {
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 6px;
    align-items: start;
  }

  .method-strip .flow-item .node {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .method-strip .flow-item .flow-line {
    display: none;
  }

  .method-strip .flow-item strong,
  .method-strip .flow-item small {
    grid-column: 2;
    min-height: 0;
    margin: 0;
  }

  .method-strip .flow-item strong {
    grid-row: 1;
    font-size: 18px;
    line-height: 22px;
  }

  .method-strip .flow-item small {
    grid-row: 2;
    color: var(--steel);
    font-size: 13px;
    line-height: 17px;
  }

  .method-strip .flow-item.active small {
    color: var(--muted-green);
  }

  .operating-model-panel .model-steps {
    grid-template-columns: 1fr;
    margin-top: 46px;
    gap: 22px;
  }

  .operating-model-panel .model-steps::before,
  .operating-model-panel .model-steps::after {
    display: none;
  }

  .operating-model-panel .check-row {
    min-height: 64px;
    border: 1px solid var(--steel);
    padding: 16px 20px;
    grid-template-columns: 34px 1fr;
    justify-items: start;
    gap: 18px;
    text-align: left;
  }

  .flow-item {
    grid-template-columns: 34px 1fr;
    align-items: center;
    min-width: 0;
  }

  .flow-line {
    width: 2px;
    height: 44px;
    grid-row: span 2;
    justify-self: center;
  }

  .proof-anchor {
    min-height: auto;
  }

  .submit-panel {
    grid-template-columns: 1fr;
    padding: 36px 32px;
  }

  .contact-intake-layout {
    margin-top: var(--section-gap-tight);
  }

  .intake-logic {
    min-height: auto;
  }

  .intake-logic h2,
  .form-intro h2,
  .thank-next h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .submit-attached {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .submit-attached .button {
    margin-top: 12px;
  }

  .after-send {
    margin-top: var(--section-gap);
  }

  .outcome-stack article,
  .submit-error-demo {
    padding: 24px;
  }

  .technical-note {
    margin-top: 40px;
  }

  .final-panel {
    gap: 38px;
  }

  .checklist {
    padding: 20px;
  }

  .check-row {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .status-row {
    flex-direction: column;
  }

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