:root {
  color-scheme: light;
  --brand-teal: #009f98;
  --brand-teal-dark: #006e69;
  --brand-orange: #f04b0f;
  --ink: #15211f;
  --ink-strong: #0c1715;
  --muted: #5e6b68;
  --surface: #ffffff;
  --surface-neutral: #f7f8f7;
  --surface-soft: #edf4f2;
  --surface-deep: #132521;
  --line: rgba(21, 52, 47, 0.14);
  --line-strong: rgba(0, 110, 105, 0.32);
  --glass: rgba(255, 255, 255, 0.76);
  --shadow-soft: 0 10px 34px rgba(31, 62, 56, 0.08);
  --shadow: 0 20px 56px rgba(24, 60, 53, 0.14);
  --max-width: 1180px;
  --header-height: 62px;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

button,
a {
  touch-action: manipulation;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  color: inherit;
  font-weight: 700;
}

section {
  scroll-margin-top: 96px;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -72px;
  left: 16px;
  min-height: 44px;
  padding: 8px 14px;
  border: 2px solid var(--brand-teal-dark);
  border-radius: 6px;
  color: var(--ink-strong);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

:where(a, button, input, textarea):focus-visible {
  outline: 3px solid rgba(0, 159, 152, 0.38);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  display: flex;
  width: min(1352px, calc(100% - 32px));
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transform: translateX(-50%);
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header[data-scrolled] {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 42px rgba(31, 62, 56, 0.16);
}

.brand {
  display: flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--ink-strong);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 126px;
  height: auto;
  flex: 0 0 auto;
}

.brand-divider {
  width: 1px;
  height: 22px;
  flex: 0 0 1px;
  background: var(--line-strong);
}

[data-nav] {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 22px;
}

[data-nav] > a:not(.button) {
  position: relative;
  min-height: 44px;
  color: #364440;
  font-size: 14px;
  font-weight: 550;
  line-height: 44px;
  text-decoration: none;
  white-space: nowrap;
}

[data-nav] > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--brand-teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

[data-nav] > a:not(.button):hover,
[data-nav] > a:not(.button):focus-visible {
  color: var(--brand-teal-dark);
}

[data-nav] > a:not(.button):hover::after,
[data-nav] > a:not(.button):focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--ink-strong);
  background: transparent;
  cursor: pointer;
}

.menu-button:hover {
  border-color: var(--line);
  background: rgba(237, 244, 242, 0.8);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: #fff;
  background: var(--brand-teal);
  box-shadow: 0 10px 24px rgba(0, 159, 152, 0.24);
}

.button-primary:hover {
  background: var(--brand-teal-dark);
  box-shadow: 0 13px 28px rgba(0, 110, 105, 0.3);
}

[data-experience].button-primary {
  color: #fff;
  background: var(--brand-teal);
  box-shadow: 0 10px 24px rgba(0, 159, 152, 0.24);
}

[data-experience].button-primary:hover {
  background: var(--brand-teal-dark);
  box-shadow: 0 13px 28px rgba(0, 110, 105, 0.3);
}

.button-secondary {
  border-color: rgba(21, 52, 47, 0.22);
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.82);
}

.button-secondary:hover {
  border-color: var(--brand-teal-dark);
  background: var(--surface);
}

.button:disabled {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.button:disabled:hover,
.button:disabled:active {
  box-shadow: none;
  transform: none;
}

.button-disabled,
.button-disabled:hover {
  border-color: rgba(21, 52, 47, 0.1);
  color: #626d6a;
  background: #e9eeec;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(880px, 88svh);
  place-items: center;
  overflow: hidden;
  padding: 104px 0 74px;
  background: var(--surface-soft);
  isolation: isolate;
}

.hero-product {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  opacity: 0.58;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(237, 244, 242, 0.18);
  content: "";
  pointer-events: none;
}

.hero-reading-layer {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 38px max(24px, calc((100% - var(--max-width)) / 2));
  background: rgba(247, 251, 250, 0.78);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  text-align: center;
}

.product-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(18, 54, 48, 0.14);
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-teal-dark);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.hero h1 {
  max-width: 940px;
  margin: 0 auto;
  color: var(--ink-strong);
  font-size: 68px;
  line-height: 1.08;
}

.hero-value {
  max-width: 760px;
  margin: 18px auto 0;
  color: #465450;
  font-size: 21px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions .button {
  min-width: 132px;
}

.next-section {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 50%;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transform: translateX(-50%);
}

.next-section span {
  color: var(--brand-teal-dark);
  font-size: 18px;
}

.section {
  width: 100%;
  padding: 104px max(24px, calc((100% - var(--max-width)) / 2));
}

.section > * {
  min-width: 0;
}

.section h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink-strong);
  font-size: 46px;
  line-height: 1.16;
}

.section h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 21px;
  line-height: 1.3;
}

.section article p,
.section li p,
.local-first > div > p:last-child {
  color: var(--muted);
}

.value-band {
  background: var(--surface);
}

.value-grid,
.capability-grid,
.download-grid {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.value-grid article,
.capability-grid article,
.download-grid article {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(24, 60, 53, 0.06);
}

.value-grid article {
  border-top: 3px solid var(--brand-teal);
}

.value-grid article p,
.capability-grid article p,
.download-grid article p {
  margin: 12px 0 0;
}

.workflow {
  color: var(--ink);
  background: #eaf3f0;
}

.workflow .eyebrow,
.workflow li span {
  color: var(--brand-teal-dark);
}

.workflow h2,
.workflow h3 {
  color: var(--ink-strong);
}

.workflow ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 50px 0 0;
  list-style: none;
}

.workflow li {
  position: relative;
  min-width: 0;
  min-height: 220px;
  padding: 24px 26px;
  border-left: 1px solid rgba(0, 110, 105, 0.16);
}

.workflow li:first-child {
  border-left: 0;
}

.workflow li span {
  display: block;
  margin-bottom: 42px;
  font-size: 13px;
  font-weight: 750;
}

.workflow li p {
  margin: 12px 0 0;
  color: #40514d;
}

.capabilities {
  background: var(--surface-neutral);
}

.capability-grid article {
  border-bottom: 3px solid rgba(0, 159, 152, 0.5);
}

.local-first {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: start;
  gap: 72px;
  background: var(--surface-soft);
}

.local-first > div > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 18px;
}

.local-first ul {
  padding: 0;
  margin: 6px 0 0;
  list-style: none;
}

.local-first li {
  position: relative;
  min-height: 60px;
  padding: 17px 0 17px 30px;
  border-bottom: 1px solid var(--line);
  color: #33423e;
  font-weight: 650;
}

.local-first li::before {
  position: absolute;
  top: 24px;
  left: 3px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--brand-teal-dark);
  border-radius: 50%;
  content: "";
}

.downloads {
  background: var(--surface);
}

.download-grid article {
  display: grid;
  min-height: 220px;
  grid-template-rows: auto 1fr auto;
  align-items: start;
}

.download-grid .button {
  width: fit-content;
  min-width: 136px;
  margin-top: 28px;
}

.contact {
  background: var(--surface-neutral);
}

.contact-details {
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px 72px;
  margin-top: 40px;
}

.contact-intro {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.contact-channel {
  display: grid;
  min-width: 0;
  justify-items: start;
  gap: 7px;
}

.contact-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-email {
  display: inline-block;
  max-width: 100%;
  color: var(--brand-teal-dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(0, 110, 105, 0.36);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.contact-email:hover {
  color: var(--brand-teal);
  text-decoration-color: currentColor;
}

.site-footer {
  display: grid;
  min-height: 112px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 28px max(24px, calc((100% - var(--max-width)) / 2));
  color: #dce6e3;
  background: #10201d;
}

.site-footer p {
  margin: 0;
  color: #bdcac7;
  font-size: 14px;
}

.brand-footer {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 650;
}

.brand-footer img {
  width: 118px;
  height: auto;
  flex: 0 0 auto;
  filter: brightness(1.25);
}

.footer-links {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #dce6e3;
  font-size: 13px;
  font-weight: 650;
  text-decoration-color: rgba(220, 230, 227, 0.34);
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-links a::after {
  margin-left: 5px;
  color: #67cfc9;
  content: "↗";
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration-color: #67cfc9;
}

.notice-dialog {
  width: min(500px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 28px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.notice-dialog::backdrop {
  background: rgba(10, 22, 19, 0.48);
}

.notice-dialog h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 28px;
  line-height: 1.25;
}

.notice-dialog p {
  margin: 14px 0 0;
  color: var(--muted);
}

.notice-dialog > div {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.noscript {
  position: fixed;
  z-index: 60;
  right: 12px;
  bottom: 12px;
  left: 12px;
  max-width: 760px;
  padding: 12px 16px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink-strong);
  background: #f7fbfa;
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

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

@supports not (backdrop-filter: blur(2px)) {
  .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .hero-reading-layer,
  .notice-dialog {
    background: #f7fbfa;
  }
}

@media (max-width: 1040px) {
  [data-nav] {
    gap: 14px;
  }

  [data-nav] > a:not(.button) {
    font-size: 13px;
  }

  .hero {
    min-height: 86svh;
  }

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

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

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

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

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

  .workflow li:nth-child(3) {
    border-left: 0;
  }

  .workflow li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .local-first {
    gap: 44px;
  }
}

@media (max-width: 860px) {
  .brand span:last-child,
  .brand-divider {
    display: none;
  }

  .local-first {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 58px;
  }

  html {
    scroll-padding-top: 82px;
  }

  section {
    scroll-margin-top: 82px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    gap: 12px;
    padding: 0 8px 0 14px;
  }

  .brand img {
    width: 108px;
  }

  .menu-button {
    display: grid;
  }

  [data-nav] {
    position: absolute;
    top: calc(var(--header-height) + 8px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - 86px);
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  [data-nav][data-open] {
    display: grid;
  }

  [data-nav] > a:not(.button) {
    min-height: 46px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 46px;
  }

  [data-nav] > a:not(.button):hover {
    background: var(--surface-soft);
  }

  [data-nav] > a:not(.button)::after {
    display: none;
  }

  [data-nav] .button {
    width: 100%;
    margin-top: 6px;
  }

  .hero {
    min-height: 84svh;
    padding: 84px 0 58px;
  }

  .hero-product {
    object-position: 42% top;
    opacity: 0.52;
  }

  .hero-reading-layer {
    padding: 24px 18px;
  }

  .product-mark {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .hero-value {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    gap: 9px;
    margin-top: 20px;
  }

  .hero-actions .button {
    width: min(100%, 280px);
  }

  .next-section {
    bottom: 7px;
  }

  .section {
    padding: 72px 20px;
  }

  .section h2 {
    font-size: 33px;
    line-height: 1.2;
  }

  .section h3 {
    font-size: 20px;
  }

  .value-grid,
  .capability-grid,
  .download-grid,
  .workflow ol,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .capability-grid,
  .download-grid {
    margin-top: 36px;
  }

  .value-grid article,
  .capability-grid article,
  .download-grid article {
    padding: 22px;
  }

  .workflow ol {
    margin-top: 36px;
  }

  .workflow li,
  .workflow li:nth-child(3) {
    min-height: 0;
    padding: 22px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .workflow li:first-child {
    border-top: 0;
  }

  .workflow li span {
    margin-bottom: 18px;
  }

  .local-first {
    gap: 32px;
  }

  .local-first > div > p:last-child {
    font-size: 16px;
  }

  .download-grid article {
    min-height: 0;
  }

  .contact-details {
    gap: 16px;
    margin-top: 32px;
  }

  .download-grid .button {
    width: 100%;
  }

  .contact-email {
    font-size: 20px;
  }

  .site-footer {
    min-height: 0;
    align-items: flex-start;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 30px 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .notice-dialog {
    padding: 22px;
  }

  .notice-dialog h2 {
    font-size: 24px;
  }

  .notice-dialog > div {
    align-items: stretch;
    flex-direction: column;
  }

  .notice-dialog .button {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 36px;
  }

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

  .brand-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

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

/* Harness-inspired product narrative */
.scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--brand-teal);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

.hero {
  min-height: min(880px, 86svh);
  padding-bottom: 84px;
}

.hero-product {
  opacity: 0.7;
  transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0) scale(1.025);
  transition: transform 240ms ease-out;
}

.hero-reading-layer {
  width: min(620px, calc(100% - 48px));
  justify-self: start;
  padding: 0;
  margin-left: max(40px, calc((100% - 1320px) / 2));
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: left;
}

.hero-reading-layer .product-mark {
  margin-right: 0;
  margin-left: 0;
}

.hero-reading-layer h1 {
  max-width: 620px;
  margin-right: 0;
  margin-left: 0;
  font-size: 58px;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.82);
}

.hero-reading-layer .hero-value {
  max-width: 570px;
  margin-right: 0;
  margin-left: 0;
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.9);
}

.hero-reading-layer .hero-actions {
  justify-content: flex-start;
}

.hero-runway {
  display: grid;
  width: min(600px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(0, 110, 105, 0.18);
  list-style: none;
}

.hero-runway li {
  position: relative;
  min-width: 0;
  padding: 15px 10px 0;
  color: #40514d;
  font-size: 13px;
  font-weight: 700;
}

.hero-runway li::before {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid rgba(249, 252, 251, 0.95);
  border-radius: 50%;
  background: var(--brand-teal);
  content: "";
  transform: translateX(-50%);
}

.hero-runway span {
  display: block;
  margin-bottom: 2px;
  color: var(--brand-teal-dark);
  font-size: 10px;
}

.value-band {
  padding-top: 128px;
  padding-bottom: 128px;
}

.value-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  align-items: start;
  gap: 96px;
}

.section-sticky {
  position: sticky;
  top: 116px;
}

.section-lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.value-rail {
  padding: 0;
  margin: 0;
  list-style: none;
}

.value-rail > li {
  position: relative;
  display: grid;
  min-height: 176px;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  opacity: 0.42;
  transform: translateX(12px);
  transition: opacity 320ms ease, transform 320ms ease, border-color 320ms ease;
}

.value-rail > li:last-child {
  border-bottom: 1px solid var(--line);
}

.value-rail > li::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-teal);
  content: "";
  transition: width 420ms ease;
}

.value-rail > li[data-active] {
  border-color: rgba(0, 159, 152, 0.28);
  opacity: 1;
  transform: translateX(0);
}

.value-rail > li[data-active]::after {
  width: 96px;
}

.value-rail > li > span {
  color: var(--brand-teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.value-rail h3 {
  font-size: 28px;
}

.value-rail p {
  max-width: 510px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.workflow {
  display: block;
  min-height: 270vh;
  padding-top: 120px;
  padding-bottom: 120px;
  background: #eaf3f0;
}

.workflow-heading {
  max-width: var(--max-width);
  margin: 0 auto 54px;
}

.workflow-heading h2 {
  max-width: 720px;
}

.workflow-stage {
  position: sticky;
  top: 96px;
  display: grid;
  min-height: min(690px, calc(100svh - 116px));
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  align-items: stretch;
  gap: 64px;
}

.workflow .workflow-steps {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow .workflow-steps > li {
  display: grid;
  min-height: 118px;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 110, 105, 0.16);
  border-left: 0;
  opacity: 0.58;
  transition: opacity 280ms ease, transform 280ms ease;
}

.workflow .workflow-steps > li:last-child {
  border-bottom: 1px solid rgba(0, 110, 105, 0.16);
}

.workflow .workflow-steps > li[data-active] {
  opacity: 1;
  transform: translateX(8px);
}

.workflow .workflow-steps > li > span {
  margin: 2px 0 0;
  color: var(--brand-teal-dark);
  font-size: 12px;
}

.workflow .workflow-steps h3 {
  font-size: 24px;
}

.workflow .workflow-steps p {
  max-width: 340px;
  margin: 7px 0 0;
  color: #40514d;
}

.workflow-console {
  align-self: center;
  min-width: 0;
  border: 1px solid rgba(0, 110, 105, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(24, 60, 53, 0.12);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  overflow: hidden;
}

.console-bar {
  display: flex;
  height: 52px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(0, 110, 105, 0.14);
  color: #40514d;
}

.console-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 110, 105, 0.28);
}

.console-bar span:nth-child(2) {
  background: #f04b0f;
}

.console-bar span:nth-child(3) {
  background: #5ccfc6;
}

.console-bar strong {
  margin-left: auto;
  font-size: 12px;
}

.console-body {
  display: grid;
  min-height: 420px;
  align-content: center;
  padding: 54px;
}

.console-kicker {
  margin: 0 0 12px;
  color: var(--brand-teal-dark);
  font-size: 13px;
  font-weight: 750;
}

.console-body > strong {
  max-width: 620px;
  color: var(--ink-strong);
  font-size: 34px;
  line-height: 1.25;
}

.console-body > p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: #40514d;
  font-size: 17px;
}

.console-trace {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
}

.console-trace span {
  color: rgba(21, 52, 47, 0.5);
  font-size: 12px;
  transition: color 240ms ease;
}

.console-trace i {
  height: 1px;
  background: rgba(0, 110, 105, 0.16);
}

.workflow-console[data-step="0"] [data-trace="0"],
.workflow-console[data-step="1"] [data-trace="0"],
.workflow-console[data-step="1"] [data-trace="1"],
.workflow-console[data-step="2"] [data-trace="0"],
.workflow-console[data-step="2"] [data-trace="1"],
.workflow-console[data-step="2"] [data-trace="2"],
.workflow-console[data-step="3"] [data-trace] {
  color: var(--brand-teal-dark);
}

.capabilities {
  padding-top: 128px;
  padding-bottom: 128px;
  background: #f4f7f6;
}

.capability-showcase {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  margin-top: 58px;
}

.capability-selector {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line);
}

.capability-selector button {
  position: relative;
  min-height: 64px;
  padding: 12px 34px 12px 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding-left 180ms ease, background-color 180ms ease;
}

.capability-selector button::after {
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--brand-teal-dark);
  content: "+";
  transform: translateY(-50%);
}

.capability-selector button[data-active] {
  padding-left: 22px;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.72);
}

.capability-selector button[data-active]::after {
  content: "→";
}

.capability-visual {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, 0.55fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 60px rgba(24, 60, 53, 0.1);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  overflow: hidden;
}

.product-lens {
  position: relative;
  min-width: 0;
  aspect-ratio: 8 / 5;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.product-lens img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 180ms ease, transform 360ms ease;
}

.capability-panels {
  position: relative;
  display: grid;
  align-items: end;
  min-width: 0;
  padding: 34px;
  border-left: 1px solid var(--line);
}

.capability-panels article {
  min-width: 0;
}

.capability-panels article > span {
  color: var(--brand-teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.capability-panels h3 {
  margin-top: 14px;
  font-size: 26px;
}

.capability-panels p {
  margin: 14px 0 0;
  color: var(--muted);
}

.local-first {
  display: block;
  padding-top: 128px;
  padding-bottom: 128px;
  background: #eaf3f0;
}

.local-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: end;
  gap: 72px;
}

.local-heading .eyebrow,
.local-heading h2 {
  grid-column: 1;
}

.local-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.local-boundary {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  padding: 54px 24px 24px;
  margin-top: 58px;
  border: 1px solid rgba(0, 110, 105, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
}

.boundary-label {
  position: absolute;
  top: 18px;
  left: 24px;
  margin: 0;
  color: var(--brand-teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.local-workspace-visual {
  grid-column: 1 / -1;
  aspect-ratio: 8 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 110, 105, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.local-workspace-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.local-boundary ul {
  display: contents;
  padding: 0;
  margin: 0;
  list-style: none;
}

.local-boundary li {
  position: relative;
  min-width: 0;
  min-height: 88px;
  padding: 18px 14px;
  border-top: 2px solid var(--brand-teal);
  color: #31423e;
  background: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  text-align: center;
  opacity: 0.55;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.local-boundary[data-visible] li {
  opacity: 1;
  transform: translateY(0);
}

.local-boundary li span {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-teal-dark);
  font-size: 11px;
}

.downloads {
  padding-top: 128px;
  padding-bottom: 128px;
}

.platform-switcher {
  max-width: 920px;
  margin-top: 52px;
}

.platform-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.platform-tabs button {
  min-height: 42px;
  padding: 8px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.platform-tabs button[data-active] {
  color: #fff;
  background: var(--brand-teal);
  box-shadow: 0 8px 20px rgba(0, 159, 152, 0.2);
}

.platform-panels {
  margin-top: 18px;
}

.platform-panels > section {
  display: flex;
  min-height: 200px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9f8;
}

.platform-panels section span {
  color: var(--brand-teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.platform-panels h3 {
  margin-top: 12px;
  font-size: 32px;
}

.platform-panels p {
  margin: 10px 0 0;
  color: var(--muted);
}

.platform-panels .button {
  min-width: 150px;
}

.contact {
  min-height: 520px;
  align-content: center;
  background: #f2f5f4;
}

[data-site-enhanced] [data-choice-panel][hidden] {
  display: none;
}

@media (max-width: 980px) {
  .value-layout,
  .workflow-stage,
  .capability-showcase {
    gap: 44px;
  }

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

  .section-sticky {
    position: static;
  }

  .workflow-stage {
    grid-template-columns: minmax(270px, 0.78fr) minmax(400px, 1.22fr);
  }

  .capability-showcase {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .capability-visual {
    grid-template-columns: minmax(0, 1.35fr) minmax(200px, 0.65fr);
  }

  .console-body {
    padding: 36px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 84svh;
    padding-top: 88px;
    padding-bottom: 68px;
  }

  .hero-product {
    object-position: 23% top;
  }

  .hero-reading-layer {
    width: calc(100% - 40px);
    margin-left: 20px;
  }

  .hero-reading-layer h1 {
    font-size: 44px;
  }

  .hero-runway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 0;
    margin-top: 24px;
    border-top: 0;
  }

  .hero-runway li {
    min-height: 48px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 110, 105, 0.18);
  }

  .hero-runway li::before {
    top: -4px;
  }

  .value-band,
  .capabilities,
  .local-first,
  .downloads {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .value-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section-sticky,
  .workflow-stage {
    position: static;
  }

  .value-rail > li {
    min-height: 150px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    opacity: 1;
    transform: none;
  }

  .value-rail h3 {
    font-size: 24px;
  }

  .workflow {
    min-height: 0;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .workflow-heading {
    margin-bottom: 40px;
  }

  .workflow-stage {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .workflow .workflow-steps > li,
  .workflow .workflow-steps > li[data-active] {
    min-height: 0;
    padding: 20px 0;
    opacity: 1;
    transform: none;
  }

  .workflow-console {
    order: -1;
  }

  .console-body {
    min-height: 320px;
    padding: 26px 22px;
  }

  .console-body > strong {
    font-size: 26px;
  }

  .console-trace {
    gap: 6px;
    margin-top: 34px;
  }

  .capability-showcase {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 40px;
  }

  .capability-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
  }

  .capability-selector button {
    min-height: 58px;
    padding: 9px 12px;
    border-right: 1px solid var(--line);
    font-size: 13px;
  }

  .capability-selector button::after {
    display: none;
  }

  .capability-selector button[data-active] {
    padding-left: 12px;
    color: #fff;
    background: var(--brand-teal-dark);
  }

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

  .product-lens {
    min-height: 310px;
    aspect-ratio: 16 / 10;
  }

  .capability-panels {
    min-height: 200px;
    padding: 26px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .local-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .local-heading .eyebrow,
  .local-heading h2,
  .local-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .local-heading > p:last-child {
    font-size: 16px;
  }

  .local-boundary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 42px 16px 18px;
    margin-top: 40px;
  }

  .local-boundary li:last-child {
    grid-column: 1 / -1;
  }

  .platform-switcher {
    margin-top: 38px;
  }

  .platform-tabs {
    display: grid;
    width: 100%;
  }

  .platform-panels > section {
    min-height: 220px;
    align-items: stretch;
    flex-direction: column;
    padding: 26px;
  }

  .platform-panels .button {
    width: 100%;
  }

  .contact {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product,
  .value-rail > li,
  .workflow .workflow-steps > li,
  .local-boundary li {
    transform: none !important;
    transition: none !important;
  }

  .section-sticky,
  .workflow-stage {
    position: static;
  }

  .workflow {
    min-height: 0;
  }

  .value-rail > li,
  .workflow .workflow-steps > li,
  .local-boundary li {
    opacity: 1;
  }
}
