@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}

:root {
  --orange: #f45d20;
  --ink: #111111;
  --ink-soft: #373737;
  --paper: #f4f3f1;
  --paper-quiet: #e9e8e4;
  --white: #ffffff;
  --rule-dark: rgba(17, 17, 17, 0.28);
  --rule-light: rgba(255, 255, 255, 0.28);
  --blue: #5e91dc;
  --violet: #a47dcc;
  --green: #4d966e;
  --header-height: 68px;
  --page-gutter: clamp(1.25rem, 3vw, 3.5rem);
  --content-width: 96rem;
  color-scheme: light;
  font-family: "Archivo", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

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

body.nav-open {
  overflow: hidden;
}

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

* {
  scrollbar-color: var(--orange) var(--ink);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border: 2px solid var(--ink);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: rgba(244, 93, 32, 0.25);
}

button {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 0.75rem 1rem;
  font-weight: 800;
  transition: transform 160ms ease-out;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) auto auto;
  align-items: stretch;
  height: var(--header-height);
  border-bottom: 1px solid var(--rule-light);
  background: var(--ink);
  color: var(--paper);
}

.brand {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 44px;
  padding: 0 var(--page-gutter);
}

.brand img {
  width: clamp(8.25rem, 12vw, 10.5rem);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: stretch;
}

.primary-nav a,
.header-action,
.menu-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--rule-light);
  padding: 0 clamp(1.25rem, 2.1vw, 2.25rem);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms ease-out, color 180ms ease-out;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.header-action {
  gap: 1.5rem;
  background: var(--orange);
  color: var(--ink);
  font-weight: 750;
}

.header-action:hover,
.header-action:focus-visible {
  background: var(--paper);
}

.menu-toggle {
  display: none;
  border: 0;
  border-left: 1px solid var(--rule-light);
  background: transparent;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-lines {
  display: grid;
  width: 1.75rem;
  gap: 0.35rem;
}

.menu-lines i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease-out;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr auto;
  border-bottom: 1px solid var(--rule-light);
  background: var(--ink);
  color: var(--paper);
}

.hero-copy {
  z-index: 2;
  grid-column: 1 / span 7;
  grid-row: 1;
  align-self: start;
  padding: clamp(3.5rem, 7vh, 6rem) var(--page-gutter) 10rem;
}

.hero h1,
.section-intro h2,
.architecture-statement h2,
.project-brief h2 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 7.3vw, 6rem);
  font-stretch: 62%;
  font-variation-settings: "wdth" 62, "wght" 850;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 0.84;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero-summary {
  max-width: 35rem;
  margin-bottom: 2rem;
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 0.8rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}

.button-outline {
  color: var(--paper);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

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

.button-orange:hover,
.button-orange:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

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

.button-paper:hover,
.button-paper:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.maker-line {
  display: grid;
  max-width: 43rem;
  min-height: 48px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  padding: 0.6rem 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.maker-line:hover strong,
.maker-line:focus-visible strong {
  color: var(--orange);
}

.register-mark,
.corner-mark {
  position: relative;
  display: block;
  width: 1.7rem;
  height: 1.7rem;
}

.register-mark::before,
.register-mark::after,
.corner-mark::before,
.corner-mark::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.register-mark::before,
.corner-mark::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.register-mark::after,
.corner-mark::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.build-register {
  position: relative;
  z-index: 3;
  grid-column: 7 / -1;
  grid-row: 1;
  align-self: end;
  min-height: 30rem;
  margin-top: 14rem;
  border: 1px solid var(--ink);
  border-right: 0;
  background: var(--orange);
  color: var(--ink);
  padding: clamp(1.5rem, 3vw, 3.25rem);
}

.corner-mark {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
}

.corner-mark-tl { top: 1rem; left: 1rem; }
.corner-mark-tr { top: 1rem; right: 1rem; }
.corner-mark-bl { bottom: 1rem; left: 1rem; }
.corner-mark-br { right: 1rem; bottom: 1rem; }

.register-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.4rem 0 1.25rem;
}

.register-heading h2,
.well-case-statement h3,
.case-identity h3,
.process-stage h3,
.architecture-map strong {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-stretch: 62%;
  font-variation-settings: "wdth" 62, "wght" 820;
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.register-heading span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.register-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.register-tabs button {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 140ms ease-out, color 140ms ease-out;
}

.register-tabs button:hover,
.register-tabs button:focus-visible,
.register-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--paper);
}

.register-tabs button:focus-visible {
  position: relative;
  z-index: 2;
  outline-color: var(--paper);
}

.register-panel {
  display: grid;
  min-height: 17rem;
  grid-template-columns: minmax(9rem, 0.75fr) minmax(0, 2.25fr);
  align-items: stretch;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.register-panel:focus-visible {
  outline-color: var(--paper);
  outline-offset: -7px;
}

.registration-window {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  align-self: center;
  aspect-ratio: 1;
  margin: 1.25rem;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.registration-window span {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.register-proof {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--ink);
  padding: clamp(1.5rem, 3vw, 3rem);
}

.register-proof p {
  max-width: 18ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-stretch: 66%;
  font-variation-settings: "wdth" 66, "wght" 800;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.register-proof > span {
  width: fit-content;
  border-top: 1px solid var(--ink);
  padding-top: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.register-panel.is-aligning .registration-window {
  animation: register-lock 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes register-lock {
  0% { transform: translateX(0.85rem); clip-path: inset(0 20% 0 0); }
  100% { transform: translateX(0); clip-path: inset(0); }
}

.buildline {
  z-index: 4;
  grid-column: 1 / -1;
  grid-row: 2;
  border-top: 1px solid var(--rule-light);
  background: var(--ink);
}

.buildline ol {
  display: grid;
  max-width: var(--content-width);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.buildline li {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  border-right: 1px solid var(--rule-light);
  padding: 0.75rem clamp(1rem, 2vw, 2rem);
}

.buildline li:first-child {
  border-left: 1px solid var(--rule-light);
}

.buildline li::after,
.system-flow li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.buildline li::before,
.system-flow li:not(:last-child)::before {
  position: absolute;
  z-index: 1;
  top: calc(50% - 0.22rem);
  right: 1rem;
  width: 0.45rem;
  height: 0.45rem;
  transform: rotate(45deg);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
}

.buildline span {
  padding-right: 2.25rem;
  font-size: 0.9rem;
  font-weight: 650;
}

.ruled-section {
  border-bottom: 1px solid var(--rule-dark);
  padding: clamp(5rem, 9vw, 9rem) var(--page-gutter);
}

.section-intro {
  display: grid;
  max-width: var(--content-width);
  grid-template-columns: minmax(0, 7fr) minmax(20rem, 4fr);
  gap: clamp(2rem, 8vw, 8rem);
  margin: 0 auto clamp(3.5rem, 6vw, 6rem);
}

.section-intro h2,
.architecture-statement h2,
.project-brief h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(3.25rem, 6.6vw, 6rem);
}

.section-intro > p:last-child {
  align-self: end;
  max-width: 44rem;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

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

.well-case-plate {
  max-width: var(--content-width);
  margin: 0 auto;
  border: 1px solid var(--ink);
}

.well-case-statement {
  display: grid;
  grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 2fr);
  align-items: end;
  border-bottom: 1px solid var(--ink);
  padding: clamp(1.5rem, 4vw, 4rem);
}

.well-case-statement p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.well-case-statement h3 {
  font-size: clamp(2.75rem, 5.6vw, 5.5rem);
}

.product-index {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.85fr;
}

.product-entry {
  min-height: 19rem;
  border-right: 1px solid var(--ink);
  padding: clamp(1.25rem, 2.3vw, 2.5rem);
}

.product-entry:last-child {
  border-right: 0;
}

.product-entry div {
  min-height: 8.5rem;
}

.product-entry span {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-entry h4 {
  margin: 0.6rem 0 0;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  font-stretch: 62%;
  font-variation-settings: "wdth" 62, "wght" 820;
  font-weight: 820;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.product-entry p {
  max-width: 26ch;
  margin-bottom: 0;
  font-weight: 550;
}

.product-convene { background: var(--orange); }
.product-field { background: var(--blue); }
.product-suite { background: var(--violet); }
.product-fin { background: var(--green); }

.shared-foundation {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.shared-foundation span {
  min-height: 54px;
  border-right: 1px solid var(--rule-light);
  padding: 1rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.shared-foundation span:last-child {
  border-right: 0;
}

.well-route {
  display: flex;
  max-width: var(--content-width);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto;
  border-right: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  border-left: 1px solid var(--rule-dark);
  padding: 1.25rem 1.5rem;
}

.well-route p {
  margin: 0;
}

.pricing-snapshot {
  background: var(--orange);
}

.price-snapshot-register {
  display: grid;
  max-width: var(--content-width);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border: 1px solid var(--ink);
}

.price-snapshot-register > div {
  min-height: 17rem;
  border-right: 1px solid var(--ink);
  padding: clamp(1.25rem, 2.4vw, 2.25rem);
}

.price-snapshot-register > div:last-child {
  border-right: 0;
}

.price-snapshot-register dt {
  min-height: 5rem;
  margin-bottom: 3.5rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-snapshot-register dd {
  margin: 0;
}

.price-snapshot-register strong {
  display: block;
  font-size: clamp(2.75rem, 4.2vw, 4.4rem);
  font-stretch: 62%;
  font-variation-settings: "wdth" 62, "wght" 850;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.price-snapshot-register dd span {
  display: block;
  margin-top: 0.75rem;
  line-height: 1.4;
}

.pricing-snapshot-route {
  display: flex;
  max-width: var(--content-width);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  padding: 1.25rem 1.5rem;
}

.pricing-snapshot-route p {
  max-width: 42rem;
  margin: 0;
}

.text-link,
.case-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 2rem;
  font-weight: 750;
}

.text-link:hover,
.text-link:focus-visible,
.case-link:hover,
.case-link:focus-visible {
  color: var(--orange);
}

.work-section,
.process-section {
  background: var(--ink);
  color: var(--paper);
}

.section-intro-dark {
  color: var(--paper);
}

.case-plate {
  display: grid;
  max-width: var(--content-width);
  grid-template-columns: minmax(17rem, 0.95fr) minmax(0, 2.05fr);
  margin: 0 auto 1.5rem;
  border: 1px solid currentColor;
}

.case-orange {
  background: var(--orange);
  color: var(--ink);
}

.case-paper {
  background: var(--paper);
  color: var(--ink);
}

.case-identity {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid currentColor;
  padding: clamp(1.5rem, 3vw, 3.5rem);
}

.case-identity img {
  width: min(100%, 18rem);
  max-height: 10rem;
  object-fit: contain;
  object-position: left center;
}

.case-identity span {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-identity h3 {
  font-size: clamp(2.75rem, 5vw, 5rem);
}

.case-identity-type {
  gap: 4rem;
}

.case-monogram {
  display: grid;
  width: 9rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 3.5rem;
  font-stretch: 62%;
  font-variation-settings: "wdth" 62, "wght" 820;
  font-weight: 820;
}

.case-register {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.case-register > div {
  min-height: 12rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: clamp(1.25rem, 2.2vw, 2.25rem);
}

.case-register > div:nth-child(even) {
  border-right: 0;
}

.case-register dt,
.process-register dt,
.architecture-map span {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-register dd,
.process-register dd {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.case-outcomes,
.case-link {
  grid-column: 2;
}

.case-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid currentColor;
}

.case-outcomes p {
  min-height: 9rem;
  margin: 0;
  border-right: 1px solid currentColor;
  padding: 1.5rem;
}

.case-outcomes p:last-child {
  border-right: 0;
}

.case-outcomes strong,
.brief-questions dt {
  display: block;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-stretch: 66%;
  font-variation-settings: "wdth" 66, "wght" 820;
  font-weight: 820;
  letter-spacing: -0.02em;
  line-height: 1;
}

.case-outcomes span {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-link {
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.case-orange .case-link:hover,
.case-orange .case-link:focus-visible {
  color: var(--paper);
}

.client-register {
  max-width: var(--content-width);
  margin: 2rem auto 0;
  border: 1px solid var(--rule-light);
}

.client-register > p {
  margin: 0;
  border-bottom: 1px solid var(--rule-light);
  padding: 0.9rem 1rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.client-register ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-register li {
  min-height: 8rem;
  border-right: 1px solid var(--rule-light);
  background: var(--paper);
}

.client-register li:last-child {
  border-right: 0;
}

.client-register img {
  max-width: 10rem;
  max-height: 4rem;
  filter: none;
  object-fit: contain;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.client-register a {
  display: grid;
  min-height: 8rem;
  place-items: center;
  padding: 1.25rem;
  text-decoration: none;
  transition: background-color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.client-register a:hover,
.client-register a:focus-visible {
  background: var(--paper-quiet);
}

.client-register a:hover img,
.client-register a:focus-visible img {
  transform: translateY(-0.2rem);
}

.client-register a:focus-visible {
  position: relative;
  z-index: 1;
  outline-offset: -5px;
}

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

.system-flow {
  display: grid;
  max-width: var(--content-width);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  list-style: none;
}

.system-flow li {
  position: relative;
  min-height: 25rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: clamp(1.25rem, 2.4vw, 2.5rem);
}

.system-flow li::after {
  top: 2.15rem !important;
  right: 1.5rem !important;
}

.system-flow li::before {
  top: 1.93rem !important;
  right: 1.5rem !important;
}

.flow-index {
  display: block;
  margin-bottom: clamp(5rem, 10vw, 9rem);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-flow h3 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  font-stretch: 70%;
  font-variation-settings: "wdth" 70, "wght" 760;
  font-weight: 760;
  letter-spacing: -0.02em;
  line-height: 1;
}

.system-flow p {
  max-width: 32ch;
}

.system-flow strong {
  display: block;
  margin-top: 2rem;
  border-top: 1px solid var(--rule-dark);
  padding-top: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.process-register {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid var(--rule-light);
  list-style: none;
}

.process-register > li {
  display: grid;
  grid-template-columns: minmax(17rem, 0.9fr) minmax(0, 2.1fr);
  border-right: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  border-left: 1px solid var(--rule-light);
}

.process-stage {
  display: flex;
  min-height: 18rem;
  align-items: flex-end;
  border-right: 1px solid var(--rule-light);
  padding: clamp(1.5rem, 3vw, 3rem);
}

.process-stage h3 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.process-register dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.process-register dl > div {
  min-height: 9.5rem;
  border-right: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  padding: 1.5rem;
}

.process-register dl > div:nth-child(even) {
  border-right: 0;
}

.process-register dl > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.architecture-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(24rem, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--orange);
}

.architecture-statement h2 {
  max-width: 18ch;
}

.architecture-map {
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.architecture-map > div {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 1.5rem;
}

.architecture-map strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.architecture-map p {
  max-width: 40ch;
  margin: 1rem 0 0;
}

.architecture-section .button {
  grid-column: 2;
  width: fit-content;
}

.project-brief {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(24rem, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(5rem, 9vw, 9rem) var(--page-gutter);
}

.project-brief > div:first-of-type,
.project-brief .brief-questions,
.project-brief .brief-action {
  position: relative;
  z-index: 1;
}

.project-brief h2 {
  max-width: 17ch;
  margin-bottom: 0;
}

.brief-questions {
  margin: 0;
  border-top: 1px solid var(--rule-light);
  border-left: 1px solid var(--rule-light);
}

.brief-questions > div {
  display: grid;
  grid-template-columns: 5rem 1fr;
  min-height: 8rem;
  border-right: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}

.brief-questions dt,
.brief-questions dd {
  padding: 1.25rem;
}

.brief-questions dt {
  margin: 0;
  border-right: 1px solid var(--rule-light);
  color: var(--orange);
  font-size: 2rem;
}

.brief-questions dd {
  margin: 0;
  font-size: 1.1rem;
}

.brief-action {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--rule-light);
  padding-top: 1.5rem;
}

.brief-action p {
  max-width: 27rem;
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) auto;
  gap: 3rem;
  border-top: 1px solid var(--rule-light);
  background: var(--ink);
  color: var(--paper);
  padding: 3rem var(--page-gutter);
}

.footer-brand img {
  width: 11rem;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 34rem;
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: flex-end;
  gap: 0.75rem 1.5rem;
}

.site-footer nav a {
  min-height: 44px;
  align-content: center;
  font-weight: 650;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid var(--rule-light);
  padding-top: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero-copy {
    grid-column: 1 / span 8;
  }

  .build-register {
    grid-column: 7 / -1;
  }

  .hero h1 {
    font-size: clamp(4rem, 8vw, 5.5rem);
  }

  .product-index,
  .system-flow,
  .price-snapshot-register {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-snapshot-register > div:nth-child(2) {
    border-right: 0;
  }

  .price-snapshot-register > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }

  .product-entry:nth-child(2),
  .system-flow li:nth-child(2) {
    border-right: 0;
  }

  .product-entry:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }

  .system-flow li {
    min-height: 20rem;
  }

  .system-flow li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }

  .system-flow li:nth-child(2)::after,
  .system-flow li:nth-child(2)::before {
    display: none;
  }

  .flow-index {
    margin-bottom: 4rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    gap: 0.8rem;
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    transform: translateY(-120%);
    border-bottom: 1px solid var(--rule-light);
    background: var(--ink);
    opacity: 0;
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms ease-out, visibility 180ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .primary-nav a {
    justify-content: flex-start;
    border-top: 1px solid var(--rule-light);
    border-left: 0;
    padding: 1rem var(--page-gutter);
  }

  .hero {
    display: block;
    min-height: 0;
  }

  .hero-copy {
    padding: clamp(3rem, 8vw, 5rem) var(--page-gutter);
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .build-register {
    min-height: 0;
    margin: 0;
    border-right: 1px solid var(--ink);
    border-left: 0;
    padding: clamp(2rem, 6vw, 4rem) var(--page-gutter);
  }

  .register-panel {
    min-height: 18rem;
  }

  .buildline ol {
    grid-template-columns: 1fr;
  }

  .buildline li,
  .buildline li:first-child {
    min-height: 58px;
    border-right: 1px solid var(--rule-light);
    border-bottom: 1px solid var(--rule-light);
    border-left: 1px solid var(--rule-light);
    padding-left: var(--page-gutter);
  }

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

  .section-intro,
  .architecture-section,
  .project-brief {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 2rem;
  }

  .section-intro h2,
  .architecture-statement h2,
  .project-brief h2 {
    font-size: clamp(3.5rem, 11vw, 5.5rem);
  }

  .well-case-statement {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-plate {
    grid-template-columns: 1fr;
  }

  .case-identity {
    min-height: 23rem;
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .case-outcomes,
  .case-link {
    grid-column: 1;
  }

  .client-register ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-register li:nth-child(even) {
    border-right: 0;
  }

  .client-register li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rule-light);
  }

  .process-register > li {
    grid-template-columns: 1fr;
  }

  .process-stage {
    border-right: 0;
    border-bottom: 1px solid var(--rule-light);
  }

  .architecture-section .button,
  .brief-action {
    grid-column: 1;
  }

  .brief-action {
    align-items: flex-start;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .brand {
    padding: 0 0.9rem;
  }

  .brand img {
    width: 7.3rem;
  }

  .menu-toggle {
    gap: 0;
    padding: 0 0.8rem;
  }

  .menu-toggle > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .menu-lines {
    width: 1.5rem;
  }

  .header-action {
    gap: 0.5rem;
    padding: 0 0.8rem;
    font-size: 0.78rem;
  }

  .header-action span {
    display: none;
  }

  .hero-copy {
    padding: 2.25rem var(--page-gutter) 2rem;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 1.25rem;
    font-size: clamp(3.35rem, 15vw, 4.15rem);
    line-height: 0.84;
  }

  .hero-summary {
    max-width: 32ch;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.25rem;
  }

  .hero-actions .button {
    gap: 0.5rem;
    padding: 0.75rem 0.85rem;
    font-size: 0.84rem;
  }

  .maker-line {
    min-height: 44px;
    font-size: 0.7rem;
    letter-spacing: 0.09em;
  }

  .build-register {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .register-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
  }

  .register-heading h2 {
    font-size: 2.25rem;
  }

  .register-heading span {
    font-size: 0.7rem;
  }

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

  .register-panel {
    min-height: 8.5rem;
    grid-template-columns: 5.5rem minmax(0, 1fr);
  }

  .registration-window {
    width: 3.5rem;
    justify-self: start;
    margin: 0.75rem;
  }

  .register-proof {
    border-top: 0;
    border-left: 1px solid var(--ink);
    padding: 0.75rem;
  }

  .register-proof p {
    margin-bottom: 0.5rem;
    font-size: clamp(1.25rem, 5.8vw, 1.55rem);
    line-height: 0.96;
  }

  .register-proof > span {
    padding-top: 0.4rem;
    font-size: 0.6rem;
  }

  .ruled-section,
  .project-brief {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-intro h2,
  .architecture-statement h2,
  .project-brief h2 {
    font-size: clamp(3.2rem, 14vw, 4.6rem);
  }

  .product-index,
  .system-flow,
  .price-snapshot-register {
    grid-template-columns: 1fr;
  }

  .price-snapshot-register > div,
  .price-snapshot-register > div:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .price-snapshot-register > div:last-child {
    border-bottom: 0;
  }

  .price-snapshot-register dt {
    min-height: 0;
    margin-bottom: 2.5rem;
  }

  .pricing-snapshot-route {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-snapshot-route .button {
    width: 100%;
  }

  .product-entry,
  .product-entry:nth-child(2),
  .system-flow li,
  .system-flow li:nth-child(2) {
    min-height: 17rem;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .product-entry:last-child,
  .system-flow li:last-child {
    border-bottom: 0;
  }

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

  .shared-foundation span:nth-child(2) {
    border-right: 0;
  }

  .shared-foundation span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rule-light);
  }

  .well-route {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-register {
    grid-template-columns: 1fr;
  }

  .case-register > div,
  .case-register > div:nth-child(even) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .case-outcomes {
    grid-template-columns: 1fr;
  }

  .case-outcomes p {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .case-outcomes p:last-child {
    border-bottom: 0;
  }

  .system-flow li::after,
  .system-flow li::before {
    display: none;
  }

  .flow-index {
    margin-bottom: 4rem;
  }

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

  .process-register dl > div,
  .process-register dl > div:nth-child(even),
  .process-register dl > div:nth-last-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-light);
  }

  .process-register dl > div:last-child {
    border-bottom: 0;
  }

  .architecture-section {
    gap: 2.5rem;
  }

  .architecture-section .button {
    width: 100%;
  }

  .brief-action {
    flex-direction: column;
  }

  .brief-action .button {
    width: 100%;
  }

  .site-footer {
    gap: 2rem;
  }
}

@media (max-width: 370px) {
  .header-action {
    max-width: 6.5rem;
    text-align: center;
  }

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

  .hero-actions {
    grid-template-columns: 1fr;
  }
}

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

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

@media print {
  .site-header,
  .skip-link,
  .menu-toggle {
    display: none !important;
  }

  body,
  .hero,
  .work-section,
  .process-section,
  .project-brief,
  .site-footer {
    background: #ffffff !important;
    color: #000000 !important;
  }

  a {
    text-decoration: underline;
  }
}
