:root {
  --canvas: #f2f0e9;
  --paper: #fbfaf7;
  --surface: #f6f4ee;
  --surface-strong: #e7e5dd;
  --ink: #191917;
  --ink-soft: #383832;
  --muted: #696862;
  --line: #d8d4cb;
  --line-dark: #565852;
  --green: #29453a;
  --green-deep: #171716;
  --green-bright: #597566;
  --accent: #7a3d45;
  --amber: #926a32;
  --display: "Arial Nova", "Segoe UI Variable Display", "Segoe UI Variable", Aptos, "Segoe UI", Arial, sans-serif;
  --sans: Aptos, "Segoe UI Variable Text", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --mono: "Cascadia Mono", Consolas, monospace;
  --max-width: 1200px;
  --gutter: 40px;
  --grid-gap: 24px;
  --reading-measure: 440px;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

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

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 620;
  text-wrap: balance;
}

p {
  line-height: 1.65;
}

#audit,
#method,
#sprint,
#standards,
#faq,
#contact {
  scroll-margin-top: 88px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  transform: translateY(-180%);
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--paper);
  font-size: 0.82rem;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.section-shell,
.nav-shell,
.hero-shell {
  width: calc(100% - var(--gutter) - var(--gutter));
  max-width: var(--max-width);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: box-shadow 180ms ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(17, 24, 20, 0.07);
}

.nav-shell {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.wordmark {
  width: max-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
}

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

.site-nav a {
  position: relative;
  padding: 27px 0 24px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="location"] {
  color: var(--ink);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a[aria-current="location"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-action {
  min-height: 40px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-action:hover {
  border-color: var(--ink-soft);
  background: var(--ink-soft);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 570px;
  height: calc(100svh - 156px);
  max-height: 640px;
  background: var(--green-deep);
  color: var(--paper);
}

.hero-shell {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  row-gap: var(--grid-gap);
  column-gap: clamp(48px, 5.5vw, 72px);
  align-items: center;
  padding: 62px 0 58px;
}

.hero-copy {
  min-width: 0;
  grid-column: 1;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 20px;
  color: var(--green-bright);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.4;
}

.hero-kicker {
  color: #b7c9bd;
}

.section-kicker-light {
  color: #b7c9bd;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: 3.7rem;
  line-height: 1.04;
}

.hero-summary {
  max-width: 560px;
  margin: 20px 0 0;
  color: #d7d6cf;
  font-size: 1rem;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button-arrow {
  display: inline-block;
  transition: transform 180ms cubic-bezier(0.2, 0.75, 0.35, 1);
}

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

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

.button-primary:hover {
  border-color: #e8e5dd;
  background: #e8e5dd;
}

.button-primary:hover .button-arrow,
.header-action:hover .button-arrow {
  transform: translateX(4px);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  color: var(--paper);
}

.button-secondary:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover .button-arrow {
  transform: translateY(3px);
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover {
  border-color: #e8e5dd;
  background: #e8e5dd;
}

.button-light:hover .button-arrow {
  transform: translateY(-3px);
}

.hero-trust {
  max-width: 600px;
  margin: 10px 0 0;
  color: #bfc0b9;
  font-size: 0.8rem;
}

.hero-pilot-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
  margin: 19px 0 0;
  color: var(--paper);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hero-pilot-facts strong {
  font-weight: 680;
}

.hero-pilot-facts span {
  color: #8e958e;
}

.hero-recovery {
  width: 100%;
  min-width: 0;
  grid-column: 2;
  align-self: end;
  margin: 0 0 12px;
  padding: 18px 0;
  border-top: 1px solid #555651;
  border-bottom: 1px solid #555651;
}

.hero-recovery-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.hero-recovery-heading p,
.hero-recovery-heading span {
  margin: 0;
  color: #b7c9bd;
  font-size: 0.72rem;
  font-weight: 720;
  white-space: nowrap;
}

.hero-recovery-heading span {
  color: #838a83;
  font-size: 0.62rem;
  font-weight: 600;
}

.hero-recovery-flow {
  position: relative;
  display: grid;
  gap: 0;
  margin: 19px 0 18px;
  padding: 0;
  list-style: none;
}

.hero-recovery-flow::before,
.hero-recovery-flow::after {
  position: absolute;
  z-index: 0;
  top: 17px;
  bottom: 17px;
  left: 5px;
  width: 1px;
  content: "";
}

.hero-recovery-flow::before {
  background: #4b4c47;
}

.hero-recovery-flow::after {
  background: var(--green-bright);
  transform-origin: top;
}

.hero-recovery-flow li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 49px;
  padding: 8px 0;
  border-bottom: 1px solid #393a36;
}

.hero-recovery-flow li:first-child {
  border-top: 1px solid #393a36;
}

.recovery-node {
  width: 11px;
  height: 11px;
  display: block;
  border: 1px solid #757a74;
  border-radius: 50%;
  background: var(--green-deep);
}

.hero-recovery-flow li > span:nth-child(2) {
  min-width: 0;
}

.hero-recovery-flow small,
.hero-recovery-flow strong {
  display: block;
}

.hero-recovery-flow small {
  margin-bottom: 2px;
  color: #888d87;
  font-size: 0.6rem;
  line-height: 1.35;
}

.hero-recovery-flow strong {
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-recovery-flow em {
  margin: 0;
  color: #a9afa8;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-style: normal;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}

.hero-recovery-flow .recovery-stage-overlooked strong,
.hero-recovery-flow .recovery-stage-overlooked em {
  color: #969b95;
}

.hero-recovery-flow .recovery-stage-opportunity .recovery-node {
  border-color: #88a18f;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(89, 117, 102, 0.15);
}

.hero-recovery-flow .recovery-stage-opportunity em {
  color: #b8cdbf;
}

.hero-recovery-note {
  max-width: 360px;
  margin: 0;
  color: #c5c5bd;
  font-size: 0.76rem;
  line-height: 1.55;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 22px;
  left: max(var(--gutter), calc((100% - var(--max-width)) / 2));
  width: 18px;
  height: 24px;
  display: grid;
  place-items: end center;
  text-decoration: none;
}

.hero-scroll-cue span {
  width: 1px;
  height: 18px;
  display: block;
  background: rgba(251, 250, 247, 0.56);
}

.problem-section {
  padding: 82px 0 72px;
}

.audit-section {
  padding: 84px 0 88px;
}

.decision-section {
  padding: 78px 0 82px;
}

.economics-section {
  padding: 76px 0;
}

.sprint-section {
  padding: 84px 0 88px;
}

.standards-section {
  padding: 78px 0 82px;
}

.company-section {
  padding: 74px 0 78px;
}

.problem-section,
.standards-section {
  background: var(--paper);
}

.section-intro,
.audit-intro,
.method-intro,
.sprint-intro {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 100px;
  align-items: end;
}

.section-intro h2,
.audit-intro h2,
.decision-intro h2,
.method-intro h2,
.economics-grid h2,
.sprint-intro h2,
.standards-intro h2,
.company-layout h2,
.contact-layout h2 {
  max-width: 720px;
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.1;
}

.section-intro > p,
.method-intro > p,
.sprint-intro > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.93rem;
}

.record-paths {
  display: grid;
  grid-template-columns: 1.15fr 0.93fr 0.92fr;
  gap: 48px;
  margin-top: 48px;
}

.record-paths article {
  position: relative;
  min-height: 0;
  padding: 20px 0 0;
  transition: transform 160ms ease;
}

.record-paths article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(1);
  transform-origin: left center;
  transition: background-color 160ms ease;
}

.record-paths article:hover {
  transform: translateY(-2px);
}

.record-paths article:hover::before {
  background: var(--green-bright);
}

.record-paths h3 {
  margin: 0;
  font-size: 1.3rem;
  transition: color 160ms ease;
}

.record-paths article:hover h3 {
  color: var(--green);
}

.record-paths p {
  max-width: 330px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.audience-section {
  padding: 72px 0 76px;
  background: var(--surface-strong);
  color: var(--ink);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.audience-grid h2 {
  max-width: 680px;
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.12;
}

.audience-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.audience-media {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin: 46px 0 0;
}

.audience-media img {
  grid-column: span 5;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 46%;
  filter: grayscale(0.82) contrast(1.05) brightness(0.84);
}

.audience-media figcaption {
  grid-column: 7 / span 5;
  align-self: end;
  padding: 18px 0 0;
  border-top: 2px solid var(--green);
}

.audience-media figcaption span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 720;
}

.audience-media figcaption p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.audit-section {
  background: var(--surface);
}

.audit-contact {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.audit-contact p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.text-action {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.text-action span {
  transition: transform 160ms ease;
}

.text-action:hover span {
  transform: translateX(4px);
}

.audit-assurance {
  margin-bottom: 4px;
  padding: 20px 0 0;
  border-top: 3px solid var(--green);
}

.audit-assurance strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.audit-assurance p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.audit-panel {
  display: grid;
  grid-template-columns: 0.46fr 1.54fr;
  gap: 48px;
  margin-top: 48px;
  padding: 30px 0 32px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line);
}

.audit-panel-intro {
  padding: 6px 28px 0 0;
}

.audit-panel-intro h3 {
  margin: 0;
  font-size: 1.25rem;
}

.audit-panel-intro p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.audit-questions {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.audit-questions li {
  position: relative;
  padding: 18px 8px 18px 26px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  transition: background-color 160ms ease;
}

.audit-questions li::before {
  position: absolute;
  top: 25px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  content: "";
}

.audit-questions li:hover {
  background: rgba(41, 69, 58, 0.035);
}

.decision-section {
  background: var(--paper);
}

.decision-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: start;
}

.decision-intro > p:last-child {
  max-width: 430px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.decision-list article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 8px 28px;
  padding: 27px 0 29px;
  border-bottom: 1px solid var(--line);
}

.decision-list h3 {
  grid-row: 1 / span 2;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  align-self: start;
  font-size: 1rem;
}

.decision-list h3 span {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: currentColor;
}

.decision-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.decision-list strong {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.5;
}

.decision-list .pilot-fit h3 {
  color: var(--green-bright);
}

.decision-list .maybe h3 {
  color: var(--amber);
}

.decision-list .no-fit h3 {
  color: var(--accent);
}

.decision-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.method-section {
  padding: 78px 0 82px;
  background: var(--green-deep);
  color: var(--paper);
}

.method-intro > p {
  color: #d0d0c8;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 44px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #484844;
  border-radius: 0;
  list-style: none;
}

.method-flow li {
  position: relative;
  min-height: 0;
  padding: 28px 24px;
  border-left: 1px solid #484844;
  transition: background-color 160ms ease;
}

.method-flow li:first-child {
  border-left: 0;
}

.method-flow li:not(:last-child)::after {
  position: absolute;
  top: 28px;
  right: 22px;
  color: #a4b8ab;
  content: "\2192";
  font-size: 1.1rem;
}

.method-flow li:hover {
  background: rgba(255, 255, 255, 0.055);
}

.method-flow h3 {
  margin: 0;
  font-size: 1.18rem;
}

.method-flow p {
  margin: 36px 0 0;
  color: #d0d0c8;
  font-size: 0.8rem;
}

.economics-section {
  background: var(--paper);
}

.economics-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 100px;
  align-items: center;
}

.economics-copy {
  max-width: 610px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 30px;
}

.economics-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.formula-panel {
  padding: 38px 40px;
  border-radius: 2px;
  background: var(--green-deep);
  color: var(--paper);
}

.formula-panel > span {
  display: block;
  margin-bottom: 24px;
  color: #bbc3bc;
  font-size: 0.78rem;
  font-weight: 700;
}

.formula-panel strong {
  display: block;
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.formula-panel p {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid #41413d;
  color: #d0d0c8;
  font-size: 0.8rem;
}

.sprint-section {
  background: var(--surface);
}

.sprint-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 50px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
}

.sprint-summary > div {
  min-height: 116px;
  padding: 26px 28px;
  border-left: 1px solid var(--line);
}

.sprint-summary > div:first-child {
  border-left: 0;
}

.sprint-summary dt {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 650;
}

.sprint-summary dd {
  margin: 17px 0 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 650;
  line-height: 1.2;
}

.sprint-commitment {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.sprint-scope {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 56px;
}

.sprint-scope h3 {
  margin: 0 0 18px;
  font-size: 1rem;
}

.sprint-scope ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.sprint-scope li {
  position: relative;
  padding: 15px 0 15px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.sprint-scope li::before {
  position: absolute;
  top: 22px;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  content: "";
}

.sprint-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.sprint-timeline article {
  padding-top: 22px;
  border-top: 3px solid var(--line);
}

.sprint-timeline article:first-child {
  border-top-color: var(--green-bright);
}

.sprint-timeline h3 {
  margin: 0;
  font-size: 1.06rem;
}

.sprint-timeline p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.standards-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 100px;
  align-items: start;
}

.standards-intro > p:last-child {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.standards-list article {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  padding: 25px 0 27px;
  border-bottom: 1px solid var(--line);
}

.standards-list h3 {
  margin: 0;
  font-size: 1.05rem;
}

.standards-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.company-section {
  background: var(--surface-strong);
}

.company-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: start;
}

.company-copy > p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.company-copy a,
.contact-placeholder a,
.footer-brand a,
.footer-legal a,
.legal-content a {
  text-underline-offset: 3px;
}

.identity-list {
  margin: 32px 0 0;
  border-top: 1px solid #cbc8c0;
}

.identity-list > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #cbc8c0;
}

.identity-list dt {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
}

.identity-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.faq-section {
  padding: 78px 0 82px;
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 100px;
  align-items: start;
}

.faq-intro h2 {
  max-width: 520px;
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.1;
}

.faq-intro > p:last-child {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.04rem;
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 2px;
  color: var(--green);
  content: "+";
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 660px;
  padding: 0 46px 24px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-section {
  padding: 72px 0 76px;
  background: var(--green);
  color: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: center;
}

.contact-copy > p {
  margin: 0 0 25px;
  color: #dde3dd;
  font-size: 0.9rem;
}

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

.text-action-light {
  color: var(--paper);
}

.contact-placeholder {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.contact-placeholder strong {
  display: block;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.contact-placeholder p {
  margin: 10px 0 0;
  color: #b8c9be;
  font-size: 0.72rem;
}

.pilot-dialog {
  width: min(920px, calc(100% - 40px));
  max-height: min(820px, calc(100dvh - 40px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(17, 23, 20, 0.28);
}

.pilot-dialog::backdrop {
  background: rgba(13, 18, 15, 0.7);
  backdrop-filter: blur(3px);
}

.pilot-dialog-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 46px;
  padding: 50px;
}

.pilot-dialog-close {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  transition: color 160ms ease, transform 160ms ease;
}

.pilot-dialog-close:hover {
  color: var(--ink);
  transform: rotate(4deg);
}

.pilot-dialog-heading {
  padding-right: 8px;
}

.pilot-dialog-heading h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.08;
}

.pilot-dialog-heading > p:last-of-type {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.pilot-dialog-facts {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.pilot-dialog-facts > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.pilot-dialog-facts dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.pilot-dialog-facts dd {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.pilot-request-form {
  min-width: 0;
}

.pilot-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}

.pilot-form-grid .pilot-field {
  min-width: 0;
}

.pilot-field-label {
  display: flex;
  align-items: baseline;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.pilot-field-label em {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 500;
}

.required-mark {
  margin-left: 4px;
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pilot-form-grid input {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font-size: 0.82rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.pilot-form-grid input:hover {
  border-color: #aaa79f;
}

.pilot-form-grid input:focus {
  border-color: var(--green-bright);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(89, 117, 102, 0.13);
}

.pilot-field.is-invalid input {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(122, 61, 69, 0.12);
}

.pilot-field.is-invalid input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122, 61, 69, 0.13);
}

.pilot-field-error {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 650;
  line-height: 1.35;
}

.pilot-field-error:empty {
  display: none;
}

.pilot-form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pilot-form-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.pilot-form-note a {
  color: var(--ink-soft);
}

.pilot-form-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}

.pilot-submit {
  border-color: var(--green);
  background: var(--green);
  color: var(--paper);
}

.pilot-submit:hover {
  border-color: var(--green-deep);
  background: var(--green-deep);
}

.pilot-submit:hover .button-arrow {
  transform: translateX(4px);
}

.pilot-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.pilot-cancel {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.pilot-cancel:hover {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.pilot-form-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.pilot-form-status.is-error {
  color: var(--accent);
}

.pilot-success {
  align-self: center;
  padding: 34px 18px;
}

.pilot-success-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--green-bright);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.9rem;
}

.pilot-success h3 {
  margin: 0;
  font-size: 1.55rem;
}

.pilot-success p {
  max-width: 390px;
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 48px;
  padding: 48px max(var(--gutter), calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid #3f403c;
  background: var(--green-deep);
  color: #b5b5ad;
}

.footer-brand .wordmark {
  color: var(--paper);
}

.footer-brand p {
  margin: 13px 0 0;
  font-size: 0.76rem;
}

.footer-links,
.footer-legal {
  display: grid;
  gap: 9px;
  align-content: start;
  font-size: 0.73rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--paper);
}

.footer-legal a {
  width: max-content;
  text-decoration: none;
}

.deployment-blocker {
  color: #e1a8aa;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.postal-address {
  color: inherit;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 22px;
  border-top: 1px solid #3f403c;
  color: #898981;
  font-size: 0.7rem;
}

.legal-main {
  min-height: calc(100vh - 72px);
  padding: 88px 0 104px;
  background: var(--paper);
}

.legal-nav-shell {
  grid-template-columns: 1fr auto auto;
}

.legal-back-link {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
}

.legal-back-link:hover {
  color: var(--ink);
}

.legal-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.legal-hero {
  grid-column: 1 / span 8;
  max-width: 760px;
}

.legal-hero h1 {
  margin: 0;
  font-size: 3.5rem;
  line-height: 1.04;
}

.legal-hero > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-alert {
  grid-column: 9 / span 4;
  align-self: end;
  padding: 20px 0 0;
  border-top: 2px solid var(--accent);
}

.legal-alert strong {
  color: var(--accent);
  font-size: 0.76rem;
}

.legal-alert p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.legal-alert code {
  font-family: var(--mono);
  font-size: 0.72rem;
  overflow-wrap: anywhere;
}

.legal-content {
  grid-column: 3 / span 8;
  margin-top: 76px;
  border-top: 1px solid var(--line);
}

.legal-section {
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 18px;
  font-size: 1.35rem;
}

.legal-section p {
  max-width: 700px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-details {
  margin: 0;
}

.legal-details > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.legal-details dt {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
}

.legal-details dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.legal-updated {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.error-main {
  display: grid;
  align-items: center;
}

.error-hero {
  grid-column: 1 / span 9;
}

.error-action {
  margin-top: 10px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.error-action:hover {
  border-color: var(--ink-soft);
  background: var(--ink-soft);
}

@media (min-width: 1001px) {
  .section-intro,
  .audit-intro,
  .method-intro,
  .sprint-intro,
  .audience-grid,
  .decision-layout,
  .economics-grid,
  .standards-layout,
  .company-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--grid-gap);
  }

  .section-intro > :first-child,
  .audit-intro > :first-child,
  .method-intro > :first-child,
  .sprint-intro > :first-child,
  .audience-grid > :first-child,
  .contact-layout > :first-child {
    grid-column: span 7;
  }

  .section-intro > p,
  .audit-intro > .audit-assurance,
  .method-intro > p,
  .sprint-intro > p,
  .audience-copy,
  .contact-copy {
    grid-column: span 5;
    max-width: var(--reading-measure);
  }

  .decision-intro,
  .standards-intro,
  .faq-intro {
    grid-column: span 5;
  }

  .decision-list,
  .standards-list,
  .faq-list {
    grid-column: span 7;
  }

  .economics-grid > *,
  .company-layout > * {
    grid-column: span 6;
  }

  .formula-panel {
    width: 100%;
    max-width: 520px;
    justify-self: end;
  }
}

@media (max-width: 1000px) {
  .hero {
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .hero-shell {
    height: auto;
    grid-template-columns: 1fr;
    padding: 68px 0 60px;
  }

  .hero-copy {
    grid-column: 1;
  }

  .hero-recovery {
    grid-column: 1;
    width: min(620px, 100%);
    margin: 6px 0 0;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero h1 {
    max-width: 730px;
    font-size: 3.25rem;
  }

  .section-intro,
  .audit-intro,
  .method-intro,
  .sprint-intro,
  .audience-grid,
  .decision-layout,
  .economics-grid,
  .standards-layout,
  .company-layout,
  .faq-layout,
  .contact-layout {
    gap: 64px;
  }

  .section-intro h2,
  .audit-intro h2,
  .decision-intro h2,
  .method-intro h2,
  .economics-grid h2,
  .sprint-intro h2,
  .standards-intro h2,
  .company-layout h2,
  .faq-intro h2,
  .contact-layout h2 {
    font-size: 2.45rem;
  }

  .method-flow li {
    padding-inline: 20px;
  }

  .method-flow p {
    margin-top: 46px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  #audit,
  #method,
  #sprint,
  #standards,
  #faq,
  #contact {
    scroll-margin-top: 96px;
  }

  .site-header,
  .nav-shell {
    min-height: 84px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    grid-template-rows: 46px 37px;
    gap: 0 12px;
  }

  .wordmark {
    font-size: 1.15rem;
  }

  .header-action {
    justify-self: end;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.67rem;
    white-space: nowrap;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line);
  }

  .site-nav a {
    min-height: 37px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    font-size: 0.7rem;
  }

  .site-nav a::after {
    bottom: 3px;
  }

  .hero-shell {
    padding: 42px 0 44px;
  }

  .hero-kicker,
  .section-kicker {
    margin-bottom: 16px;
  }

  .hero h1 {
    max-width: 600px;
    font-size: 2.7rem;
    line-height: 1.05;
  }

  .hero-summary {
    max-width: 540px;
    margin-top: 20px;
    font-size: 0.9rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-trust {
    margin-top: 20px;
  }

  .hero-recovery {
    margin-top: 10px;
  }

  .problem-section,
  .audit-section,
  .decision-section,
  .economics-section,
  .sprint-section,
  .standards-section,
  .company-section,
  .faq-section {
    padding: 76px 0;
  }

  .section-intro,
  .audit-intro,
  .method-intro,
  .sprint-intro,
  .audience-grid,
  .decision-layout,
  .economics-grid,
  .standards-layout,
  .company-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-intro h2,
  .audit-intro h2,
  .decision-intro h2,
  .method-intro h2,
  .economics-grid h2,
  .sprint-intro h2,
  .standards-intro h2,
  .company-layout h2,
  .faq-intro h2,
  .contact-layout h2 {
    font-size: 2.25rem;
  }

  .section-intro > p,
  .method-intro > p,
  .sprint-intro > p {
    max-width: 560px;
  }

  .record-paths {
    gap: 20px;
    margin-top: 48px;
  }

  .record-paths article {
    min-height: 0;
  }

  .audience-section {
    padding: 66px 0 70px;
  }

  .audience-grid h2 {
    font-size: 2.15rem;
  }

  .audit-assurance {
    max-width: 560px;
  }

  .audience-media {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .audience-media img,
  .audience-media figcaption {
    grid-column: 1;
  }

  .audience-media figcaption {
    align-self: auto;
  }

  .audit-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 42px;
    padding: 26px 0;
  }

  .audit-panel-intro {
    padding-right: 0;
  }

  .decision-intro > p:last-child {
    max-width: 560px;
  }

  .decision-list article {
    grid-template-columns: 130px 1fr;
  }

  .method-section {
    padding: 74px 0 80px;
  }

  .method-flow {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .method-flow li {
    min-height: 0;
    padding: 24px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .method-flow li:first-child {
    border-top: 0;
  }

  .method-flow li:not(:last-child)::after {
    top: 23px;
    content: "\2193";
  }

  .method-flow p {
    max-width: 560px;
    margin: 24px 0 0;
    /* Base 0.8rem measured 12.8px on a 390px phone, below comfortable reading
       size. The step-card rhythm is set by padding and margin, not this value,
       so the block grows without disturbing the flow. */
    font-size: 0.9rem;
  }

  .economics-copy {
    max-width: 620px;
  }

  .formula-panel {
    max-width: 620px;
  }

  .sprint-summary {
    margin-top: 42px;
  }

  .sprint-summary > div {
    padding-inline: 20px;
  }

  .sprint-summary dd {
    font-size: 1.4rem;
  }

  .sprint-scope {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 52px;
  }

  .sprint-timeline {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 48px;
  }

  .standards-list article {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .company-copy {
    max-width: 620px;
  }

  .faq-intro > p:last-child,
  .faq-list {
    max-width: 620px;
  }

  .legal-main {
    padding: 72px 0 88px;
  }

  .legal-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-hero,
  .legal-alert,
  .legal-content {
    grid-column: 1;
  }

  .legal-alert {
    max-width: 620px;
  }

  .legal-content {
    max-width: 760px;
    margin-top: 34px;
  }

  .contact-section {
    padding: 70px 0 74px;
  }

  .contact-copy {
    max-width: 600px;
  }

  .pilot-dialog-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 34px 36px;
  }

  .pilot-dialog-heading {
    max-width: 620px;
    padding-right: 20px;
  }

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

  .pilot-dialog-facts > div {
    display: block;
    padding: 12px;
    border-right: 1px solid var(--line);
  }

  .pilot-dialog-facts > div:first-child {
    padding-left: 0;
  }

  .pilot-dialog-facts > div:last-child {
    border-right: 0;
  }

  .pilot-dialog-facts dd {
    margin-top: 6px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    padding: 44px var(--gutter) 36px;
  }

  .footer-legal {
    grid-column: 2;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 610px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-summary {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-recovery-heading span {
    display: none;
  }

  .hero-recovery-flow li {
    grid-template-columns: 12px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 11px 14px;
    font-size: 0.75rem;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: start;
  }

  .pilot-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .pilot-dialog-panel {
    gap: 28px;
    padding: 38px 20px 26px;
  }

  .pilot-dialog-heading h2 {
    font-size: 1.8rem;
  }

  .pilot-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .pilot-form-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pilot-form-actions .button {
    order: 1;
  }

  .pilot-cancel {
    justify-self: start;
    order: 2;
  }

  .hero-trust {
    font-size: 0.74rem;
  }

  .problem-section,
  .audit-section,
  .decision-section,
  .economics-section,
  .sprint-section,
  .standards-section,
  .company-section,
  .faq-section {
    padding: 66px 0;
  }

  .section-intro h2,
  .audit-intro h2,
  .decision-intro h2,
  .method-intro h2,
  .economics-grid h2,
  .sprint-intro h2,
  .standards-intro h2,
  .company-layout h2,
  .faq-intro h2,
  .contact-layout h2,
  .audience-grid h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .record-paths {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .record-paths article {
    min-height: 0;
    padding-top: 20px;
  }

  .audit-panel {
    padding: 24px 0;
  }

  .audit-questions li {
    padding-right: 0;
    font-size: 0.88rem;
  }

  .decision-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .decision-list h3 {
    grid-row: auto;
  }

  .decision-list strong {
    grid-column: 1;
  }

  .economics-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .formula-panel {
    padding: 30px 24px;
  }

  .formula-panel strong {
    font-size: 0.88rem;
  }

  .sprint-summary {
    grid-template-columns: 1fr;
  }

  .sprint-summary > div {
    min-height: 0;
    padding: 20px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .sprint-summary > div:first-child {
    border-top: 0;
  }

  .sprint-summary dd {
    margin-top: 9px;
  }

  .standards-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .identity-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .audit-contact {
    display: grid;
    gap: 14px;
  }

  .faq-list summary {
    padding-right: 36px;
  }

  .faq-answer {
    padding-right: 22px;
  }

  .legal-hero h1 {
    font-size: 2.7rem;
  }

  .legal-details > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-legal {
    grid-column: 1;
  }
}

@media (max-width: 370px) {
  :root {
    --gutter: 16px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.7rem;
  }

  .header-action {
    gap: 7px;
    padding-inline: 9px;
    font-size: 0.66rem;
  }

  .hero-shell {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: 2.18rem;
  }

  .hero-summary {
    margin-top: 17px;
    font-size: 0.8rem;
  }

  .hero-actions {
    margin-top: 19px;
  }

  .hero-trust {
    margin-top: 16px;
    font-size: 0.72rem;
  }

  .section-intro h2,
  .audit-intro h2,
  .decision-intro h2,
  .method-intro h2,
  .economics-grid h2,
  .sprint-intro h2,
  .standards-intro h2,
  .company-layout h2,
  .faq-intro h2,
  .contact-layout h2,
  .audience-grid h2 {
    font-size: 1.88rem;
  }
}

@media (max-width: 520px) {
  .legal-page .site-header,
  .legal-page .nav-shell {
    min-height: 64px;
  }

  .legal-nav-shell {
    grid-template-columns: 1fr auto;
    grid-template-rows: 64px;
  }

  .legal-back-link {
    display: none;
  }

  .hero-pilot-facts {
    gap: 5px 8px;
    font-size: 0.71rem;
  }

  .legal-main {
    padding: 58px 0 72px;
  }

  .legal-hero h1 {
    font-size: 2.3rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-ready .hero-intro-kicker,
  html.motion-ready .hero-title,
  html.motion-ready .hero-intro-summary,
  html.motion-ready .hero-intro-actions,
  html.motion-ready .hero-intro-trust {
    opacity: 0;
    animation: hero-intro 520ms cubic-bezier(0.2, 0.75, 0.35, 1) both;
  }

  html.motion-ready .hero-intro-kicker {
    animation-delay: 150ms;
  }

  html.motion-ready .hero-title {
    animation-delay: 200ms;
  }

  html.motion-ready .hero-intro-summary {
    animation-delay: 270ms;
  }

  html.motion-ready .hero-intro-actions {
    animation-delay: 340ms;
  }

  html.motion-ready .hero-intro-trust {
    animation-delay: 410ms;
  }

  html.motion-ready .hero-recovery {
    opacity: 0;
    animation: hero-recovery-in 560ms 300ms cubic-bezier(0.2, 0.75, 0.35, 1) both;
  }

  html.motion-ready .hero-recovery-flow::after {
    transform: scaleY(0);
    animation: recovery-path 1500ms 720ms cubic-bezier(0.2, 0.75, 0.35, 1) both;
  }

  html.motion-ready .hero-recovery-flow li:nth-child(1) .recovery-node {
    animation: recovery-node 420ms 700ms ease both;
  }

  html.motion-ready .hero-recovery-flow li:nth-child(2) .recovery-node {
    animation: recovery-node 420ms 1050ms ease both;
  }

  html.motion-ready .hero-recovery-flow li:nth-child(3) .recovery-node {
    animation: recovery-node 420ms 1400ms ease both;
  }

  html.motion-ready .hero-recovery-flow li:nth-child(4) .recovery-node {
    animation: recovery-node 420ms 1750ms ease both;
  }

  html.motion-ready .hero-scroll-cue span {
    animation: scroll-cue 1800ms 1100ms ease-in-out infinite;
  }

  html.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 520ms cubic-bezier(0.2, 0.75, 0.35, 1), transform 520ms cubic-bezier(0.2, 0.75, 0.35, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  html.reveal-ready [data-reveal="left"] {
    transform: translate3d(-18px, 0, 0);
  }

  html.reveal-ready [data-reveal="right"] {
    transform: translate3d(18px, 0, 0);
  }

  html.reveal-ready [data-reveal="media"] {
    transform: scale(0.985);
  }

  html.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
  }

  html.reveal-ready .recovery-record::before {
    transform: scaleX(0);
  }

  html.reveal-ready .recovery-record.is-visible::before {
    animation: rule-grow 520ms cubic-bezier(0.2, 0.75, 0.35, 1) both;
    animation-delay: var(--reveal-delay, 0ms);
  }

  @keyframes hero-intro {
    from {
      opacity: 0;
      transform: translate3d(0, 10px, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes hero-recovery-in {
    from {
      opacity: 0;
      transform: translate3d(0, 12px, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes recovery-path {
    from {
      transform: scaleY(0);
    }

    to {
      transform: scaleY(1);
    }
  }

  @keyframes recovery-node {
    0% {
      border-color: #757a74;
      background: var(--green-deep);
    }

    55% {
      border-color: #9cb2a3;
      background: var(--green-bright);
      box-shadow: 0 0 0 4px rgba(89, 117, 102, 0.16);
    }

    to {
      border-color: #88a18f;
      background: var(--green-bright);
      box-shadow: none;
    }
  }

  @keyframes rule-grow {
    from {
      transform: scaleX(0);
    }

    to {
      transform: scaleX(1);
    }
  }

  @keyframes scroll-cue {
    0%,
    to {
      opacity: 0.3;
      transform: translateY(0) scaleY(0.72);
    }

    50% {
      opacity: 0.78;
      transform: translateY(2px) scaleY(1);
    }
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  html.reveal-ready [data-reveal="left"],
  html.reveal-ready [data-reveal="right"] {
    transform: translate3d(0, 12px, 0);
  }

  html.reveal-ready [data-reveal].is-visible {
    transform: translate3d(0, 0, 0);
  }
}

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

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

/* ==========================================================================
   Website clarity and mobile UX pass, 2026-08-25.
   Additive overrides only: no new palette, no new type family, no new layout
   system. Each rule answers a specific finding from the website audit.
   ========================================================================== */

/* Founder section read as a missing-image placeholder because the short left
   column was top-aligned against a much taller right column. Centering closes
   the gap without adding an asset. */
.company-layout {
  align-items: center;
}

/* Marginal AA failure: 4.43:1 against the required 4.5:1 on the beige band. */
.audience-media figcaption p,
.identity-list dd {
  color: var(--ink-soft);
}

/* Section kickers sat at 4.0:1 on the beige band, just under AA. Same hue,
   one step deeper, so the accent reads unchanged. */
.section-kicker:not(.section-kicker-light) {
  color: #476353;
}

/* The Germany/US context line sits with the legal block, quieter than the
   address it explains. */
.footer-context {
  max-width: 34ch;
  /* The footer ground is --green-deep, so --muted fails badly here (3.21:1).
     Dimmed against the footer's own #b5b5ad instead. */
  color: #9a9a92;
  line-height: 1.5;
}

/* One CTA after the price and scope block, so acting does not require
   scrolling back to the hero. Same button, same rhythm as the timeline above. */
.sprint-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.sprint-cta p {
  max-width: 46ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

@media (max-width: 760px) {
  .sprint-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .sprint-cta .button {
    justify-content: center;
  }

  /* Tap targets. Nav links measured 22-39px wide by 37px high and the primary
     action 36px high; all below the 44px guideline. The sticky header grows by
     11px in total, which is the whole cost of the fix. */
  .nav-shell {
    grid-template-rows: 50px 44px;
  }

  .site-nav a {
    min-height: 44px;
    /* Height was already compliant; width measured 33-41px. Horizontal padding
       carries the hit area past 44px in both dimensions without a hamburger and
       without changing labels or header height. */
    padding: 0 12px;
    font-size: 0.8rem;
  }

  /* Pull the outer two links back to the gutter so the enlarged hit area does
     not visually indent the row against the wordmark above it. */
  .site-nav a:first-child {
    margin-left: -12px;
  }

  .site-nav a:last-child {
    margin-right: -12px;
  }

  .header-action {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.75rem;
  }

  /* Secondary links were 16-17px tall, effectively unhittable on a phone. */
  .footer-links a,
  .footer-legal a,
  .text-action,
  .identity-list a,
  .contact-copy strong a,
  .footer-brand p a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 520px) {
  /* Undersized mobile text. The hero summary carries the value proposition and
     was rendering at 13.6px; the fine print at 11.8px. */
  .hero-summary {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-trust,
  .hero-intro-trust {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .hero-pilot-facts {
    font-size: 0.8rem;
  }

  .hero-kicker {
    font-size: 0.85rem;
  }

  /* Recovery path labels rendered at 9.6-9.9px, the smallest text on the page
     and part of the graphic that explains the offer. */
  .hero-recovery-heading p {
    font-size: 0.85rem;
  }

  .hero-recovery-flow small {
    font-size: 0.78rem;
  }

  .hero-recovery-flow strong {
    font-size: 0.95rem;
  }

  .hero-recovery-flow em {
    font-size: 0.72rem;
  }
}
