:root {
  --ink: #171718;
  --ink-soft: #3f3f43;
  --muted: #6e6e73;
  --paper: #f5f5f7;
  --paper-strong: #ffffff;
  --line: rgba(23, 23, 24, .11);
  --line-light: rgba(255, 255, 255, .16);
  --copper: #c45a32;
  --copper-deep: #9e4225;
  --copper-soft: #f3ded6;
  --teal: #147f88;
  --teal-soft: #d5ecee;
  --green: #3f8763;
  --green-soft: #dcebe3;
  --shadow-small: 0 12px 34px rgba(28, 31, 35, .07);
  --shadow-large: 0 30px 90px rgba(28, 31, 35, .13);
  --page: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: #fff;
  background: var(--copper);
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 14px 0;
  transition: padding .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  padding: 9px 0;
  background: rgba(245, 245, 247, .78);
  border-bottom: 1px solid rgba(23, 23, 24, .07);
  box-shadow: 0 8px 30px rgba(23, 23, 24, .04);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
}

.nav-shell {
  width: var(--page);
  min-height: 48px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
}

.brand img,
.system-title img,
.footer-brand img {
  display: block;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(23, 23, 24, .08);
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(23, 23, 24, .07);
}

.brand-name {
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #4e4e52;
  font-size: 13px;
  font-weight: 600;
}

.primary-nav a,
.site-footer a {
  transition: color .2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--copper);
}

.header-cta {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: end;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: min(900px, 92vh);
  overflow: hidden;
  padding: 126px 0 72px;
  display: grid;
  align-items: center;
  background: #f7f7f8;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 23, 24, .045) 1px, transparent 1px),
    linear-gradient(rgba(23, 23, 24, .045) 1px, transparent 1px),
    linear-gradient(126deg, rgba(196, 90, 50, .13), transparent 34%),
    linear-gradient(302deg, rgba(20, 127, 136, .13), transparent 32%),
    #f7f7f8;
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
  mask-image: linear-gradient(to bottom, #000 0%, #000 74%, transparent 100%);
}

.hero-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(490px, 1.06fr);
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
}

.hero-copy {
  animation: heroEnter .75s cubic-bezier(.2, .7, .2, 1) both;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--copper-deep);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 18px;
  height: 2px;
  display: inline-block;
  background: currentColor;
}

.eyebrow.light {
  color: #efb29b;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 680;
  line-height: 1.07;
}

h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 680;
  line-height: 1.18;
}

.hero-lead {
  max-width: 640px;
  margin: 25px 0 0;
  color: #55555a;
  font-size: clamp(18px, 1.8vw, 21px);
}

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

.button {
  min-height: 50px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--copper);
  border-color: var(--copper);
  box-shadow: 0 14px 34px rgba(196, 90, 50, .2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--copper-deep);
  border-color: var(--copper-deep);
  box-shadow: 0 18px 40px rgba(196, 90, 50, .25);
}

.button-quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, .62);
  border-color: rgba(23, 23, 24, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  background: #fff;
  border-color: rgba(23, 23, 24, .2);
}

.hero-note {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #707075;
  font-size: 12px;
  font-weight: 650;
}

.hero-note i {
  width: 3px;
  height: 3px;
  background: #a4a4a9;
  border-radius: 50%;
}

.system-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .66);
  box-shadow: var(--shadow-large);
  backdrop-filter: saturate(160%) blur(24px);
  -webkit-backdrop-filter: saturate(160%) blur(24px);
  animation: heroEnter .75s .12s cubic-bezier(.2, .7, .2, 1) both;
}

.system-bar {
  min-height: 56px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
}

.system-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 730;
}

.system-title img {
  border-radius: 5px;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #5e6063;
  font-size: 11px;
  font-weight: 650;
}

.system-status i {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: #39a16e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(57, 161, 110, .12);
}

.system-body {
  min-height: 442px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
}

.system-nav {
  padding-top: 23px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--line);
  background: rgba(250, 250, 251, .64);
}

.system-nav span {
  width: 14px;
  height: 14px;
  display: block;
  border: 1px solid rgba(23, 23, 24, .16);
  border-radius: 4px;
}

.system-nav span.active {
  border-color: var(--copper);
  background: var(--copper);
  box-shadow: 0 5px 12px rgba(196, 90, 50, .2);
}

.system-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.system-heading {
  min-height: 90px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.system-heading small,
.system-heading strong {
  display: block;
}

.system-heading small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
}

.system-heading strong {
  font-size: 17px;
}

.system-heading > span {
  padding: 5px 9px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.system-lanes {
  flex: 1;
}

.lane {
  min-height: 86px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: minmax(150px, 1.4fr) minmax(80px, .8fr) auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}

.lane:hover {
  background: rgba(255, 255, 255, .68);
}

.lane-label {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.lane-label strong,
.lane-label small {
  display: block;
}

.lane-label strong {
  font-size: 12px;
}

.lane-label small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.lane-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 850;
}

.lane-icon.copper {
  color: var(--copper-deep);
  background: var(--copper-soft);
}

.lane-icon.teal {
  color: #0d6970;
  background: var(--teal-soft);
}

.lane-icon.green {
  color: #357353;
  background: var(--green-soft);
}

.lane-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.lane-flow span {
  height: 5px;
  display: block;
  overflow: hidden;
  background: #dedee1;
  border-radius: 999px;
}

.lane-flow span.filled {
  position: relative;
  background: #afafb4;
}

.lane-flow span.filled::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7), transparent);
  animation: laneShimmer 3s ease-in-out infinite;
}

.lane-state {
  color: #68686d;
  font-size: 10px;
  font-weight: 720;
  white-space: nowrap;
}

.system-footer {
  min-height: 80px;
  padding: 17px 20px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.system-footer p {
  margin: 0;
  color: #626267;
  font-size: 11px;
}

.system-footer strong {
  color: var(--ink);
}

.pulse-line {
  position: relative;
  height: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 7%, var(--teal) 7% 24%, transparent 24% 32%, var(--copper) 32% 58%, transparent 58% 70%, var(--green) 70% 100%);
  clip-path: polygon(0 52%, 8% 52%, 14% 25%, 20% 80%, 27% 52%, 45% 52%, 53% 12%, 60% 90%, 67% 52%, 80% 52%, 86% 32%, 92% 70%, 100% 52%, 100% 58%, 92% 76%, 86% 39%, 80% 58%, 67% 58%, 60% 96%, 53% 19%, 45% 58%, 27% 58%, 20% 87%, 14% 32%, 8% 58%, 0 58%);
}

.pulse-line span {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .72);
  animation: pulseReveal 3.2s ease-in-out infinite;
}

.principles {
  position: relative;
  z-index: 3;
  color: #fff;
  background: var(--ink);
}

.principles-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principles p {
  min-height: 76px;
  margin: 0;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  color: #d4d4d7;
  font-size: 12px;
  font-weight: 620;
}

.principles p:first-child {
  padding-left: 0;
}

.principles p:last-child {
  padding-right: 0;
  border-right: 0;
}

.principles span {
  color: #e89776;
  font-size: 10px;
  font-weight: 800;
}

.section {
  padding: clamp(88px, 10vw, 144px) 0;
}

.services {
  background: var(--paper);
}

.section-intro,
.service-grid,
.process-heading,
.process-list {
  width: var(--page);
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  max-width: 780px;
  margin-left: max(20px, calc((100% - min(1180px, calc(100% - 40px))) / 2));
}

.section-intro > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.service-item {
  min-height: 178px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) minmax(230px, .7fr);
  align-items: start;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.service-item h3 {
  margin-bottom: 10px;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--copper-deep);
  background: var(--copper-soft);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 850;
}

.service-number.teal-number {
  color: #0d6970;
  background: var(--teal-soft);
}

.service-number.green-number {
  color: #357353;
  background: var(--green-soft);
}

.service-number.ink-number {
  color: #fff;
  background: var(--ink);
}

.service-item .service-detail {
  justify-self: end;
  padding-top: 6px;
  color: #4f4f54;
  font-size: 13px;
  font-weight: 650;
  text-align: right;
}

.solutions {
  padding: clamp(88px, 10vw, 138px) 0;
  color: #fff;
  background:
    linear-gradient(132deg, rgba(196, 90, 50, .2), transparent 35%),
    linear-gradient(312deg, rgba(20, 127, 136, .18), transparent 36%),
    #171718;
}

.solutions-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(560px, 1.2fr);
  align-items: start;
  gap: clamp(48px, 7vw, 96px);
}

.solutions-intro {
  position: sticky;
  top: 110px;
}

.solutions-intro > p:last-child {
  max-width: 490px;
  margin: 22px 0 0;
  color: #aaaab0;
  font-size: 17px;
}

.solution-tool {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .23);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.solution-tabs {
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-bottom: 1px solid var(--line-light);
}

.solution-tab {
  min-height: 44px;
  padding: 0 12px;
  color: #aaaab0;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 720;
  transition: color .2s ease, background .2s ease;
}

.solution-tab:hover,
.solution-tab:focus-visible {
  color: #fff;
}

.solution-tab.active {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.solution-panels {
  min-height: 420px;
}

.solution-panel {
  min-height: 420px;
  padding: clamp(32px, 5vw, 54px);
  display: grid;
  grid-template-rows: 1fr auto;
  animation: panelEnter .3s ease both;
}

.solution-panel[hidden] {
  display: none;
}

.panel-kicker {
  margin: 0 0 18px;
  color: #e89776;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-panel h3 {
  max-width: 540px;
  font-size: clamp(30px, 3.3vw, 44px);
}

.solution-panel > div > p:last-child {
  max-width: 540px;
  margin: 18px 0 0;
  color: #b7b7bc;
  font-size: 16px;
}

.solution-panel ul {
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.solution-panel li {
  min-height: 78px;
  padding: 17px 15px 0;
  border-right: 1px solid var(--line-light);
  color: #e3e3e5;
  font-size: 12px;
  font-weight: 650;
}

.solution-panel li:first-child {
  padding-left: 0;
}

.solution-panel li:last-child {
  border-right: 0;
}

.solution-panel li span {
  margin-bottom: 9px;
  display: block;
  color: #e89776;
  font-size: 9px;
  font-weight: 820;
}

.process {
  background: #fff;
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .65fr);
  align-items: end;
  gap: 60px;
}

.process-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
}

.process-list {
  margin-top: 66px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  min-height: 240px;
  padding: 28px 24px 20px;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-list li > span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 850;
}

.process-list h3 {
  margin-top: 36px;
  font-size: 21px;
}

.process-list p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  padding: clamp(92px, 11vw, 154px) 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(196, 90, 50, .88), rgba(158, 66, 37, .96) 56%),
    var(--copper);
}

.contact-inner {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.contact .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, .74);
}

.contact h2 {
  font-size: clamp(40px, 5.3vw, 68px);
}

.contact-inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.contact-link {
  max-width: 690px;
  min-height: 72px;
  margin: 42px auto 0;
  padding: 0 12px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(83, 29, 12, .2);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  text-align: left;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  background: #fff;
  box-shadow: 0 26px 60px rgba(83, 29, 12, .26);
  transform: translateY(-3px);
}

.contact-link i {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 20px;
  font-style: normal;
}

.site-footer {
  width: var(--page);
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 12px;
}

.footer-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-brand img {
  flex: 0 0 auto;
  border-radius: 7px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 12px;
}

.footer-brand span {
  margin-top: 2px;
  font-size: 10px;
}

.site-footer > a {
  justify-self: end;
  color: var(--ink-soft);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(20, 127, 136, .55);
  outline-offset: 3px;
}

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes panelEnter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@keyframes laneShimmer {
  0%, 30% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

@keyframes pulseReveal {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(110%); }
}

@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

  .system-visual {
    max-width: 760px;
  }

  .principles-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles p:nth-child(2) {
    border-right: 0;
  }

  .principles p:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .solutions-inner {
    grid-template-columns: 1fr;
  }

  .solutions-intro {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 32px, 1180px);
  }

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

  .primary-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .service-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .service-item .service-detail {
    grid-column: 2;
    justify-self: start;
    padding-top: 4px;
    text-align: left;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-heading > p {
    max-width: 650px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(3) {
    padding-left: 0;
  }

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

@media (max-width: 620px) {
  :root {
    --page: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 9px 0;
    background: rgba(245, 245, 247, .82);
    border-bottom: 1px solid rgba(23, 23, 24, .06);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
  }

  .brand-name {
    max-width: 150px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    padding: 108px 0 54px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .system-bar {
    padding: 0 12px;
  }

  .system-status {
    font-size: 0;
  }

  .system-body {
    min-height: 406px;
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .system-nav {
    gap: 16px;
  }

  .system-nav span {
    width: 12px;
    height: 12px;
  }

  .system-heading {
    min-height: 82px;
    padding: 16px 14px;
  }

  .system-heading strong {
    font-size: 14px;
  }

  .lane {
    min-height: 86px;
    padding: 14px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .lane-flow {
    display: none;
  }

  .lane-label small {
    max-width: 150px;
  }

  .lane-state {
    font-size: 9px;
  }

  .system-footer {
    padding: 15px 14px;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
  }

  .principles-inner {
    grid-template-columns: 1fr;
  }

  .principles p,
  .principles p:first-child,
  .principles p:last-child {
    min-height: 56px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

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

  .section-intro {
    margin-left: auto;
  }

  .section-intro > p:last-child,
  .contact-inner > p:not(.eyebrow) {
    font-size: 16px;
  }

  .service-grid {
    margin-top: 42px;
  }

  .service-item {
    min-height: 0;
    padding: 26px 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
  }

  .service-number {
    width: 36px;
    height: 36px;
  }

  .service-item h3 {
    font-size: 21px;
  }

  .solutions {
    padding: 82px 0;
  }

  .solution-tabs {
    grid-template-columns: 1fr;
  }

  .solution-tab {
    min-height: 40px;
    text-align: left;
  }

  .solution-panels,
  .solution-panel {
    min-height: 0;
  }

  .solution-panel {
    padding: 30px 22px;
  }

  .solution-panel h3 {
    font-size: 31px;
  }

  .solution-panel ul {
    grid-template-columns: 1fr;
  }

  .solution-panel li,
  .solution-panel li:first-child {
    min-height: 54px;
    padding: 14px 0;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

  .solution-panel li span {
    margin: 0;
  }

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

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(3),
  .process-list li:last-child {
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .process-list h3 {
    margin-top: 16px;
  }

  .contact-link {
    min-height: 64px;
    padding-left: 16px;
  }

  .contact-link span {
    min-width: 0;
    font-size: 14px;
  }

  .contact-link i {
    width: 42px;
    height: 42px;
  }

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

  .site-footer > a {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
