:root {
  --paper: #f6f3ec;
  --white: #ffffff;
  --ink: #171816;
  --pine: #17342d;
  --sage: #dce4db;
  --muted: #5f625d;
  --signal: #b84c32;
  --signal-hover: #9f3f2b;
  --error: #b42318;
  --line: rgba(23, 24, 22, 0.18);
  --line-strong: rgba(23, 24, 22, 0.44);
  --inverse-line: rgba(246, 243, 236, 0.28);
  --shell: min(1280px, calc(100vw - 96px));
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body[data-menu-open="true"] {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 100ms var(--ease);
}

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

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

.site-header :focus-visible,
.hero :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid rgba(246, 243, 236, 0.14);
}

.site-header--static {
  position: relative;
}

.site-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(278px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  min-width: 0;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand__text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  overflow: hidden;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: rgba(246, 243, 236, 0.6);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-header--solution .brand {
  gap: 14px;
}

.site-header--solution .brand strong {
  font-size: 18px;
}

.site-header--solution .brand small {
  padding-left: 14px;
  border-left: 1px solid rgba(246, 243, 236, 0.28);
  font-size: 10px;
}

.site-nav {
  display: flex;
  align-self: stretch;
  align-items: stretch;
  gap: 28px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(246, 243, 236, 0.72);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms var(--ease);
}

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

.site-nav a[aria-current="location"]::after,
.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
}

.site-nav__contact {
  display: none !important;
}

.header-action,
.header-back,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--paper);
  background: var(--signal);
  border: 1px solid var(--signal);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 200ms var(--ease),
    background 200ms var(--ease),
    border-color 200ms var(--ease);
}

.header-action {
  min-width: 96px;
  background: transparent;
  border-color: rgba(246, 243, 236, 0.62);
}

.header-back {
  justify-self: end;
  color: rgba(246, 243, 236, 0.82);
  background: transparent;
  border-color: transparent;
}

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

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

.button:active {
  color: var(--paper);
  background: #873522;
  border-color: #873522;
}

.button:disabled {
  cursor: not-allowed;
  color: rgba(246, 243, 236, 0.72);
  background: #7d766f;
  border-color: #7d766f;
}

.button--inverse {
  color: var(--paper);
  background: transparent;
  border-color: rgba(246, 243, 236, 0.74);
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(246, 243, 236, 0.5);
  border-radius: 4px;
}

.menu-button span {
  width: 19px;
  height: 1px;
  background: currentColor;
  transition:
    transform 200ms var(--ease),
    opacity 200ms var(--ease);
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  height: min(720px, calc(100svh - 128px));
  min-height: 620px;
  overflow: hidden;
  color: var(--paper);
  background: var(--pine);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  margin: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.hero__overlay {
  background: rgba(10, 17, 15, 0.78);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr auto;
  gap: 24px;
  align-items: end;
  padding-block: 56px 40px;
}

.hero__copy {
  grid-column: 1 / span 7;
  align-self: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(246, 243, 236, 0.7);
  font-size: 12px;
  font-weight: 600;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--paper);
}

.breadcrumbs--dark {
  color: var(--muted);
}

.breadcrumbs--dark a:hover,
.breadcrumbs--dark a:focus-visible {
  color: var(--ink);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 700;
}

.hero .eyebrow {
  color: #ef9a83;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: 64px;
  font-weight: 650;
  line-height: 1.12;
}

.hero__claim {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 520;
  line-height: 1.42;
}

.hero__summary {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(246, 243, 236, 0.78);
  font-size: 17px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proofline {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--inverse-line);
  border-bottom: 1px solid var(--inverse-line);
}

.hero__proofline div {
  min-height: 76px;
  padding: 14px 18px;
  border-right: 1px solid var(--inverse-line);
}

.hero__proofline div:last-child {
  border-right: 0;
}

.hero__proofline dt {
  margin-bottom: 2px;
  color: rgba(246, 243, 236, 0.58);
  font-size: 11px;
  font-weight: 700;
}

.hero__proofline dd {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
}

.chapter-nav {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: rgba(246, 243, 236, 0.97);
  border-bottom: 1px solid var(--line);
}

.chapter-nav__inner {
  display: flex;
  min-height: 56px;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.chapter-nav__inner::-webkit-scrollbar {
  display: none;
}

.chapter-nav a {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding-inline: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.chapter-nav a:first-child {
  padding-left: 0;
}

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

.chapter-nav a[aria-current="location"]::after {
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 20px;
  height: 2px;
  background: var(--signal);
  content: "";
}

.chapter-nav a:first-child[aria-current="location"]::after {
  left: 0;
}

.section {
  padding-block: 96px 0;
  scroll-margin-top: 144px;
}

.section--last {
  padding-bottom: 96px;
}

.section-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

.section-head > div {
  grid-column: 1 / span 7;
}

.section-head > p {
  grid-column: 9 / -1;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section h2,
.contact-form h2,
.contact-guide h2 {
  margin-bottom: 0;
  font-size: 44px;
  font-weight: 560;
  line-height: 1.18;
}

.relationship-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.relationship-map::before {
  position: absolute;
  top: 47px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--line);
  content: "";
}

.relationship-map li {
  position: relative;
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

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

.relationship-map__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  color: var(--paper);
  background: var(--ink);
  border: 6px solid var(--paper);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 750;
}

.relationship-map h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.34;
}

.relationship-map p {
  margin-bottom: 0;
  color: var(--muted);
}

.data-table {
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.data-table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.data-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.data-table th,
.data-table td {
  min-height: 88px;
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.data-table thead th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.data-table tbody th {
  width: 19%;
  font-size: 16px;
  font-weight: 650;
}

.data-table td strong,
.data-table td span {
  display: block;
}

.data-table td strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.data-table td span {
  color: var(--muted);
  font-size: 13px;
}

.capability-ledger {
  border-top: 1px solid var(--line-strong);
}

.capability-ledger article {
  display: grid;
  min-height: 112px;
  grid-template-columns: 72px minmax(220px, 0.85fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.capability-ledger article > span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 750;
}

.capability-ledger h3 {
  margin-bottom: 0;
  font-size: 23px;
  font-weight: 650;
}

.capability-ledger p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.approach-line li {
  min-height: 280px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.approach-line li:last-child {
  border-right: 0;
}

.approach-line li > span {
  display: block;
  margin-bottom: 72px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 750;
}

.approach-line h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 650;
}

.approach-line p {
  margin-bottom: 0;
  color: var(--muted);
}

.solution-index {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.solution-index__item {
  display: grid;
  min-height: 196px;
  grid-template-columns: 112px minmax(0, 1fr) 28px;
  gap: 24px;
  align-items: center;
  padding: 28px 24px;
  color: var(--paper);
  background: var(--pine);
  text-decoration: none;
  transition:
    background 200ms var(--ease),
    color 200ms var(--ease);
}

.solution-index__item:hover,
.solution-index__item:focus-visible {
  color: var(--paper);
  background: #21473e;
}

.solution-index__eyebrow {
  align-self: start;
  color: #ef9a83;
  font-size: 12px;
  font-weight: 750;
}

.solution-index__item h3 {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1.25;
}

.solution-index__item p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(246, 243, 236, 0.72);
}

.solution-index__arrow {
  align-self: center;
  color: #ef9a83;
  font-size: 24px;
  line-height: 1;
}

.solution-index__note {
  padding: 28px 24px;
  border-left: 1px solid var(--line);
}

.solution-index__note strong {
  display: block;
  margin-bottom: 12px;
  font-size: 17px;
}

.solution-index__note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  color: var(--ink);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 72px;
  padding-block: 56px 48px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1.5fr;
  gap: 48px;
  padding-block: 58px 44px;
}

.site-footer__grid .site-footer__identity h2 {
  margin-bottom: 14px;
  font-size: 25px;
  font-weight: 600;
}

.site-footer__grid .site-footer__identity p {
  max-width: 370px;
  margin: 0;
  color: rgba(246, 243, 236, 0.62);
}

.site-footer__grid .site-footer__nav,
.site-footer__grid .site-footer__solutions {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 10px;
}

.site-footer__grid .site-footer__solutions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer__grid .site-footer__label {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: rgba(246, 243, 236, 0.48);
  font-size: 11px;
  font-weight: 700;
}

.site-footer__identity strong {
  font-size: 20px;
}

.site-footer__identity p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(246, 243, 236, 0.68);
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  align-content: start;
}

.site-footer nav a {
  color: rgba(246, 243, 236, 0.72);
  font-size: 14px;
  text-decoration: none;
}

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

.site-footer__bottom {
  padding-block: 20px;
  color: rgba(246, 243, 236, 0.55);
  border-top: 1px solid rgba(246, 243, 236, 0.14);
  font-size: 12px;
}

.site-footer__grid + .site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px 24px;
}

.contact-main {
  padding-bottom: 96px;
}

.contact-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  padding-block: 88px 64px;
  border-bottom: 1px solid var(--line-strong);
}

.contact-intro > div {
  grid-column: 1 / span 7;
}

.contact-intro h1 {
  margin-bottom: 22px;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.14;
}

.contact-intro > div > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-intro dl {
  grid-column: 9 / -1;
  margin: 24px 0 0;
}

.contact-intro dl div {
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.contact-intro dt {
  margin-bottom: 4px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 700;
}

.contact-intro dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.contact-workspace {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  padding-top: 64px;
}

.contact-form {
  grid-column: 1 / span 8;
  min-width: 0;
}

.contact-form__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.contact-form__head > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form h2,
.contact-guide h2 {
  font-size: 34px;
}

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

.form-grid__wide {
  grid-column: 1 / -1;
}

.field {
  min-width: 0;
}

.field label:not(.checkbox) {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 650;
}

.field label > span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 650;
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  outline: 0;
  transition:
    border-color 100ms var(--ease),
    box-shadow 100ms var(--ease);
}

.field input:not([type="checkbox"]),
.field select {
  height: 48px;
  padding-inline: 14px;
}

.field textarea {
  min-height: 156px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--signal);
}

.field [aria-invalid="true"] {
  border-color: var(--error) !important;
}

.field-error {
  min-height: 22px;
  margin: 5px 0 0;
  color: var(--error);
  font-size: 13px;
}

.form-help {
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.field-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.field-meta .form-help {
  margin: 0;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.checkbox input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 4px 0 0;
  accent-color: var(--pine);
}

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-form__actions p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 3px solid var(--pine);
  background: var(--sage);
  font-size: 14px;
}

.form-status--error {
  color: var(--error);
  background: #fff2ef;
  border-color: var(--error);
}

.form-status--success {
  color: var(--pine);
}

.form-status--info {
  color: var(--ink);
}

.contact-guide {
  grid-column: 10 / -1;
  align-self: start;
  padding-left: 24px;
  border-left: 1px solid var(--line-strong);
}

.contact-guide ol {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-guide li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
}

.contact-guide li > span {
  color: var(--signal);
  font-size: 11px;
  font-weight: 750;
}

.contact-guide h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.contact-guide p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 40px 20px;
}

.error-page__inner {
  width: min(680px, 100%);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding-block: 48px;
}

.error-page strong {
  display: block;
  margin-bottom: 12px;
  color: var(--signal);
  font-size: 12px;
}

.error-page h1 {
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1.18;
}

.error-page p {
  margin-bottom: 28px;
  color: var(--muted);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 400ms var(--ease),
    transform 400ms var(--ease);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header__inner {
    gap: 18px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .brand strong {
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  :root {
    --shell: min(100% - 64px, 960px);
  }

  .site-header__inner {
    grid-template-columns: minmax(250px, 1fr) auto;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .header-action {
    display: none;
  }

  .hero {
    height: min(700px, calc(100svh - 128px));
    min-height: 610px;
  }

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

  .hero h1 {
    font-size: 50px;
  }

  .hero__claim {
    font-size: 27px;
  }

  .section {
    padding-top: 72px;
  }

  .section--last {
    padding-bottom: 72px;
  }

  .section-head > div {
    grid-column: 1 / span 7;
  }

  .section-head > p {
    grid-column: 8 / -1;
  }

  .section h2 {
    font-size: 38px;
  }

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

  .relationship-map::before {
    display: none;
  }

  .relationship-map li {
    min-height: 230px;
    border-bottom: 1px solid var(--line);
  }

  .relationship-map li:nth-child(2) {
    border-right: 0;
  }

  .relationship-map__number {
    margin-bottom: 40px;
  }

  .capability-ledger article {
    grid-template-columns: 56px minmax(180px, 0.7fr) minmax(0, 1.2fr);
  }

  .contact-intro > div {
    grid-column: 1 / span 8;
  }

  .contact-intro dl {
    grid-column: 9 / -1;
  }

  .contact-form {
    grid-column: 1 / span 8;
  }

  .contact-guide {
    grid-column: 9 / -1;
    padding-left: 16px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 0.7fr 1.4fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  :root {
    --shell: calc(100% - 40px);
  }

  html {
    scroll-behavior: auto;
  }

  .site-header {
    height: 64px;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 49;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    background: var(--ink);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    min-height: 56px;
    border-bottom: 1px solid rgba(246, 243, 236, 0.14);
    font-size: 16px;
  }

  .site-nav a[aria-current="location"]::after,
  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .site-nav__contact {
    display: inline-flex !important;
    margin-top: 20px;
    justify-content: center;
    color: var(--paper) !important;
    background: var(--signal);
    border: 1px solid var(--signal) !important;
    border-radius: 4px;
  }

  .menu-button {
    display: inline-flex;
  }

  html[data-js="false"] .menu-button {
    display: none;
  }

  html[data-js="false"] .site-header {
    height: auto;
  }

  html[data-js="false"] .site-header__inner {
    min-height: 64px;
    grid-template-columns: 1fr;
    padding-block: 16px;
  }

  html[data-js="false"] .site-nav {
    position: static;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 0 16px;
  }

  html[data-js="false"] .site-nav a {
    min-height: 48px;
  }

  .site-nav {
    padding-inline: 20px;
  }

  .header-back {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .hero {
    height: auto;
    min-height: 620px;
  }

  .hero__media img {
    object-position: 64% 50%;
  }

  .hero__overlay {
    background: rgba(10, 17, 15, 0.82);
  }

  .hero__inner {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 24px;
    padding-block: 38px 24px;
  }

  .hero__copy {
    align-self: auto;
  }

  .breadcrumbs {
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.18;
  }

  .hero__claim {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.42;
  }

  .hero__summary {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proofline {
    display: none;
  }

  .chapter-nav {
    top: 64px;
  }

  .chapter-nav__inner {
    width: 100%;
    min-height: 48px;
    padding-left: 20px;
  }

  .chapter-nav a,
  .chapter-nav a:first-child {
    padding-inline: 14px;
  }

  .chapter-nav a[aria-current="location"]::after,
  .chapter-nav a:first-child[aria-current="location"]::after {
    right: 14px;
    left: 14px;
  }

  .section {
    padding-top: 56px;
    scroll-margin-top: 120px;
  }

  .section--last {
    padding-bottom: 56px;
  }

  .section-head {
    display: block;
    margin-bottom: 32px;
  }

  .section-head > p {
    margin: 18px 0 0;
    font-size: 16px;
  }

  .section h2 {
    font-size: 32px;
    line-height: 1.22;
  }

  .relationship-map {
    display: block;
  }

  .relationship-map li,
  .relationship-map li:nth-child(2) {
    display: grid;
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0 14px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .relationship-map__number {
    grid-row: 1 / span 2;
    margin: 0;
    border-width: 4px;
  }

  .relationship-map h3 {
    margin: 2px 0 5px;
    font-size: 21px;
  }

  .relationship-map p {
    grid-column: 2;
  }

  .data-table {
    border: 0;
  }

  .data-table table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .data-table tbody tr {
    margin-bottom: 24px;
    border-top: 1px solid var(--line-strong);
  }

  .data-table tbody th,
  .data-table td {
    min-height: 0;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .data-table tbody th {
    color: var(--signal);
    font-size: 16px;
  }

  .data-table td {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
  }

  .data-table td::before {
    color: var(--muted);
    content: attr(data-label);
    font-size: 12px;
    font-weight: 700;
  }

  .data-table td strong,
  .data-table td span {
    grid-column: 2;
  }

  .data-table td strong {
    grid-row: 1;
    margin: 0;
  }

  .capability-ledger article {
    display: grid;
    min-height: 0;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 4px 12px;
    padding-block: 20px;
  }

  .capability-ledger article > span {
    grid-row: 1 / span 2;
  }

  .capability-ledger h3 {
    font-size: 20px;
  }

  .capability-ledger p {
    grid-column: 2;
  }

  .approach-line {
    display: block;
  }

  .approach-line li {
    display: grid;
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-line li > span {
    margin: 3px 0 0;
  }

  .approach-line h3 {
    font-size: 21px;
  }

  .solution-index {
    display: block;
  }

  .solution-index__item {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 12px;
    padding: 24px 20px;
  }

  .solution-index__eyebrow {
    grid-column: 1 / -1;
  }

  .solution-index__item h3 {
    font-size: 24px;
  }

  .solution-index__note {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer__inner {
    display: block;
    padding-block: 44px 36px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 46px 34px;
  }

  .site-footer nav {
    margin-top: 32px;
  }

  .site-footer__grid .site-footer__nav,
  .site-footer__grid .site-footer__solutions {
    margin-top: 0;
  }

  .site-footer__grid + .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .contact-main {
    padding-bottom: 56px;
  }

  .contact-intro {
    display: block;
    padding-block: 56px 40px;
  }

  .contact-intro h1 {
    font-size: 38px;
    line-height: 1.18;
  }

  .contact-intro > div > p:last-child {
    font-size: 16px;
  }

  .contact-intro dl {
    margin-top: 32px;
  }

  .contact-workspace {
    display: block;
    padding-top: 48px;
  }

  .contact-form__head {
    display: block;
  }

  .contact-form__head > p {
    margin-top: 14px;
  }

  .form-grid {
    display: block;
  }

  .field {
    margin-bottom: 18px;
  }

  .form-help {
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .field-meta {
    margin-bottom: 0;
  }

  .field-meta .form-help {
    margin: 0;
  }

  .contact-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form__actions .button {
    width: 100%;
  }

  .contact-guide {
    margin-top: 56px;
    padding: 36px 0 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .error-page h1 {
    font-size: 36px;
  }
}

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

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

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

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
