@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
}

:root {
  --navy: #112b3d;
  --navy-deep: #0b1e2c;
  --navy-soft: #19394e;
  --paper: #f4f0e8;
  --paper-deep: #e9e3d8;
  --white: #fffdf8;
  --ink: #14232d;
  --muted: #5b6b74;
  --steel: #7d94a0;
  --steel-light: #b7c5cb;
  --copper: #c76636;
  --copper-dark: #a94d24;
  --line: #d8d3ca;
  --line-dark: rgba(255, 255, 255, 0.16);
  --success: #6fa493;
  --shadow: 0 24px 70px rgba(10, 30, 44, 0.12);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope Variable", "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.6rem, 6.3vw, 6.65rem);
  letter-spacing: -0.062em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.2vw, 4.45rem);
}

h3 {
  font-size: 1.35rem;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.section-label,
.eyebrow,
.system-kicker,
.card-number,
.workflow-topline,
.boundary-title,
.request-status {
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-label {
  margin-bottom: 24px;
  color: var(--copper-dark);
}

.section-label-light {
  color: #e49a76;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(11, 30, 44, 0.97);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-wordmark {
  display: block;
  width: 256px;
  height: auto;
  transform: translateY(22%);
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
  font-size: 0.77rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding-block: 9px;
  color: #ced9de;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--copper);
  border-radius: 2px;
  background: var(--copper);
  color: var(--white);
  font: inherit;
  font-size: 0.87rem;
  font-weight: 720;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--copper-dark);
  background: var(--copper-dark);
  transform: translateY(-2px);
}

.button:disabled {
  border-color: #8e776c;
  background: #8e776c;
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button-small {
  min-height: 44px;
  padding: 11px 15px;
  font-size: 0.72rem;
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link:hover {
  color: #f0a27d;
}

.dark-link {
  color: var(--navy);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  padding: 8px 0;
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::after {
  display: inline-block;
  width: 17px;
  height: 11px;
  margin-left: 10px;
  border-block: 1px solid currentColor;
  content: "";
}

.mobile-menu[open] summary::after {
  border-bottom-color: var(--copper);
}

.mobile-menu nav {
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  display: grid;
  gap: 0;
  padding: 18px 24px 26px;
  border-bottom: 1px solid var(--line-dark);
  background: var(--navy-deep);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.22);
}

.mobile-menu nav > a:not(.button) {
  padding: 13px 2px;
  border-bottom: 1px solid var(--line-dark);
}

.mobile-menu nav .button {
  margin-top: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
  background: var(--navy-deep);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 0;
  right: max(-160px, calc((100vw - var(--shell)) / 2 - 280px));
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: 88px;
  padding-bottom: 80px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  max-width: 620px;
  margin-bottom: 25px;
  color: #e29a78;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 34px;
  color: #c3d0d6;
  font-size: 1.14rem;
  line-height: 1.75;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-system {
  position: relative;
  min-height: 465px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(25, 57, 78, 0.5);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.hero-system::before,
.hero-system::after {
  position: absolute;
  width: 38px;
  height: 38px;
  border-color: var(--copper);
  content: "";
}

.hero-system::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--copper);
  border-left: 2px solid var(--copper);
}

.hero-system::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
}

.system-kicker {
  color: var(--steel-light);
}

.system-rail {
  position: absolute;
  top: 88px;
  bottom: 66px;
  left: 48px;
  width: 1px;
  background: var(--steel);
}

.system-node {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 18px;
  grid-template-columns: 38px 1fr;
  column-gap: 16px;
  padding: 12px 14px 12px 0;
}

.system-node > span {
  display: grid;
  width: 38px;
  height: 38px;
  grid-row: 1 / 3;
  place-items: center;
  border: 1px solid var(--steel);
  border-radius: 50%;
  background: var(--navy-soft);
  color: var(--white);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.65rem;
}

.system-node strong {
  align-self: end;
  font-size: 0.94rem;
}

.system-node small {
  color: var(--steel-light);
  font-size: 0.75rem;
}

.approval-node {
  margin-right: -31px;
  padding: 15px 20px 15px 0;
  border: 1px solid rgba(199, 102, 54, 0.7);
  border-left: 0;
  background: rgba(199, 102, 54, 0.11);
}

.approval-node > span {
  border-color: var(--copper);
  background: var(--copper);
}

.system-status {
  position: absolute;
  right: 28px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--steel-light);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-status i,
.request-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(111, 164, 147, 0.15);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.trust-strip p {
  display: flex;
  min-height: 90px;
  margin: 0;
  align-items: center;
  gap: 12px;
  padding: 20px 30px;
  border-right: 1px solid var(--line-dark);
  color: #cfdae0;
  font-size: 0.84rem;
  font-weight: 600;
}

.trust-strip p:first-child {
  padding-left: 0;
}

.trust-strip p:last-child {
  padding-right: 0;
  border-right: 0;
}

.check-icon {
  display: inline-grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 800;
}

.problem-section {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 58px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  max-width: 790px;
  margin: 0;
}

.split-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.96rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.problem-card {
  min-height: 350px;
  padding: 36px;
  border: 1px solid var(--line);
  border-right: 0;
  background: rgba(255, 253, 248, 0.44);
}

.problem-card:last-child {
  border-right: 1px solid var(--line);
}

.problem-card .card-number {
  display: block;
  margin-bottom: 96px;
  color: var(--copper-dark);
}

.problem-card h3 {
  margin-bottom: 18px;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.workflow-section {
  background: var(--navy);
  color: var(--white);
}

.workflow-heading > p {
  color: var(--steel-light);
}

.workflow-grid {
  display: grid;
  margin-top: 66px;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark);
}

.workflow-step {
  position: relative;
  min-height: 216px;
  padding: 27px;
  border-right: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.025);
}

.workflow-step:last-child {
  border-right: 0;
}

.workflow-topline {
  display: flex;
  min-height: 38px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  color: var(--steel-light);
}

.workflow-topline strong {
  padding: 5px 8px;
  border: 1px solid var(--copper);
  color: #f1b08f;
  font-size: 0.56rem;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.workflow-step > p {
  max-width: 210px;
  margin: 44px 0 0;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.35;
}

.workflow-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -14px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--steel);
  border-radius: 50%;
  background: var(--navy);
  color: var(--steel-light);
  font-size: 0.82rem;
  font-style: normal;
  transform: translateY(-50%);
}

.human-review {
  background: rgba(199, 102, 54, 0.1);
  box-shadow: inset 0 3px 0 var(--copper);
}

.service-block {
  display: grid;
  margin-top: 130px;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 100px;
}

.service-intro h2 {
  max-width: 480px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 3.4vw, 3.65rem);
}

.service-list {
  border-top: 1px solid var(--line-dark);
}

.service-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line-dark);
}

.service-item > span {
  color: #e19a78;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.72rem;
}

.service-item h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.service-item p {
  margin: 0;
  color: var(--steel-light);
  font-size: 0.9rem;
}

.target-section {
  background: var(--white);
}

.target-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 110px;
}

.target-grid h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4vw, 4.15rem);
}

.target-copy > p {
  margin-bottom: 64px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.timeline::before {
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.timeline div {
  position: relative;
  padding: 29px 18px 0 0;
}

.timeline div::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 1px var(--copper);
  content: "";
}

.timeline span,
.timeline strong {
  display: block;
}

.timeline span {
  margin-bottom: 7px;
  color: var(--copper-dark);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline strong {
  font-size: 0.8rem;
  line-height: 1.4;
}

.founder-section {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 100px;
}

.founder-photo-wrap {
  position: relative;
  max-width: 450px;
}

.founder-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(20, 35, 45, 0.16);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-accent {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 112px;
  height: 112px;
  border-right: 3px solid var(--copper);
  border-bottom: 3px solid var(--copper);
  pointer-events: none;
}

.founder-copy h2 {
  max-width: 690px;
  font-size: clamp(2.55rem, 4.2vw, 4.45rem);
}

.founder-copy > p:not(.section-label):not(.founder-name) {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.founder-name {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 1.06rem;
  font-weight: 750;
}

.engagement-section {
  background: var(--navy-deep);
  color: var(--white);
}

.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 110px;
}

.engagement-intro h2 {
  max-width: 620px;
}

.engagement-intro > p:last-child {
  color: var(--steel-light);
  font-size: 1.04rem;
}

.price-card {
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--navy-soft);
  box-shadow: 16px 16px 0 rgba(199, 102, 54, 0.16);
}

.price {
  margin-bottom: 7px;
  color: var(--steel-light);
  font-size: 0.88rem;
}

.price span {
  color: var(--white);
  font-size: clamp(3.6rem, 5.8vw, 5.3rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1;
}

.commitment {
  margin-bottom: 5px;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 0;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 0;
  border-top: 1px solid var(--line-dark);
  color: #d3dde1;
  font-size: 0.84rem;
}

.price-card li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.price-card .check-icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
  margin-top: 2px;
}

.security-section {
  background: var(--paper);
}

.security-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 110px;
}

.security-copy h2 {
  max-width: 650px;
}

.security-copy > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.boundary-card {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.boundary-title {
  margin-bottom: 18px;
  color: var(--copper-dark);
}

.boundary-card > div {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.boundary-card > div > span {
  color: var(--steel);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.67rem;
}

.boundary-card > div > strong {
  font-size: 0.96rem;
}

.boundary-card > div > small {
  color: var(--muted);
  font-size: 0.72rem;
}

.fit-section {
  padding-top: 10px;
  background: var(--paper);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}

.fit-card {
  min-height: 330px;
  padding: 48px;
  background: var(--white);
}

.fit-card + .fit-card {
  border-left: 1px solid var(--line);
}

.fit-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 68px;
  place-items: center;
  border: 1px solid var(--success);
  border-radius: 50%;
  color: #3e7765;
  font-size: 1.2rem;
}

.not-fit .fit-icon {
  border-color: var(--copper);
  color: var(--copper-dark);
}

.fit-card h2 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.fit-card p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.request-section {
  background: var(--copper);
  color: var(--white);
}

.request-section .section-label-light {
  color: #ffe1d2;
}

.request-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 100px;
}

.request-grid h2 {
  max-width: 650px;
  font-size: clamp(3rem, 4.8vw, 5rem);
}

.request-grid > div:first-child > p:last-child {
  max-width: 670px;
  margin-bottom: 0;
  color: #ffebe1;
  font-size: 1rem;
  line-height: 1.85;
}

.request-panel {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: var(--navy-deep);
  box-shadow: 14px 14px 0 rgba(82, 35, 14, 0.18);
}

.request-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: var(--steel-light);
}

.request-panel h3 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.request-panel > p {
  margin-bottom: 26px;
  color: var(--steel-light);
}

.request-panel .button {
  margin-bottom: 18px;
}

.request-panel small {
  display: block;
  color: #9fb1ba;
  font-size: 0.68rem;
  line-height: 1.65;
}

.site-footer {
  padding-block: 42px;
  background: var(--navy-deep);
  color: var(--steel-light);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto auto;
  align-items: center;
  gap: 32px;
  font-size: 0.73rem;
}

.footer-inner p {
  margin: 0;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-wordmark {
  width: 230px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 48px;
  }

  .service-block,
  .engagement-grid,
  .security-grid,
  .request-grid {
    gap: 64px;
  }
}

@media (max-width: 860px) {
  .section {
    padding-block: 92px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid,
  .split-heading,
  .target-grid,
  .founder-grid,
  .engagement-grid,
  .security-grid,
  .request-grid,
  .service-block {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-system {
    width: min(100%, 560px);
  }

  .split-heading {
    gap: 26px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .problem-card:last-child {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .problem-card:last-child {
    border-bottom: 1px solid var(--line);
  }

  .problem-card .card-number {
    margin-bottom: 45px;
  }

  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-step:nth-child(2) {
    border-right: 0;
  }

  .workflow-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .workflow-step:nth-child(2) .workflow-arrow {
    display: none;
  }

  .service-block {
    gap: 48px;
  }

  .target-grid,
  .founder-grid,
  .engagement-grid,
  .security-grid,
  .request-grid {
    gap: 58px;
  }

  .founder-photo-wrap {
    width: min(100%, 430px);
  }

  .price-card,
  .boundary-card,
  .request-panel {
    width: min(100%, 620px);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 72px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .section {
    padding-block: 76px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(3.05rem, 14.7vw, 4.2rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.1rem);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-wordmark {
    width: 204px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu nav {
    top: 72px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    min-height: auto;
    gap: 52px;
    padding-bottom: 58px;
  }

  .eyebrow {
    font-size: 0.65rem;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.72;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row .text-link {
    width: fit-content;
  }

  .hero-system {
    min-height: 445px;
    padding: 25px 20px;
  }

  .system-rail {
    left: 38px;
  }

  .system-node {
    grid-template-columns: 35px 1fr;
    column-gap: 13px;
  }

  .system-node > span {
    width: 35px;
    height: 35px;
  }

  .approval-node {
    margin-right: -21px;
  }

  .system-status {
    right: 19px;
    bottom: 20px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding-block: 11px;
  }

  .trust-strip p,
  .trust-strip p:first-child,
  .trust-strip p:last-child {
    min-height: 62px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .trust-strip p:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .problem-card {
    padding: 30px;
  }

  .workflow-grid {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .workflow-step,
  .workflow-step:nth-child(2) {
    min-height: 175px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .workflow-step:last-child {
    border-bottom: 0;
  }

  .workflow-step:nth-child(2) .workflow-arrow {
    display: grid;
  }

  .workflow-arrow {
    top: auto;
    right: 26px;
    bottom: -14px;
    transform: rotate(90deg);
  }

  .workflow-step > p {
    margin-top: 28px;
  }

  .service-block {
    margin-top: 88px;
  }

  .service-item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .target-copy > p {
    margin-bottom: 48px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .timeline div {
    min-height: 86px;
    padding: 0 0 30px 38px;
  }

  .timeline div::before {
    top: 2px;
  }

  .photo-accent {
    right: -10px;
    bottom: -10px;
  }

  .price-card,
  .boundary-card,
  .request-panel {
    padding: 28px;
  }

  .price span {
    font-size: 3.4rem;
  }

  .boundary-card > div {
    grid-template-columns: 32px 1fr;
  }

  .boundary-card > div > small {
    grid-column: 2;
  }

  .fit-section {
    padding-top: 0;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-card {
    min-height: auto;
    padding: 34px 28px;
  }

  .fit-card + .fit-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .fit-icon {
    margin-bottom: 45px;
  }

  .request-grid h2 {
    font-size: clamp(2.8rem, 13vw, 3.7rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .footer-links {
    order: 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.visit-request-form {
  display: grid;
  gap: 20px;
}

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

.visit-request-form label:not(.consent-row):not(.honeypot) {
  display: grid;
  gap: 7px;
}

.visit-request-form label > span {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 650;
}

.visit-request-form label > span small {
  display: inline;
  margin-left: 4px;
  color: var(--steel-light);
  font-size: 0.68rem;
  font-weight: 500;
}

.visit-request-form input:not([type="checkbox"]),
.visit-request-form select,
.visit-request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-size: 0.86rem;
}

.visit-request-form input:not([type="checkbox"]),
.visit-request-form select {
  min-height: 46px;
  padding: 10px 12px;
}

.visit-request-form textarea {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

.visit-request-form select option {
  background: var(--navy-deep);
  color: var(--white);
}

.visit-request-form input:focus-visible,
.visit-request-form select:focus-visible,
.visit-request-form textarea:focus-visible {
  border-color: #e49a76;
  outline: 2px solid #e49a76;
  outline-offset: 2px;
}

.visit-request-form input::placeholder,
.visit-request-form textarea::placeholder {
  color: #9fb1ba;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  cursor: pointer;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--copper);
}

.consent-row span {
  color: var(--steel-light) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  line-height: 1.55;
}

.consent-row a,
.legal-page a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visit-request-form .button {
  margin-bottom: 0;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid;
  font-size: 0.8rem;
  line-height: 1.55;
}

.form-success {
  border-color: var(--success);
  background: rgba(111, 164, 147, 0.14);
  color: #d9eee7;
}

.form-error {
  border-color: #e49a76;
  background: rgba(199, 102, 54, 0.15);
  color: #ffe5d8;
}

.legal-page {
  min-height: 100vh;
  padding-block: 80px 120px;
  background: var(--paper);
}

.legal-shell {
  max-width: 760px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 64px;
  color: var(--copper-dark);
  font-weight: 650;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.legal-page h2 {
  margin-top: 48px;
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.legal-page p {
  color: var(--muted);
}

.legal-updated {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.request-reference {
  margin-top: 40px;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.72rem;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding-block: 48px 80px;
  }
}
