:root {
  --mist: #eef3ee;
  --mist-deep: #e2ebe3;
  --seed-green: #4a7a49;
  --forest: #264a2a;
  --forest-deep: #17321d;
  --night: #101713;
  --pale-leaf: #cbe8cf;
  --paper: #fbfcf8;
  --white: #fff;
  --ink: #152019;
  --ink-soft: #59665e;
  --line: rgba(38, 74, 42, 0.16);
  --line-strong: rgba(38, 74, 42, 0.3);
  --shadow: 0 26px 80px rgba(25, 54, 30, 0.12);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --page-width: 1240px;
  --header-height: 78px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

h1,
h2,
h3 {
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

button,
select {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #d6843f;
  outline-offset: 4px;
}

::selection {
  color: var(--forest-deep);
  background: var(--pale-leaf);
}

.page-shell {
  width: min(calc(100% - 48px), var(--page-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(238, 243, 238, 0.88);
  backdrop-filter: blur(22px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(238, 243, 238, 0.96);
  box-shadow: 0 12px 40px rgba(25, 54, 30, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1.5px;
  background: var(--seed-green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: var(--forest);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.34);
}

.button-secondary:hover {
  border-color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

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

.language-select {
  position: relative;
  flex: none;
  width: 128px;
}

.language-select::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.language-select select {
  width: 100%;
  height: 38px;
  padding: 0 36px 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  color-scheme: light;
  cursor: pointer;
  appearance: none;
  font-size: 13px;
  font-weight: 650;
  line-height: normal;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.language-select select:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.88);
}

.language-select select:focus-visible {
  outline: 2px solid #d6843f;
  outline-offset: 2px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js [data-delay="1"] {
  transition-delay: 80ms;
}

.js [data-delay="2"] {
  transition-delay: 150ms;
}

.corporate-hero {
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(68px, 8vw, 118px) 0 86px;
  background:
    radial-gradient(circle at 84% 18%, rgba(74, 122, 73, 0.15), transparent 30%),
    linear-gradient(145deg, var(--mist) 0%, #f8faf5 58%, #e7eee7 100%);
}

.corporate-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.eyebrow,
.section-index {
  margin: 0 0 18px;
  color: var(--seed-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(54px, 6.4vw, 92px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-copy h1 span {
  color: var(--seed-green);
}

.hero-lede {
  max-width: 630px;
  margin: 28px 0 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

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

.hero-facts li {
  display: grid;
  gap: 4px;
  padding: 18px 18px 0 0;
}

.hero-facts strong {
  color: var(--forest);
  font-size: 13px;
}

.hero-facts span {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.corporate-product-visual {
  position: relative;
  min-height: 610px;
}

.corporate-desktop-shot,
.corporate-phone-shot {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.corporate-desktop-shot {
  position: absolute;
  top: 52px;
  right: -60px;
  width: min(690px, 98%);
  border-radius: 28px;
  transform: rotate(1.2deg);
}

.corporate-desktop-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.shot-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 16px;
  color: var(--ink-soft);
  background: #f7faf6;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.shot-label b {
  color: var(--forest);
}

.corporate-phone-shot {
  position: absolute;
  z-index: 2;
  bottom: -8px;
  left: 0;
  width: 220px;
  height: auto;
  border: 8px solid rgba(251, 252, 248, 0.95);
  border-radius: 36px;
  transform: rotate(-3deg);
}

.corporate-phone-shot img {
  width: 100%;
  height: auto;
}

.visual-note {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 12px;
  display: grid;
  min-width: 150px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  color: var(--white);
  background: rgba(38, 74, 42, 0.9);
  box-shadow: 0 18px 44px rgba(25, 54, 30, 0.18);
  backdrop-filter: blur(16px);
}

.visual-note strong {
  font-size: 22px;
}

.visual-note span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.section {
  padding: clamp(84px, 10vw, 142px) 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 50px;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);
  gap: 56px;
  max-width: none;
  align-items: end;
}

.section-heading-wide .section-index {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.section-heading h2 {
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.intro-section {
  background: var(--paper);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid article {
  min-height: 300px;
  padding: 30px 28px 34px;
  border-right: 1px solid var(--line);
}

.capability-grid article:last-child {
  border-right: 0;
}

.capability-grid article > span {
  display: block;
  margin-bottom: 78px;
  color: var(--seed-green);
  font-size: 12px;
  font-weight: 800;
}

.capability-grid h3 {
  margin: 0 0 12px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.capability-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.product-section {
  background: var(--forest-deep);
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  overflow: hidden;
  border: 1px solid rgba(203, 232, 207, 0.17);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(203, 232, 207, 0.13), transparent 30%),
    #1d3922;
}

.product-panel-copy {
  padding: clamp(44px, 6vw, 74px);
}

.app-icon {
  width: 86px;
  height: 86px;
  margin-bottom: 40px;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.product-panel .section-index {
  color: var(--pale-leaf);
}

.product-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.product-panel-copy > p:not(.section-index) {
  max-width: 650px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.text-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  color: var(--pale-leaf);
  font-weight: 700;
}

.text-arrow-link span {
  transition: transform 160ms ease;
}

.text-arrow-link:hover span {
  transform: translateX(4px);
}

.product-panel-metrics {
  display: grid;
  border-left: 1px solid rgba(203, 232, 207, 0.13);
}

.product-panel-metrics div {
  display: grid;
  align-content: center;
  padding: 34px 54px;
  border-bottom: 1px solid rgba(203, 232, 207, 0.13);
}

.product-panel-metrics div:last-child {
  border-bottom: 0;
}

.product-panel-metrics strong {
  color: var(--pale-leaf);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
}

.product-panel-metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.path-section {
  background: var(--mist);
}

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

.practice-path li {
  display: grid;
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid var(--line);
  align-content: space-between;
}

.practice-path li:last-child {
  border-right: 0;
}

.practice-path li > span {
  color: var(--seed-green);
  font-size: 12px;
  font-weight: 800;
}

.practice-path strong {
  margin-top: auto;
  font-size: 20px;
}

.practice-path small {
  color: var(--ink-soft);
  font-size: 12px;
}

.boundary-note {
  max-width: 800px;
  margin: 32px 0 0 auto;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: right;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--night);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(440px, 1fr);
  gap: 80px;
  padding-top: 64px;
  padding-bottom: 58px;
}

.site-footer .brand {
  color: var(--white);
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.48);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--pale-leaf);
}

.footer-company-info {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.45fr);
  gap: clamp(34px, 5vw, 72px);
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.75;
}

.footer-company-summary h2,
.footer-company-details dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer-company-summary p {
  max-width: 560px;
  margin: 7px 0 0;
}

.footer-company-details {
  display: grid;
  grid-template-columns: minmax(190px, 1.35fr) minmax(150px, 0.85fr) minmax(180px, 1fr);
  gap: 26px;
  margin: 0;
}

.footer-company-details > div {
  min-width: 0;
}

.footer-company-details dd {
  margin: 7px 0 0;
  overflow-wrap: anywhere;
}

.footer-company-details address {
  font-style: normal;
}

.footer-company-details a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-company-details a:hover {
  color: var(--pale-leaf);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 22px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.document-page {
  background: #f5f7f3;
}

.document-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.text-link {
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.document-shell {
  min-height: 70svh;
  padding-top: 64px;
  padding-bottom: 100px;
}

.document-status {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(176, 112, 40, 0.24);
  border-radius: 14px;
  color: #76501e;
  background: #fff4df;
  font-size: 13px;
}

.document-content {
  max-width: 960px;
  padding: clamp(32px, 5vw, 68px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(25, 54, 30, 0.06);
}

.localized-document {
  display: none;
}

html[data-locale="zh-CN"] [data-document-locale="zh-CN"],
html[data-locale="zh-TW"] [data-document-locale="zh-TW"],
html[data-locale="en"] [data-document-locale="en"] {
  display: block;
}

.localized-document h2 {
  margin: 0 0 28px;
  color: var(--forest-deep);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.localized-document h3 {
  margin: 48px 0 12px;
  color: var(--forest);
  font-size: 24px;
  line-height: 1.3;
}

.localized-document h4,
.localized-document h5 {
  margin: 32px 0 10px;
}

.localized-document p,
.localized-document li {
  color: #354139;
}

.localized-document li + li {
  margin-top: 8px;
}

.localized-document blockquote {
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--seed-green);
  color: var(--ink-soft);
  background: var(--mist);
}

.localized-document a {
  color: var(--seed-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.localized-document code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--mist);
  overflow-wrap: anywhere;
}

.legal-table-scroll {
  overflow-x: auto;
  margin: 24px 0;
}

.legal-table-scroll table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 13px;
}

.legal-table-scroll th,
.legal-table-scroll td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table-scroll th {
  color: var(--forest);
  background: var(--mist);
}

.compact-footer .footer-bottom {
  padding-top: 26px;
  padding-bottom: 28px;
}

@media (max-width: 1120px) {
  .navigation,
  .nav-links {
    gap: 14px;
  }

  .nav-links a,
  .nav-cta {
    font-size: 12px;
  }

  .language-select {
    width: 118px;
  }

  .corporate-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  }

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

  .capability-grid article:nth-child(2) {
    border-right: 0;
  }

  .capability-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .page-shell {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .menu-button {
    display: block;
  }

  .navigation {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 18px;
    max-height: calc(100svh - var(--header-height));
    padding: 24px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(238, 243, 238, 0.99);
    box-shadow: 0 28px 60px rgba(25, 54, 30, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    min-height: 48px;
  }

  .language-select {
    width: 100%;
  }

  .language-select select {
    height: 48px;
    padding-inline: 16px 42px;
    border-radius: 14px;
    font-size: 15px;
  }

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

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

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

  .corporate-hero-grid {
    grid-template-columns: 1fr;
  }

  .corporate-product-visual {
    min-height: 560px;
  }

  .corporate-desktop-shot {
    right: 0;
  }

  .section-heading-wide,
  .product-panel,
  .footer-company-info,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-heading-wide {
    gap: 24px;
  }

  .section-heading-wide .section-index {
    margin-bottom: 0;
  }

  .product-panel-metrics {
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(203, 232, 207, 0.13);
    border-left: 0;
  }

  .product-panel-metrics div {
    padding: 26px;
    border-right: 1px solid rgba(203, 232, 207, 0.13);
    border-bottom: 0;
  }

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

  .practice-path li {
    min-height: 170px;
    border-bottom: 1px solid var(--line);
  }

  .practice-path li:nth-child(2n) {
    border-right: 0;
  }

  .practice-path li:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .footer-company-info {
    gap: 22px;
  }

  .footer-main {
    gap: 44px;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom > div {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    grid-template-columns: 120px 1fr;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .corporate-product-visual {
    min-height: 460px;
  }

  .corporate-desktop-shot {
    top: 26px;
    width: 100%;
    border-radius: 20px;
  }

  .corporate-phone-shot {
    width: 150px;
    height: auto;
    border-width: 5px;
    border-radius: 26px;
  }

  .visual-note {
    right: 0;
    bottom: 4px;
    min-width: 130px;
  }

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

  .capability-grid article,
  .capability-grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-grid article:last-child {
    border-bottom: 0;
  }

  .capability-grid article > span {
    margin-bottom: 42px;
  }

  .product-panel-copy {
    padding: 36px 26px;
  }

  .product-panel-metrics {
    grid-template-columns: 1fr;
  }

  .product-panel-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(203, 232, 207, 0.13);
  }

  .practice-path {
    grid-template-columns: 1fr;
  }

  .practice-path li,
  .practice-path li:nth-child(2n),
  .practice-path li:last-child {
    grid-column: auto;
    min-height: 140px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .practice-path li:last-child {
    border-bottom: 0;
  }

  .boundary-note {
    text-align: left;
  }

  .footer-company-details {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .document-header-actions .text-link {
    display: none;
  }

  .document-status {
    display: grid;
  }

  .document-content {
    padding: 28px 22px;
    border-radius: 20px;
  }
}

@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;
  }
}
