@charset "UTF-8";

:root {
  color-scheme: light;
  --paper: #f7f5ee;
  --paper-deep: #efece2;
  --white: #fffefa;
  --ink: #202d29;
  --ink-soft: #53615b;
  --muted: #78827c;
  --line: #dedfd5;
  --line-dark: #40514a;
  --green: #26745c;
  --green-deep: #195642;
  --green-pale: #e5eee7;
  --mint: #aacbb8;
  --sand: #c4a877;
  --max-width: 1160px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 20px 55px rgb(34 47 41 / 8%);
  font-family: "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

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

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

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid #8dbba2;
  outline-offset: 3px;
}

.container {
  width: min(var(--max-width), calc(100% - 56px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: white;
}

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgb(32 45 41 / 8%);
  background: rgb(247 245 238 / 95%);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px 11px 11px 3px;
  background: var(--green);
  color: white;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.brand__copy {
  display: grid;
  line-height: 1.12;
}

.brand__copy strong {
  font-size: 16px;
  letter-spacing: .13em;
}

.brand__copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .03em;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.main-nav a {
  color: #52605a;
  font-size: 13px;
  text-decoration: none;
  transition: color .18s ease;
}

.main-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--small {
  min-height: 39px;
  padding-inline: 15px;
  font-size: 12px;
}

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

.button--primary:hover {
  background: var(--green-deep);
}

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

.button--secondary:hover,
.button--outline:hover {
  border-color: var(--green);
  background: var(--green-pale);
}

.button--light {
  background: #f6f4ec;
  color: var(--green-deep);
}

.button--light:hover {
  background: white;
}

.button--dark-outline {
  border-color: rgb(243 243 232 / 38%);
  color: #f5f4ed;
}

.button--dark-outline:hover {
  border-color: rgb(243 243 232 / 78%);
  background: rgb(255 255 255 / 7%);
}

.button--outline {
  min-height: 40px;
  border-color: var(--line);
  background: transparent;
  color: var(--green-deep);
  font-size: 12px;
}

.section-pad {
  padding-block: 104px;
}

.section-pad--tight {
  padding-block: 82px;
}

.section-tint {
  background: #f0efe6;
}

.section-dark {
  background: #22312c;
  color: #f5f4ed;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 95px 100px;
  background:
    radial-gradient(ellipse at 87% 30%, rgb(220 231 217 / 55%), transparent 33%),
    var(--paper);
}

.hero::after {
  position: absolute;
  top: 0;
  right: max(0px, calc((100vw - var(--max-width)) / 2 - 34px));
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgb(38 116 92 / 13%), transparent);
  content: "";
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(470px, 1.04fr);
  align-items: center;
  gap: clamp(38px, 7vw, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 21px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow__line {
  width: 23px;
  height: 1px;
  background: var(--green);
}

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

.hero h1 {
  max-width: 600px;
  margin-bottom: 22px;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(36px, 4.45vw, 58px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.22;
}

.hero__lead {
  max-width: 530px;
  margin-bottom: 29px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero__fit {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0;
  color: #68766e;
  font-size: 12px;
}

.hero__fit span {
  color: var(--green);
  font-size: 10px;
}

.hero-diagram {
  position: relative;
  min-width: 0;
  padding: 25px 23px 17px;
  border: 1px solid rgb(65 81 73 / 13%);
  border-radius: var(--radius-lg);
  background: rgb(255 254 250 / 82%);
  box-shadow: var(--shadow-soft);
}

.hero-diagram__label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  color: #65726b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-diagram__label span {
  color: #a0a69f;
  font-variant-numeric: tabular-nums;
}

.hero-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr) 58px minmax(0, 1fr);
  align-items: center;
}

.hero-flow__node {
  display: grid;
  min-height: 147px;
  align-content: center;
  justify-items: start;
  padding: 16px 14px;
  border: 1px solid #dfe2d8;
  border-radius: 13px;
  background: #fbfaf5;
}

.hero-flow__node--lie {
  border-color: #a7c4b1;
  background: #edf3ec;
}

.node-kicker {
  margin-bottom: 20px;
  color: #7c8981;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .09em;
}

.hero-flow__node strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.hero-flow__node > span:last-child {
  color: #7c8780;
  font-size: 10px;
  line-height: 1.5;
}

.hero-flow__connector {
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #718077;
  font-size: 8px;
  text-align: center;
}

.hero-flow__connector i {
  color: var(--green);
  font-size: 22px;
  font-style: normal;
  line-height: .8;
}

.diagram-footnote {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
  padding-top: 15px;
  border-top: 1px solid #e8e8e0;
  color: var(--muted);
  font-size: 10px;
}

.status-pill {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding-inline: 8px;
  border: 1px solid #d8dbd1;
  border-radius: 99px;
  color: #69756d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}

.status-pill--green {
  border-color: #bed2c4;
  background: #edf4ef;
  color: var(--green-deep);
}

.section-heading {
  margin-bottom: 43px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .53fr);
  align-items: end;
  gap: 42px;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
  color: var(--green);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

.section-index span {
  color: #8b958d;
  font-weight: 600;
  letter-spacing: .08em;
}

.section-index span::before {
  display: inline-block;
  width: 17px;
  height: 1px;
  margin-right: 11px;
  background: #c7ccc1;
  vertical-align: middle;
  content: "";
}

.section-heading h2,
.final-cta h2 {
  max-width: 740px;
  margin-bottom: 0;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(29px, 3.5vw, 43px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.3;
}

.section-heading__aside {
  max-width: 400px;
  padding-bottom: 3px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
}

.section-heading__aside p {
  margin: 0;
}

.architecture-flow {
  overflow: hidden;
  padding: 21px;
  border: 1px solid #e0e1d9;
  border-radius: var(--radius-md);
  background: #fbfaf5;
}

.flow-chain {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-chain--five {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 23px;
}

.flow-node {
  position: relative;
  display: flex;
  min-height: 158px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px 13px;
  border: 1px solid #e4e5dc;
  border-radius: 12px;
  background: white;
}

.flow-node:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -19px;
  z-index: 1;
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
  content: "→";
}

.flow-node--engine {
  border-color: #a7c4b1;
  background: #eff4ee;
}

.flow-node__step {
  margin-bottom: 19px;
  color: #78857c;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .1em;
}

.flow-node h3 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.4;
}

.flow-node p {
  margin: 0;
  color: #737f77;
  font-size: 10px;
  line-height: 1.6;
}

.flow-node__note {
  margin-top: auto;
  padding-top: 8px;
  color: #8a7043;
  font-size: 9px;
  line-height: 1.4;
}

.architecture-caption {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 900px;
  margin: 17px 0 19px;
  color: #68756d;
  font-size: 11px;
}

.architecture-caption p {
  margin: 0;
}

.caption-mark {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #b8c7bb;
  border-radius: 50%;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color .18s ease;
}

.section-tint .text-link,
.section-dark .text-link {
  color: var(--green);
}

.step-explorer {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  overflow: hidden;
  border: 1px solid #dfe0d7;
  border-radius: var(--radius-md);
  background: #fbfaf5;
  box-shadow: 0 16px 40px rgb(40 49 43 / 4%);
}

.step-list {
  display: grid;
  align-content: start;
  padding: 17px;
  border-right: 1px solid #e3e4dd;
  background: #f5f4ed;
}

.step-button {
  display: flex;
  min-height: 45px;
  align-items: center;
  gap: 13px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #66736b;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  transition: background .18s ease, color .18s ease;
}

.step-button span {
  color: #9aa49b;
  font-size: 9px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.step-button[aria-selected="true"] {
  background: #e5eee7;
  color: var(--green-deep);
  font-weight: 700;
}

.step-button[aria-selected="true"] span {
  color: var(--green);
}

.step-panel {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 5vw, 57px);
}

.step-panel__eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
}

.step-panel h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: 29px;
  letter-spacing: -.03em;
}

.step-panel h3 span {
  margin-left: 8px;
  color: #89938b;
  font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

.step-panel > p:not(.step-panel__eyebrow) {
  max-width: 510px;
  margin-bottom: 29px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.step-panel__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #e4e4dc;
  color: #7d8880;
  font-size: 10px;
}

.step-panel__meta strong {
  color: #47564d;
  font-size: 11px;
}

.section-note {
  margin: 15px 0 18px;
  color: #7b867f;
  font-size: 10px;
}

.module-table-wrap {
  overflow-x: auto;
  border: 1px solid #dfe0d8;
  border-radius: var(--radius-md);
  background: #fbfaf5;
}

.module-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.module-table thead {
  background: #f1f1e9;
  color: #768178;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.module-table th,
.module-table td {
  padding: 17px 22px;
  border-bottom: 1px solid #e7e8df;
  vertical-align: middle;
}

.module-table tbody tr:last-child th,
.module-table tbody tr:last-child td {
  border-bottom: 0;
}

.module-table tbody th {
  width: 33%;
  font-size: 12px;
  font-weight: 700;
}

.module-table tbody th > span:not(.module-code) {
  display: inline;
}

.module-code {
  display: inline-grid;
  width: 33px;
  height: 25px;
  margin-right: 11px;
  place-items: center;
  border-radius: 5px;
  background: #e8eee7;
  color: var(--green);
  font-size: 8px;
  font-weight: 750;
}

.module-table tbody th small {
  display: block;
  margin: 4px 0 0 45px;
  color: #88928b;
  font-size: 10px;
  font-weight: 500;
}

.module-table tbody td {
  color: #59665e;
  font-size: 12px;
}

.module-table__mobile-label {
  display: none;
}

.boundary-callout {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 17px 0 19px;
  padding: 15px 18px;
  border-left: 2px solid var(--green);
  background: #eff2e9;
  color: #5b685f;
  font-size: 11px;
  line-height: 1.75;
}

.boundary-callout p {
  margin: 0;
}

.boundary-callout strong {
  margin-right: 8px;
  color: var(--ink);
}

.boundary-callout__icon {
  color: var(--green);
  font-size: 17px;
  line-height: 1;
}

.section-heading--light .section-index,
.section-index--light {
  color: #9bc5aa;
}

.section-heading--light .section-index span {
  color: #b5c2ba;
}

.section-heading--light .section-index span::before {
  background: #596a60;
}

.section-heading--light .section-heading__aside {
  color: #bdc8c0;
}

.integration-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: #293a33;
}

.integration-options {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 19px;
  border-right: 1px solid var(--line-dark);
}

.integration-option {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) 15px;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 13px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: #e8eee8;
  cursor: pointer;
  text-align: left;
  transition: background .18s ease, border-color .18s ease;
}

.integration-option[aria-pressed="true"] {
  border-color: #728d7b;
  background: #34483e;
}

.integration-option__letter {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid #708779;
  border-radius: 50%;
  color: #bdd6c5;
  font-family: Georgia, serif;
  font-size: 13px;
}

.integration-option strong,
.integration-option small {
  display: block;
}

.integration-option strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.integration-option small {
  color: #abb9b0;
  font-size: 9px;
  line-height: 1.5;
}

.integration-option__arrow {
  color: #abcab6;
  font-size: 13px;
}

.integration-detail {
  padding: clamp(23px, 4vw, 39px);
}

.integration-detail__eyebrow {
  margin-bottom: 12px;
  color: #a7c9b2;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .12em;
}

.integration-detail h3 {
  max-width: 500px;
  margin-bottom: 23px;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: 24px;
  font-weight: 550;
  letter-spacing: -.03em;
  line-height: 1.4;
}

.integration-responsibilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.integration-responsibilities > div {
  min-height: 117px;
  padding: 12px;
  border-top: 1px solid #587065;
  background: rgb(255 255 255 / 3%);
}

.integration-responsibilities span {
  color: #a8cab3;
  font-size: 9px;
  font-weight: 700;
}

.integration-responsibilities p {
  margin: 8px 0 0;
  color: #ced8d1;
  font-size: 10px;
  line-height: 1.7;
}

.integration-detail__note {
  margin: 16px 0 0;
  color: #a7b6ad;
  font-size: 9px;
}

.integration-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 21px;
  color: #bac8bf;
  font-size: 10px;
}

.integration-footer .button {
  margin-left: auto;
}

.use-case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.use-case-card {
  padding: 22px;
  border: 1px solid #e0e1d8;
  border-radius: var(--radius-md);
  background: #fbfaf5;
}

.use-case-card__top {
  display: flex;
  align-items: center;
  gap: 11px;
}

.use-case-number {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #e8eee7;
  color: var(--green);
  font-size: 9px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.use-case-card h3 {
  margin: 0;
  font-size: 15px;
}

.use-case-tag {
  margin-left: auto;
  padding: 4px 7px;
  border: 1px solid #e2e3db;
  border-radius: 99px;
  color: #78847c;
  font-size: 8px;
  line-height: 1.4;
  text-align: right;
}

.use-case-card__intro {
  min-height: 41px;
  margin: 15px 0 9px;
  color: #657168;
  font-size: 11px;
  line-height: 1.7;
}

.use-case-details {
  border-top: 1px solid #e7e7df;
}

.use-case-details summary {
  padding: 12px 0;
  color: var(--green-deep);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  list-style-position: inside;
}

.case-facts {
  display: grid;
  grid-template-columns: minmax(100px, .45fr) minmax(0, 1fr);
  margin: 0;
  padding: 0 0 10px;
  font-size: 10px;
}

.case-facts > div {
  display: contents;
}

.case-facts dt,
.case-facts dd {
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid #eeeee8;
}

.case-facts dt {
  padding-right: 9px;
  color: #738078;
  font-weight: 700;
}

.case-facts dd {
  color: #4f5d55;
  line-height: 1.7;
}

.use-case-cta {
  margin-top: 9px;
}

.pilot-steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, .55fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 65px;
}

.pilot-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pilot-steps li {
  display: grid;
  min-height: 81px;
  align-content: center;
  gap: 7px;
  padding: 12px 14px;
  border: 1px solid #dedfd6;
  border-radius: 11px;
  background: #fbfaf5;
}

.pilot-steps li span {
  color: var(--green);
  font-size: 9px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.pilot-steps li strong {
  font-size: 12px;
}

.pilot-acceptance {
  padding: 21px 23px;
  border-radius: var(--radius-md);
  background: #273730;
  color: #f1f3ed;
}

.pilot-acceptance__eyebrow {
  margin-bottom: 10px;
  color: #a8c7b2;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .13em;
}

.pilot-acceptance h3 {
  margin-bottom: 14px;
  font-size: 15px;
}

.pilot-acceptance ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 12px;
  margin: 0;
  padding: 0;
  color: #c8d2ca;
  font-size: 10px;
  list-style: none;
}

.pilot-acceptance li::before {
  margin-right: 6px;
  color: #9cc4aa;
  content: "·";
}

.pilot-form-layout {
  display: grid;
  grid-template-columns: minmax(210px, .56fr) minmax(0, 1.44fr);
  align-items: start;
  gap: 45px;
}

.pilot-form-intro {
  position: sticky;
  top: 110px;
  padding-top: 12px;
}

.pilot-form-intro .eyebrow {
  margin-bottom: 13px;
  font-size: 9px;
}

.pilot-form-intro h3 {
  max-width: 250px;
  margin-bottom: 12px;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: 24px;
  line-height: 1.4;
}

.pilot-form-intro > p:not(.eyebrow) {
  color: #6c7870;
  font-size: 11px;
  line-height: 1.8;
}

.local-only-note {
  display: flex;
  gap: 9px;
  margin-top: 23px;
  padding: 12px;
  border: 1px solid #d6ddd4;
  border-radius: 9px;
  background: rgb(255 255 255 / 47%);
  color: #69766e;
  font-size: 9px;
  line-height: 1.7;
}

.local-only-note > span {
  color: var(--green);
  font-size: 16px;
  line-height: 1;
}

.local-only-note p {
  margin: 0;
}

.pilot-form-card {
  padding: clamp(21px, 4vw, 36px);
  border: 1px solid #dfe0d7;
  border-radius: var(--radius-md);
  background: #fbfaf6;
  box-shadow: 0 16px 40px rgb(40 49 43 / 4%);
}

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

.form-field {
  min-width: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  color: #35443b;
  font-size: 11px;
  font-weight: 700;
}

.form-field label span {
  color: #9a7664;
  font-size: 8px;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  min-height: 43px;
  padding: 10px 12px;
  border: 1px solid #d5d8cf;
  border-radius: 7px;
  background: #fffefa;
  color: var(--ink);
  font-size: 12px;
}

.form-field textarea {
  min-height: 86px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ba39c;
}

.form-field small {
  display: block;
  margin-top: 5px;
  color: #818c84;
  font-size: 9px;
  line-height: 1.6;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid #e6e7df;
}

.form-actions p {
  margin: 0;
  color: #7d8880;
  font-size: 9px;
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--green-deep);
  font-size: 10px;
}

.preview-card {
  margin-top: 19px;
  padding: 19px;
  border: 1px solid #c9d9cd;
  border-radius: 11px;
  background: #f3f7f1;
}

.preview-card[hidden] {
  display: none;
}

.preview-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #748079;
  font-size: 9px;
}

.preview-card h4 {
  margin: 13px 0 11px;
  font-size: 14px;
}

.preview-content dl {
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr);
  gap: 0 12px;
  margin: 0;
  font-size: 10px;
}

.preview-content dt,
.preview-content dd {
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid #e2e9e1;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.preview-content dt {
  color: #77847b;
  font-weight: 700;
}

.preview-content dd {
  color: #34483b;
}

.preview-card__footnote {
  margin: 13px 0 0;
  color: #768178;
  font-size: 9px;
}

.delivery-list {
  border-top: 1px solid #dcded4;
}

.delivery-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 125px;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  border-bottom: 1px solid #dcded4;
}

.delivery-row__index {
  color: #8b978e;
  font-size: 9px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.delivery-row h3 {
  margin: 0 0 3px;
  font-size: 14px;
}

.delivery-row p {
  margin: 0;
  color: #707c74;
  font-size: 10px;
}

.delivery-row__status {
  justify-self: end;
  padding: 5px 9px;
  border: 1px solid #d1d8cf;
  border-radius: 99px;
  color: #68756c;
  font-size: 9px;
}

.delivery-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 16px 0 19px;
  color: #748077;
  font-size: 10px;
}

.delivery-note span {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #c1c9bf;
  border-radius: 50%;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 10px;
  font-style: italic;
}

.docs-layout {
  display: grid;
  grid-template-columns: minmax(210px, .56fr) minmax(0, 1.44fr);
  gap: 22px;
  align-items: start;
}

.docs-intro-card {
  position: sticky;
  top: 105px;
  padding: 23px;
  border: 1px solid #dde0d6;
  border-radius: var(--radius-md);
  background: #fbfaf5;
}

.docs-folder-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 21px;
  place-items: center;
  border-radius: 10px;
  background: #e6eee5;
  color: var(--green);
  font-size: 21px;
}

.docs-intro-card h3 {
  margin-bottom: 9px;
  font-size: 16px;
}

.docs-intro-card p {
  margin-bottom: 18px;
  color: #707c74;
  font-size: 10px;
  line-height: 1.8;
}

.docs-intro-card .button {
  min-height: 40px;
  padding-inline: 12px;
  font-size: 10px;
}

.docs-directory {
  overflow: hidden;
  border: 1px solid #dfe0d8;
  border-radius: var(--radius-md);
  background: #fbfaf5;
}

.docs-directory details + details {
  border-top: 1px solid #e6e7df;
}

.docs-directory summary {
  display: grid;
  grid-template-columns: 32px minmax(105px, .48fr) minmax(0, 1fr) 16px;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  padding: 10px 17px;
  cursor: pointer;
  list-style: none;
}

.docs-directory summary::-webkit-details-marker {
  display: none;
}

.docs-directory summary::after {
  color: var(--green);
  font-size: 15px;
  content: "+";
}

.docs-directory details[open] summary::after {
  content: "−";
}

.docs-directory summary > span {
  color: #8b968d;
  font-size: 9px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.docs-directory summary strong {
  font-size: 11px;
}

.docs-directory summary small {
  color: #77837b;
  font-size: 9px;
}

.docs-directory details > p {
  margin: -2px 42px 13px 60px;
  color: #67746b;
  font-size: 10px;
  line-height: 1.7;
}

.docs-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.docs-bottom-row p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #768178;
  font-size: 9px;
}

.final-cta {
  background:
    radial-gradient(ellipse at 80% 40%, rgb(97 133 109 / 22%), transparent 37%),
    #283a33;
  color: #f4f3eb;
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  margin-bottom: 13px;
}

.final-cta__inner > div:first-child > p:last-child {
  max-width: 620px;
  margin: 0;
  color: #c1cdc4;
  font-size: 12px;
  line-height: 1.8;
}

.button-row--vertical {
  min-width: 195px;
  flex-direction: column;
}

.site-footer {
  background: #f7f5ee;
}

.site-footer__top {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid #e1e1d9;
}

.brand--footer .brand__mark {
  width: 32px;
  height: 32px;
  font-size: 19px;
}

.site-footer__top > p {
  margin: 0;
  color: #526158;
  font-size: 10px;
  line-height: 1.7;
  text-align: center;
}

.site-footer__top > p span {
  color: #879189;
}

.site-footer__bottom {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: space-between;
  color: #8a938c;
  font-size: 9px;
}

.site-footer__bottom a {
  display: inline-flex;
  gap: 7px;
  color: #69766e;
  text-decoration: none;
}

@media (max-width: 1000px) {
  .site-header__inner {
    flex-wrap: wrap;
    gap: 13px 22px;
    padding-block: 13px;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    padding-top: 5px;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
    gap: 30px;
  }

  .flow-chain--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .flow-node {
    min-height: 136px;
  }

  .flow-node:not(:last-child)::after {
    right: -11px;
    content: "→";
  }

  .flow-node:nth-child(3)::after {
    top: auto;
    right: auto;
    bottom: -17px;
    left: 50%;
    content: "↓";
  }

  .flow-node:nth-child(4) {
    grid-column: 3;
  }

  .flow-node:nth-child(5) {
    grid-column: 2;
  }

  .flow-node:nth-child(4)::after,
  .flow-node:nth-child(5)::after {
    right: auto;
    left: -18px;
    content: "←";
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 130px;
  }

  .container {
    width: min(100% - 36px, var(--max-width));
  }

  .site-header {
    position: relative;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand__copy span {
    font-size: 8px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 8px 19px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .hero {
    padding-block: 66px 72px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(35px, 8vw, 51px);
  }

  .hero__lead {
    font-size: 13px;
  }

  .hero-diagram {
    padding: 19px 15px 14px;
  }

  .hero-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-flow__node {
    min-height: 95px;
    padding: 13px;
  }

  .node-kicker {
    margin-bottom: 8px;
  }

  .hero-flow__connector {
    grid-template-columns: 1fr 20px;
    justify-items: end;
    gap: 8px;
    padding-right: 20px;
  }

  .hero-flow__connector i {
    transform: rotate(90deg);
  }

  .section-pad {
    padding-block: 70px;
  }

  .section-pad--tight {
    padding-block: 64px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .section-heading {
    margin-bottom: 29px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(28px, 7vw, 38px);
  }

  .section-heading__aside {
    max-width: 590px;
    font-size: 12px;
  }

  .architecture-flow {
    padding: 13px;
  }

  .flow-chain--five {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-node:nth-child(4),
  .flow-node:nth-child(5) {
    grid-column: auto;
  }

  .flow-node {
    min-height: 0;
    padding: 13px;
  }

  .flow-node__step {
    margin-bottom: 8px;
  }

  .flow-node:not(:last-child)::after,
  .flow-node:nth-child(3)::after {
    top: auto;
    right: auto;
    bottom: -14px;
    left: 50%;
    z-index: 2;
    content: "↓";
  }

  .flow-node:nth-child(4)::after,
  .flow-node:nth-child(5)::after {
    right: auto;
    left: 50%;
    content: "↓";
  }

  .step-explorer {
    grid-template-columns: 1fr;
  }

  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    border-right: 0;
    border-bottom: 1px solid #e3e4dd;
    padding: 10px;
  }

  .step-button {
    min-height: 41px;
    gap: 8px;
    padding-inline: 9px;
    font-size: 10px;
  }

  .step-panel {
    min-height: 245px;
    padding: 26px 21px;
  }

  .step-panel h3 {
    font-size: 25px;
  }

  .module-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .module-table {
    display: block;
    min-width: 0;
    table-layout: fixed;
  }

  .module-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .module-table tbody {
    display: grid;
    gap: 11px;
  }

  .module-table tbody tr {
    display: grid;
    padding: 13px 15px;
    border: 1px solid #dfe0d8;
    border-radius: 12px;
    background: #fbfaf5;
  }

  .module-table tbody th,
  .module-table tbody td {
    display: grid;
    grid-template-columns: 69px minmax(0, 1fr);
    gap: 8px;
    width: auto;
    align-items: start;
    padding: 9px 0;
    border-bottom: 1px solid #e8e9e1;
    font-size: 10px;
    overflow-wrap: anywhere;
  }

  .module-table tbody th {
    grid-template-columns: 33px minmax(0, 1fr);
    column-gap: 10px;
    padding: 1px 0 12px;
  }

  .module-table tbody th > span:not(.module-code) {
    display: block;
    overflow-wrap: anywhere;
  }

  .module-table tbody th small {
    grid-column: 2;
    margin: 2px 0 0;
  }

  .module-table .module-code {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .module-table tbody td:last-child {
    border-bottom: 0;
  }

  .module-table__mobile-label {
    display: block;
    color: #77847b;
    font-size: 9px;
    font-weight: 700;
  }

  .module-table th,
  .module-table td {
    padding: 14px 15px;
  }

  .integration-layout {
    grid-template-columns: 1fr;
  }

  .integration-options {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 12px;
  }

  .integration-option {
    min-height: 69px;
  }

  .integration-detail {
    padding: 23px 17px;
  }

  .integration-detail h3 {
    font-size: 21px;
  }

  .integration-responsibilities {
    grid-template-columns: 1fr;
  }

  .integration-responsibilities > div {
    min-height: 0;
  }

  .integration-footer {
    flex-wrap: wrap;
  }

  .integration-footer .button {
    width: 100%;
    margin: 9px 0 0;
  }

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

  .use-case-card {
    padding: 18px;
  }

  .pilot-steps-layout {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 44px;
  }

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

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

  .pilot-form-layout,
  .docs-layout {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .pilot-form-intro,
  .docs-intro-card {
    position: static;
  }

  .pilot-form-intro h3 {
    max-width: none;
  }

  .local-only-note {
    margin-top: 12px;
  }

  .docs-intro-card {
    padding: 18px;
  }

  .docs-folder-icon {
    margin-bottom: 13px;
  }

  .docs-directory summary {
    grid-template-columns: 27px minmax(94px, .55fr) minmax(0, 1fr) 13px;
    gap: 7px;
    padding-inline: 12px;
  }

  .docs-directory summary small {
    font-size: 8px;
  }

  .docs-directory details > p {
    margin-left: 46px;
  }

  .docs-bottom-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .button-row--vertical {
    width: 100%;
    min-width: 0;
    flex-direction: row;
  }

  .button-row--vertical .button {
    flex: 1 1 0;
    padding-inline: 12px;
  }

  .site-footer__top {
    min-height: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-block: 25px;
  }

  .site-footer__top > p {
    order: 3;
    flex-basis: 100%;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 30px);
  }

  .review-bar__inner {
    min-height: 37px;
    font-size: 10px;
  }

  .review-bar a {
    max-width: 44%;
    text-align: right;
  }

  .brand__mark {
    width: 33px;
    height: 33px;
  }

  .header-cta {
    min-height: 35px;
    padding-inline: 10px;
    font-size: 10px;
  }

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

  .hero-diagram__label {
    margin-bottom: 15px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .preview-content dl {
    grid-template-columns: 83px minmax(0, 1fr);
    gap: 0 7px;
    font-size: 9px;
  }

  .delivery-row {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    padding-block: 13px;
  }

  .delivery-row__status {
    grid-column: 2;
    justify-self: start;
  }

  .docs-directory summary {
    grid-template-columns: 24px minmax(0, 1fr) 13px;
  }

  .docs-directory summary small {
    grid-column: 2;
    grid-row: 2;
    padding-bottom: 4px;
  }

  .docs-directory summary::after {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .button-row--vertical {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
