@font-face {
  font-family: "Dooriax Sans";
  src: url("/fonts/geist-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Dooriax Mono";
  src: url("/fonts/geist-mono-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  color-scheme: light;
  --ink: #0b1e18;
  --ink-soft: #17372c;
  --field: #0f7654;
  --field-dark: #09563d;
  --lime: #c7f45d;
  --paper: #f3f5ef;
  --white: #ffffff;
  --mist: #e1e6df;
  --line: #b9c6be;
  --slate: #40554d;
  --muted: #566861;
  --focus: #205fc7;
  --danger: #a7282d;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --max: 1200px;
  --gutter: 20px;
  --section: 72px;
  font-family: "Dooriax Sans", system-ui, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  padding-bottom: 72px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: "Dooriax Sans", system-ui, sans-serif;
}

button,
input,
select,
textarea {
  font-size: 1rem;
}

a,
button,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

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

::selection {
  background: var(--lime);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  min-height: 68px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--mist);
  background: var(--paper);
}

.brand {
  min-width: 0;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 132px;
  height: auto;
}

.header-cta,
.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 720;
  transition: transform 140ms var(--ease-out), background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-cta {
  padding: 0 13px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  text-decoration: none;
}

.menu-toggle {
  width: 44px;
  padding: 0;
  position: relative;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 20px;
  height: 2px;
  position: absolute;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms var(--ease-out), opacity 120ms ease;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.desktop-nav {
  display: none;
}

.mobile-nav {
  padding: 22px var(--gutter) 40px;
  display: block;
  position: fixed;
  inset: 68px 0 0;
  z-index: 80;
  overflow-y: auto;
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: transform 180ms var(--ease-out), opacity 140ms ease, visibility 0s linear 180ms;
}

.mobile-nav[data-open="true"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

html.menu-open,
html.menu-open body {
  overflow: hidden;
}

.mobile-nav details {
  border-top: 1px solid var(--line);
}

.mobile-nav details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.mobile-nav summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 18px;
  font-weight: 730;
  list-style: none;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::after {
  content: "+";
  font: 500 24px/1 "Dooriax Mono", monospace;
}

.mobile-nav details[open] summary::after {
  content: "−";
}

.mobile-nav-group {
  padding: 2px 0 18px 14px;
  display: grid;
}

.mobile-nav-group a,
.mobile-nav-direct a {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: var(--slate);
  text-decoration: none;
}

.mobile-nav-direct {
  padding: 14px 0;
  display: grid;
}

.mobile-nav-direct a {
  color: var(--ink);
  font-weight: 680;
}

.mobile-nav-action {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  font-weight: 740;
  text-decoration: none;
  transition: transform 140ms var(--ease-out), background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.shell,
.page-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--field-dark);
  font: 720 12px/1.3 "Dooriax Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.035em;
}

p {
  color: var(--slate);
  line-height: 1.65;
}

.home-hero {
  padding-top: 52px;
  padding-bottom: 56px;
}

.home-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 12vw, 4rem);
  line-height: 0.98;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 12vw, 4rem);
  line-height: 0.98;
}

.home-hero .lede,
.page-hero .lede {
  max-width: 64ch;
  margin: 24px 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-actions,
.section-actions {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.button {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 740;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:active,
.header-cta:active,
.mobile-nav-action:active,
.mobile-cta a:active {
  transform: scale(0.97);
}

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

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

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

.button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.trust-line {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 630;
}

.system-map {
  margin-top: 40px;
  border: 1px solid var(--line);
  background: var(--white);
}

.system-map-label {
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 640 10px/1.2 "Dooriax Mono", monospace;
  text-transform: uppercase;
}

.system-map ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-map li {
  min-height: 76px;
  padding: 16px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--mist);
}

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

.system-map li span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font: 740 10px/1 "Dooriax Mono", monospace;
}

.system-map li strong {
  display: block;
  font-size: 15px;
}

.system-map li small {
  margin-top: 4px;
  display: block;
  color: var(--muted);
  line-height: 1.4;
}

.pain-strip {
  padding: 24px var(--gutter);
  background: var(--lime);
}

.pain-strip p {
  max-width: var(--max);
  margin: 0 auto;
  color: var(--ink);
  font-size: 17px;
  font-weight: 720;
  line-height: 1.45;
}

.section {
  padding-top: var(--section);
  padding-bottom: var(--section);
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.page-section h2,
.final-cta h2 {
  max-width: 16ch;
  font-size: clamp(2.1rem, 8vw, 3.4rem);
  line-height: 1.02;
}

.section-heading > p {
  max-width: 66ch;
  margin: 20px 0 0;
}

.ruled-list,
.link-list,
.process-list,
.proof-list,
.page-points,
.faq-list {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.ruled-item,
.link-list > a,
.process-list li,
.proof-list li,
.page-points li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.ruled-item h3,
.process-list h3,
.proof-list strong,
.page-points strong {
  font-size: 1.25rem;
  line-height: 1.25;
}

.ruled-item p,
.process-list p,
.proof-list p,
.page-points p {
  max-width: 66ch;
  margin: 10px 0 0;
}

.ruled-item > a,
.section-link,
.related-links a {
  min-height: 44px;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  color: var(--field-dark);
  font-weight: 720;
  text-decoration: none;
}

.process-list {
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
}

.process-list li::before {
  counter-increment: process;
  content: "0" counter(process);
  color: var(--field-dark);
  font: 720 11px/1.5 "Dooriax Mono", monospace;
}

.link-list > a {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  text-decoration: none;
}

.link-list > a::after,
.section-link::after,
.related-links a::after {
  content: "→";
  color: var(--field-dark);
  font-family: "Dooriax Mono", monospace;
}

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

.dark-section p,
.dark-section .process-list p {
  color: #c1cec8;
}

.dark-section .process-list,
.dark-section .process-list li {
  border-color: rgb(255 255 255 / 0.22);
}

.dark-section .process-list li::before {
  color: var(--lime);
}

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

.faq-list summary {
  min-height: 64px;
  padding: 16px 36px 16px 0;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  right: 4px;
  content: "+";
  color: var(--field-dark);
  font: 500 22px/1 "Dooriax Mono", monospace;
}

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

.faq-list details p {
  max-width: 72ch;
  margin: 0;
  padding: 0 0 22px;
}

.featured-guides {
  display: grid;
  gap: 0;
}

.featured-guides article {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.featured-guides article:first-child {
  border-top: 1px solid var(--line);
}

.featured-guides small,
.article-meta,
.page-meta {
  color: var(--field-dark);
  font: 700 11px/1.4 "Dooriax Mono", monospace;
  text-transform: uppercase;
}

.featured-guides h3 {
  margin-top: 10px;
  font-size: 1.4rem;
}

.featured-guides p {
  margin: 10px 0 0;
}

.featured-guides a {
  min-height: 44px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  color: var(--field-dark);
  font-weight: 720;
}

.breadcrumbs {
  min-height: 48px;
  padding-top: 14px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
}

.breadcrumbs span[aria-hidden="true"] {
  color: var(--line);
}

.page-hero {
  padding-top: 46px;
  padding-bottom: 56px;
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero-facts {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.page-hero-facts li {
  min-height: 58px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  line-height: 1.45;
}

.page-hero-facts li::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 1px var(--field-dark);
  content: "";
}

.direct-answer {
  padding: 24px;
  border-left: 4px solid var(--field);
  background: var(--white);
}

.direct-answer strong {
  display: block;
  margin-bottom: 8px;
}

.direct-answer p {
  margin: 0;
}

.page-section {
  padding-top: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.page-section-copy > p {
  max-width: 72ch;
  margin: 20px 0 0;
}

.page-section-copy > p:first-of-type {
  font-size: 1.05rem;
}

.page-points {
  margin-top: 30px;
}

.related {
  padding-top: 56px;
  padding-bottom: 56px;
}

.related h2 {
  font-size: 1.6rem;
}

.related-links {
  margin-top: 18px;
  display: grid;
  border-top: 1px solid var(--line);
}

.related-links a {
  min-height: 58px;
  margin: 0;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.final-cta {
  padding-top: 64px;
  padding-bottom: 64px;
  background: var(--lime);
}

.final-cta p {
  max-width: 64ch;
  margin: 18px 0 0;
  color: #29453b;
}

.form-wrap {
  padding-top: 56px;
  padding-bottom: 72px;
}

.form-intro h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 11vw, 4rem);
  line-height: 0.98;
}

.form-intro p {
  max-width: 64ch;
  margin: 22px 0 0;
}

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

.contact-options li {
  padding: 16px 0;
  display: grid;
  gap: 5px;
  border-bottom: 1px solid var(--line);
}

.contact-options small {
  color: var(--muted);
}

.contact-options a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: var(--field-dark);
  font-weight: 720;
}

.lead-form {
  margin-top: 40px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.lead-form label {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 680;
}

.lead-form label:first-of-type {
  margin-top: 0;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid #9aa9a1;
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
}

.lead-form textarea {
  min-height: 124px;
  resize: vertical;
}

.lead-form input:invalid:not(:placeholder-shown),
.lead-form textarea:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}

.lead-form .button {
  width: 100%;
  margin-top: 22px;
}

.form-note,
.form-status {
  margin: 14px 0 0;
  font-size: 13px;
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.form-status[data-state="success"] {
  color: var(--field-dark);
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

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

.legal-copy h2 {
  margin-top: 42px;
  font-size: 1.7rem;
}

.legal-copy h3 {
  margin-top: 30px;
  font-size: 1.2rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--slate);
  line-height: 1.7;
}

.site-footer {
  padding: 56px var(--gutter) 96px;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.footer-brand img {
  width: 144px;
  height: auto;
}

.footer-brand p {
  max-width: 42ch;
  color: #c1cec8;
}

.footer-groups {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 22px;
}

.footer-group strong {
  color: var(--lime);
  font: 700 11px/1.2 "Dooriax Mono", monospace;
  text-transform: uppercase;
}

.footer-group nav {
  margin-top: 10px;
  display: grid;
}

.footer-group a {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: #dce5e1;
  font-size: 14px;
}

.footer-legal {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 0.22);
  color: #a8bab2;
  font-size: 12px;
  line-height: 1.6;
}

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

.mobile-cta {
  height: 72px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8px;
  position: fixed;
  inset: auto 0 0;
  z-index: 100;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-cta a {
  min-height: 50px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 740;
  text-align: center;
  text-decoration: none;
  transition: transform 140ms var(--ease-out), background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.mobile-cta a:last-child {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

body.form-active .mobile-cta {
  display: none;
}

@media (min-width: 760px) {
  :root {
    --gutter: 36px;
    --section: 96px;
  }

  .home-hero h1 {
    max-width: 16ch;
    font-size: clamp(3.8rem, 7vw, 5rem);
  }

  .page-hero h1 {
    font-size: clamp(3.8rem, 7vw, 5rem);
  }

  .hero-actions,
  .section-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .system-map ol {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .system-map li {
    min-height: 132px;
    grid-template-columns: 1fr;
    align-content: start;
    border-right: 1px solid var(--mist);
    border-bottom: 0;
  }

  .system-map li:last-child {
    border-right: 0;
  }

  .section-heading,
  .page-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
    gap: 64px;
  }

  .section-heading > p {
    margin-top: 0;
  }

  .ruled-list,
  .link-list,
  .process-list,
  .proof-list,
  .featured-guides,
  .faq-list {
    margin-top: 54px;
  }

  .ruled-item {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 50px;
  }

  .ruled-item p {
    margin-top: 0;
  }

  .process-list li {
    grid-template-columns: 56px minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 30px;
  }

  .process-list li div {
    display: contents;
  }

  .process-list p {
    margin-top: 0;
  }

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

  .featured-guides article {
    padding: 30px 26px;
    border-right: 1px solid var(--line);
  }

  .featured-guides article:first-child {
    padding-left: 0;
    border-top: 0;
  }

  .featured-guides article:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
    gap: 72px;
    align-items: end;
  }

  .page-hero-facts {
    margin-top: 0;
  }

  .direct-answer {
    padding: 28px 34px;
  }

  .page-section-copy > p:first-of-type {
    margin-top: 0;
  }

  .page-section-copy > p + p {
    margin-top: 18px;
  }

  .page-points {
    grid-column: 2;
  }

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

  .related-links a {
    padding: 0 20px;
    border-right: 1px solid var(--line);
  }

  .related-links a:first-child {
    padding-left: 0;
  }

  .related-links a:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .final-cta .shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: end;
  }

  .final-cta .section-actions {
    margin: 0;
  }

  .form-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    gap: 72px;
    align-items: start;
  }

  .lead-form {
    margin-top: 0;
    padding: 30px;
  }

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

  .field-row label {
    margin-top: 0;
  }

  .site-footer {
    padding-bottom: 64px;
  }

  .footer-groups {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1040px) {
  :root {
    --gutter: 48px;
    --section: 112px;
  }

  body {
    padding-bottom: 0;
  }

  .site-header {
    min-height: 76px;
    padding-inline: max(var(--gutter), calc((100vw - var(--max)) / 2));
  }

  .brand img {
    width: 154px;
  }

  .menu-toggle,
  .mobile-nav,
  .mobile-cta {
    display: none !important;
  }

  .header-cta {
    order: 3;
    min-height: 46px;
    padding-inline: 17px;
  }

  .desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .desktop-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--slate);
    font-size: 14px;
    font-weight: 680;
    text-decoration: none;
  }

  .desktop-nav a:hover {
    color: var(--field-dark);
  }

  .home-hero {
    min-height: min(820px, calc(100svh - 76px));
    padding-top: 64px;
    padding-bottom: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.82fr);
    gap: 48px;
    align-items: center;
  }

  .home-hero h1 {
    max-width: 18ch;
    font-size: clamp(3.55rem, 4.7vw, 4.3rem);
  }

  .home-hero-copy {
    padding-bottom: 12px;
  }

  .home-hero .system-map {
    margin-top: 0;
  }

  .home-hero .system-map ol {
    grid-template-columns: 1fr;
  }

  .home-hero .system-map li {
    min-height: 86px;
    grid-template-columns: 34px minmax(0, 1fr);
    align-content: center;
    border-right: 0;
    border-bottom: 1px solid var(--mist);
  }

  .home-hero .system-map li:last-child {
    border-bottom: 0;
  }

  .page-hero {
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .page-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
    gap: 80px;
  }

  .footer-groups {
    margin-top: 0;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  .site-header,
  .mobile-nav,
  .mobile-cta,
  .site-footer,
  .hero-actions,
  .section-actions {
    display: none !important;
  }

  body {
    padding: 0;
    background: white;
  }
}
