:root {
  --ink: #182e29;
  --green: #123e37;
  --muted: #64716a;
  --line: #dfe5dd;
  --paper: #f9faf6;
  --white: #fff;
  --wash: #eff3e9;
  --lime: #dff08b;
  --radius: 12px;
  --shell: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #5f8164;
  outline-offset: 5px;
}
button:disabled {
  cursor: not-allowed;
}
p,
h1,
h2,
h3 {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.3;
  letter-spacing: -0.035em;
}
h1 {
  font-weight: 650;
}
h2 {
  font-weight: 620;
}
h3 {
  font-weight: 600;
}
p {
  color: var(--muted);
}
img {
  display: block;
  max-width: 100%;
}
em {
  font-style: normal;
}
small {
  font-weight: 400;
}
ul,
ol {
  padding-left: 22px;
}
.shell {
  width: min(var(--shell), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--green);
  color: var(--white);
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 550;
  line-height: 1.5;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #21594d;
  transform: translateY(-1px);
}
.button-small {
  padding: 10px 17px;
  gap: 18px;
  font-size: 13px;
}
.button-light {
  background: var(--lime);
  color: var(--green);
}
.button-light:hover {
  background: #eafbaf;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 550;
  font-size: 14px;
  color: var(--green);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 15px;
  padding: 8px 16px;
  background: var(--white);
  z-index: 100;
}
.skip-link:focus {
  top: 8px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 250, 246, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 23px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand-en {
  display: block;
  font-size: 8px;
  letter-spacing: 0.2em;
  margin-top: 5px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav > a:not(.button) {
  font-size: 13px;
  color: #495a50;
}
nav > a:not(.button):hover,
nav > a:not(.button)[aria-current="page"] {
  color: var(--green);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--green);
}
.hero {
  display: grid;
  grid-template-columns: 0.91fr 1.09fr;
  gap: 48px;
  align-items: center;
  padding-block: 76px 72px;
  min-height: 660px;
}
.hero h1 {
  font-size: clamp(42px, 4.7vw, 66px);
  line-height: 1.24;
  letter-spacing: -0.065em;
  margin-bottom: 26px;
}
.hero h1 em {
  color: #4d7861;
}
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #527d56;
  border-radius: 50%;
}
.beta {
  font-size: 10px;
  letter-spacing: 0.02em;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1px 6px;
  color: var(--muted);
}
.hero-description {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}
.hero-actions {
  display: flex;
  gap: 27px;
  align-items: center;
}
.hero-facts {
  display: flex;
  gap: 18px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 21px;
}
.hero-facts span:before {
  content: "✓";
  color: #617953;
  padding-right: 6px;
}
.product-stage {
  background: #e6ece0;
  border: 1px solid #dce3d4;
  padding: 23px 21px 19px;
  border-radius: 15px;
  position: relative;
}
.stage-top,
.stage-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #65755d;
  font-size: 9px;
  letter-spacing: 0.13em;
}
.stage-top {
  margin-bottom: 22px;
}
.stage-label {
  letter-spacing: 0;
  font-size: 9px;
}
.stage-caption {
  margin-top: 19px;
  letter-spacing: 0.03em;
  font-size: 10px;
}
.product-window {
  background: var(--white);
  border: 1px solid #d9dfd4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 32px #2a3b2710;
}
.window-bar {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e8ece7;
  padding: 0 13px;
  font-size: 9px;
  color: #6a786e;
}
.window-dots {
  color: #b2beb2;
  letter-spacing: 3px;
  font-size: 8px;
}
.window-date {
  margin-left: auto;
  font-size: 8px;
}
.product-body {
  display: grid;
  grid-template-columns: 47px 1fr;
  min-height: 334px;
}
.demo-sidebar {
  background: var(--green);
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #bbcfc2;
  font-size: 8px;
  gap: 8px;
  padding-top: 13px;
}
.demo-sidebar strong {
  color: var(--lime);
  font-size: 19px;
  margin-bottom: 10px;
}
.demo-sidebar span {
  padding: 5px 11px;
  white-space: nowrap;
}
.demo-sidebar .selected {
  background: #335a4e;
  color: #fff;
  border-radius: 3px;
}
.demo-main {
  padding: 20px 17px 12px;
  min-width: 0;
}
.demo-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mini-eyebrow {
  font-size: 8px;
  color: #7d8a7e;
}
.demo-heading h2 {
  font-size: 16px;
  letter-spacing: -0.04em;
  margin: 4px 0;
}
.demo-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eaf0e3;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: #577247;
}
.demo-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.demo-metrics > div {
  padding: 11px;
  background: #f6f8f3;
  border: 1px solid #e9eee3;
  border-radius: 5px;
}
.demo-metrics span {
  display: block;
  font-size: 8px;
  color: #6c776a;
}
.demo-metrics strong {
  display: block;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
  color: var(--green);
}
.demo-metrics small {
  font-size: 8px;
}
.demo-metrics i {
  font-style: normal;
  font-size: 7px;
  color: #748267;
}
.demo-table-title {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  margin-bottom: 10px;
}
.demo-table-title span {
  font-size: 8px;
  color: #7c8876;
}
.demo-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 8px;
  text-align: left;
  white-space: nowrap;
}
.demo-table th {
  font-weight: 400;
  color: #6f7c6d;
  background: #f7f9f4;
  padding: 6px;
}
.demo-table td {
  padding: 9px 6px;
  border-bottom: 1px solid #edf0e8;
}
.demo-table b {
  font-weight: 500;
}
.demo-table small {
  font-size: 7px;
  color: #7e897c;
  margin-left: 7px;
}
.pill {
  padding: 2px 5px;
  background: #eaf2e6;
  color: #4b6741;
  border-radius: 3px;
  font-size: 7px;
}
.pill.amber {
  background: #f9f1dc;
  color: #826929;
}
.demo-bottom {
  color: #85907f;
  font-size: 7px;
  margin-top: 12px;
}
.tiny-lock {
  margin-right: 4px;
}
.promise-strip {
  border-block: 1px solid var(--line);
}
.promise-strip > .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 21px;
  gap: 24px;
}
.promise-strip span {
  font-size: 12px;
  color: #53624e;
}
.promise-strip b {
  font-size: 10px;
  color: #83907b;
  letter-spacing: 0.12em;
  margin-right: 12px;
  font-weight: 500;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 42px;
}
.section-heading h2 {
  font-size: 33px;
  margin: 0;
}
.section-heading > p {
  font-size: 13px;
  margin: 0;
}
.section-heading .eyebrow {
  margin-bottom: 13px;
}
.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.feature-lead {
  background: var(--wash);
  border: 1px solid var(--line);
  padding: 38px;
  border-radius: var(--radius);
}
.feature-number {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #768166;
}
.feature-lead h3 {
  font-size: 28px;
  margin-top: 28px;
  margin-bottom: 18px;
}
.feature-lead p {
  font-size: 13px;
  max-width: 355px;
}
.flow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 35px;
  font-size: 10px;
}
.flow-line span {
  background: #fff;
  border: 1px solid #dce4d2;
  padding: 9px 12px;
  border-radius: 5px;
}
.flow-line i {
  font-style: normal;
  color: #8e9b7f;
}
.feature-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-list article {
  display: flex;
  gap: 24px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}
.feature-list article:first-child {
  padding-top: 10px;
}
.feature-list article:last-child {
  border-bottom: 0;
  padding-bottom: 10px;
}
.feature-symbol {
  font-size: 28px;
  line-height: 1.2;
  color: #6a8061;
  min-width: 30px;
}
.feature-list h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.feature-list p {
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
}
.local-section {
  background: #f0f2ea;
  border-block: 1px solid var(--line);
}
.local-layout {
  padding-block: 74px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 105px;
}
.local-layout h2 {
  font-size: 37px;
  line-height: 1.4;
  margin-bottom: 22px;
}
.local-layout > div > p:not(.eyebrow) {
  font-size: 14px;
  max-width: 375px;
}
.workflow-list > div {
  display: flex;
  gap: 25px;
  margin-bottom: 26px;
}
.workflow-list > div:last-child {
  margin-bottom: 0;
}
.workflow-list > div > span {
  font-size: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid #cbd5c2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #7d8e6b;
}
.workflow-list h3 {
  font-size: 17px;
  margin: 2px 0 7px;
}
.workflow-list p {
  font-size: 12px;
  max-width: 350px;
  margin: 0;
  line-height: 1.9;
}
.scope-note {
  grid-column: 1/-1;
  border-top: 1px solid #d9dfd1;
  margin: 25px 0 0;
  padding-top: 17px;
  font-size: 11px;
}
.pricing-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.pricing-copy h2 {
  font-size: 36px;
  line-height: 1.45;
}
.pricing-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 28px;
}
.price-panel {
  background: var(--green);
  color: #f3f7ef;
  padding: 35px 38px;
  border-radius: var(--radius);
}
.price-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}
.trial-tag {
  font-size: 10px;
  background: #2f564b;
  border: 1px solid #577062;
  padding: 4px 9px;
  border-radius: 4px;
  color: #e4ebce;
}
.price {
  color: #fff;
  display: flex;
  align-items: baseline;
  font-size: 57px;
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 30px 0 12px;
}
.price > span {
  font-size: 23px;
  margin-right: 8px;
}
.price > small {
  font-size: 12px;
  letter-spacing: 0;
  color: #c6d2c5;
  margin-left: 12px;
}
.price-caption {
  font-size: 12px;
  color: #c6d2c5;
  border-bottom: 1px solid #426055;
  padding-bottom: 22px;
}
.price-panel ul {
  list-style: none;
  padding: 0;
  margin: 23px 0 27px;
  display: grid;
  gap: 11px;
  font-size: 12px;
  color: #e2ebdd;
}
.price-panel li:before {
  content: "✓";
  color: var(--lime);
  margin-right: 13px;
}
.price-panel .button {
  width: 100%;
  justify-content: space-between;
}
.price-note {
  font-size: 10px;
  color: #c0cfbf;
  line-height: 1.8;
  margin: 15px 0 0;
}
.faq-section {
  padding-top: 10px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}
.faq-section h2 {
  font-size: 34px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-list details:first-child {
  padding-top: 0;
}
.faq-list summary {
  font-size: 15px;
  font-weight: 550;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 22px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  font-size: 18px;
  color: #859578;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  font-size: 13px;
  margin: 14px 26px 0 0;
  line-height: 1.9;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 42px;
  background: #f2f5ee;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.footer-top p {
  font-size: 11px;
  margin: 15px 0;
}
.footer-links {
  display: flex;
  gap: 30px;
  font-size: 12px;
  color: #62705c;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-block: 18px;
  margin-top: 25px;
  font-size: 10px;
  color: #75816d;
}
.page-intro {
  padding-block: 66px 45px;
}
.page-intro h1 {
  font-size: 45px;
  margin-bottom: 20px;
}
.page-intro > p:last-child {
  font-size: 15px;
  margin-bottom: 0;
}
.download-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 60px;
  padding-top: 12px;
}
.download-panel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
}
.download-title {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.windows-icon {
  font-size: 36px;
  color: var(--green);
  line-height: 1;
}
.download-title h2 {
  font-size: 20px;
  margin-bottom: 5px;
}
.download-title p {
  font-size: 11px;
  margin: 0;
}
.status-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border: 1px solid #d3dec6;
  background: #f2f6eb;
  color: #5a7050;
  font-size: 10px;
  border-radius: 4px;
}
.download-title .status-tag {
  margin-left: auto;
}
.download-panel h3 {
  font-size: 24px;
  margin: 27px 0 14px;
}
.download-panel #latest-release > p {
  font-size: 13px;
  max-width: 460px;
  margin-bottom: 26px;
}
.download-facts {
  display: flex;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 27px;
  font-size: 11px;
  color: #637457;
}
.small-note {
  font-size: 11px;
  margin-top: 18px;
}
.download-aside {
  padding: 12px 0;
}
.download-aside h3 {
  font-size: 21px;
}
.download-aside ol {
  padding-left: 19px;
  margin-block: 23px;
}
.download-aside li {
  padding-left: 9px;
  margin-bottom: 18px;
  font-size: 12px;
}
.download-aside strong {
  font-weight: 550;
}
.download-aside p {
  margin: 4px 0 0;
  font-size: 12px;
}
.empty-state {
  background: #f1f4ec;
  padding: 22px 28px;
  border: 1px dashed #ccd5c0;
  border-radius: 8px;
  font-size: 13px;
}
.release-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 22px 5px;
  border-top: 1px solid var(--line);
}
.release-row h3 {
  font-size: 16px;
  margin: 0;
}
.release-row p {
  font-size: 12px;
  margin: 0;
}
.release-row .text-link {
  font-size: 12px;
}
.checksum {
  font-size: 11px;
  overflow-wrap: anywhere;
  color: var(--muted);
  margin-top: 15px;
}
.checksum button {
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
  margin-top: 8px;
}
.download-size {
  font-size: 12px;
  margin-left: 12px;
  color: var(--muted);
}
.error-note {
  font-size: 12px;
  color: #8b4528;
  padding: 14px;
  background: #fff3e8;
  border-radius: 5px;
}
.changelog-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  padding-block: 20px 85px;
}
.changelog-aside p {
  font-size: 12px;
  line-height: 1.9;
  margin-top: 18px;
}
.timeline-entry {
  position: relative;
  border-left: 1px solid #d5decb;
  padding: 0 0 42px 35px;
}
.timeline-entry:before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: #7f936a;
  border: 3px solid var(--paper);
  outline: 1px solid #a3b48d;
  border-radius: 50%;
  left: -5px;
  top: 7px;
}
.timeline-entry h2 {
  font-size: 23px;
  margin: 13px 0 17px;
}
.timeline-entry p,
.timeline-entry li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.timeline-meta {
  font-size: 11px;
  color: #75816a;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.help-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 65px;
  padding-block: 15px 90px;
}
.help-nav {
  position: sticky;
  top: 115px;
  align-self: start;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  border-left: 1px solid var(--line);
  padding-left: 23px;
}
.help-nav a {
  padding-block: 9px;
}
.help-content {
  max-width: 720px;
}
.help-content section {
  padding-bottom: 45px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.help-content section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.help-content h2 {
  font-size: 28px;
  margin-bottom: 21px;
}
.help-content .eyebrow {
  font-size: 10px;
  margin-bottom: 13px;
}
.help-content p,
.help-content li {
  font-size: 13px;
  line-height: 2;
}
.help-content li {
  margin-bottom: 8px;
  color: var(--muted);
}
.note-box {
  background: var(--wash);
  border-left: 3px solid #8eab75;
  padding: 17px 20px;
  font-size: 12px;
  color: #596750;
  margin-block: 20px;
}
.table-scroll {
  overflow-x: auto;
}
.role-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin: 15px 0 25px;
  text-align: left;
  min-width: 440px;
}
.role-table th,
.role-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 10px;
}
.role-table th {
  background: var(--wash);
  font-weight: 550;
}
.role-table caption {
  text-align: left;
  color: var(--muted);
  padding-bottom: 10px;
  font-size: 11px;
}
.data-path {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 18px;
}
.data-path strong {
  font-weight: 550;
  font-size: 13px;
}
.data-path p {
  margin: 0;
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 94px 90px;
  }
  .product-stage {
    padding: 30px;
  }
  .demo-main {
    padding: 24px 20px 16px;
  }
  .product-body {
    min-height: 360px;
  }
  .demo-metrics strong {
    font-size: 26px;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 28px;
    padding-block: 65px;
    min-height: 580px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .button {
    gap: 20px;
    padding-inline: 18px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 10px;
  }
  .product-stage {
    padding: 18px 14px;
  }
  .demo-main {
    padding: 15px 12px 11px;
  }
  .demo-table td {
    padding-inline: 4px;
  }
  .demo-metrics strong {
    font-size: 20px;
  }
  .hero-facts {
    font-size: 10px;
    gap: 12px;
  }
  .feature-layout {
    gap: 38px;
  }
  .section {
    padding-block: 75px;
  }
  .section-heading h2 {
    font-size: 29px;
  }
  .section-heading > p {
    font-size: 11px;
  }
  .local-layout {
    gap: 20px 55px;
  }
  .pricing-section {
    gap: 60px;
  }
  .pricing-copy h2 {
    font-size: 31px;
  }
  .feature-lead {
    padding: 30px;
  }
  .faq-section {
    padding-top: 10px;
    gap: 45px;
  }
  .download-layout {
    gap: 35px;
  }
  .download-panel {
    padding: 24px;
  }
}
@media (max-width: 800px) {
  .shell {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 70px;
  }
  .menu-toggle {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px;
    box-shadow: 0 12px 18px #1928190b;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-header nav[data-open="true"] {
    display: flex;
  }
  .site-header nav > a:not(.button) {
    padding: 12px 8px;
  }
  .site-header nav > .button {
    margin-top: 7px;
    padding: 13px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 47px 43px;
    gap: 38px;
  }
  .hero-copy {
    max-width: 550px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions {
    gap: 26px;
  }
  .hero-facts {
    font-size: 11px;
  }
  .product-stage {
    max-width: 590px;
    width: 100%;
    padding: 24px;
  }
  .demo-main {
    padding: 20px;
  }
  .product-body {
    grid-template-columns: 53px 1fr;
  }
  .demo-heading h2 {
    font-size: 20px;
  }
  .demo-metrics strong {
    font-size: 28px;
  }
  .demo-metrics span {
    font-size: 10px;
  }
  .demo-metrics i {
    font-size: 9px;
  }
  .demo-table {
    font-size: 10px;
  }
  .pill {
    font-size: 9px;
  }
  .demo-table small {
    font-size: 9px;
  }
  .demo-bottom {
    font-size: 9px;
  }
  .promise-strip > .shell {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-block: 22px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    font-size: 13px;
    margin-top: 18px;
  }
  .section-heading > .text-link {
    margin-top: 15px;
  }
  .feature-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feature-lead p {
    max-width: 100%;
  }
  .feature-lead h3 {
    font-size: 29px;
  }
  .feature-list {
    padding-inline: 4px;
  }
  .local-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 56px;
  }
  .local-layout > div > p:not(.eyebrow) {
    max-width: 100%;
  }
  .local-layout h2 {
    font-size: 33px;
  }
  .workflow-list {
    padding-top: 5px;
  }
  .workflow-list p {
    max-width: 100%;
  }
  .scope-note {
    margin-top: 0;
    line-height: 1.9;
  }
  .pricing-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pricing-copy h2 {
    font-size: 34px;
  }
  .price-panel {
    max-width: 540px;
    width: 100%;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-list details:first-child {
    padding-top: 10px;
  }
  .footer-top {
    align-items: start;
  }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 10px;
  }
  .page-intro {
    padding-block: 45px 30px;
  }
  .page-intro h1 {
    font-size: 35px;
  }
  .page-intro > p:last-child {
    font-size: 13px;
  }
  .download-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .download-aside {
    padding-top: 14px;
  }
  .download-aside ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
  }
  .download-title h2 {
    font-size: 18px;
  }
  .changelog-layout {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .changelog-aside p br {
    display: none;
  }
  .help-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .help-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px 18px;
    padding: 13px 0;
    border: 0;
    border-block: 1px solid var(--line);
  }
  .help-nav a {
    font-size: 11px;
    padding: 3px 0;
  }
  .help-content h2 {
    font-size: 26px;
  }
}
@media (max-width: 420px) {
  .hero h1 {
    font-size: 49px;
  }
  .hero .eyebrow {
    font-size: 10px;
    gap: 7px;
  }
  .product-stage {
    padding: 16px 10px;
  }
  .stage-top {
    font-size: 8px;
    letter-spacing: 0.07em;
    margin-bottom: 16px;
  }
  .stage-label {
    font-size: 8px;
  }
  .product-body {
    grid-template-columns: 37px 1fr;
  }
  .demo-sidebar span {
    padding: 5px 8px;
  }
  .demo-main {
    padding: 13px 10px;
  }
  .demo-heading h2 {
    font-size: 15px;
  }
  .demo-metrics {
    gap: 7px;
  }
  .demo-metrics > div {
    padding: 8px;
  }
  .demo-metrics strong {
    font-size: 22px;
  }
  .demo-metrics span {
    font-size: 8px;
  }
  .demo-metrics i {
    font-size: 7px;
  }
  .demo-table {
    font-size: 8px;
  }
  .demo-table small {
    font-size: 7px;
    margin-left: 3px;
  }
  .pill {
    font-size: 7px;
  }
  .demo-bottom {
    font-size: 7px;
  }
  .stage-caption {
    font-size: 8px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-facts {
    font-size: 10px;
  }
  .promise-strip span {
    font-size: 11px;
  }
  .promise-strip b {
    margin-right: 7px;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading h2 {
    font-size: 26px;
  }
  .feature-lead {
    padding: 25px;
  }
  .flow-line {
    gap: 8px;
  }
  .flow-line span {
    padding: 8px 9px;
    font-size: 9px;
  }
  .price-panel {
    padding: 28px 25px;
  }
  .price {
    font-size: 51px;
  }
  .faq-section {
    padding-top: 0;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 11px;
  }
  .page-intro h1 {
    font-size: 30px;
  }
  .download-panel {
    padding: 20px;
  }
  .download-title {
    gap: 11px;
    flex-wrap: wrap;
  }
  .download-title .status-tag {
    margin-left: 0;
  }
  .download-aside ol {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .download-facts {
    font-size: 10px;
    gap: 16px;
  }
  .release-row {
    grid-template-columns: 1fr auto;
  }
  .release-row > p {
    grid-column: 1;
  }
  .data-path {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .timeline-entry {
    padding-left: 25px;
  }
  .timeline-entry h2 {
    font-size: 22px;
  }
  .price-panel ul {
    font-size: 11px;
  }
}
.help-content {
  min-width: 0;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* Business capabilities and current delivery scope. */
.business-capabilities { padding-block: 96px 36px; }
.capabilities-heading { max-width: 650px; margin-bottom: 48px; }
.capabilities-heading h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -.05em; margin-bottom: 22px; }
.capabilities-heading > p:last-child { font-size: 16px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 42px; }
.capability-grid article { border-top: 1px solid var(--line); padding: 28px 0 32px; }
.capability-grid article > span { color: #526b60; font-size: 12px; letter-spacing: .03em; }
.capability-grid h3 { font-size: 21px; margin: 16px 0 14px; }
.capability-grid p { font-size: 14px; line-height: 1.85; margin: 0; }
.capability-note { font-size: 13px; padding: 22px 0; border-top: 1px solid var(--line); }
.image-caption a { text-decoration: underline; text-underline-offset: 3px; }
.version-scope > p { max-width: 900px; font-size: 14px; }
.version-scope td { vertical-align: top; }
.version-scope td:first-child { width: 23%; font-weight: 600; }
.version-scope td:last-child { width: 28%; }
@media (max-width: 1000px) { .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 30px; } }
@media (max-width: 600px) { .business-capabilities { padding-block: 60px 12px; } .capabilities-heading { margin-bottom: 30px; } .capability-grid { grid-template-columns: 1fr; } .capability-grid article { padding-block: 24px; } .version-scope .role-table { min-width: 600px; } }
