:root {
  --ink: #171c24;
  --ink-soft: #252d38;
  --paper: #f5f7f9;
  --paper-deep: #e9edf2;
  --surface: #ffffff;
  --text: #1c232d;
  --muted: #66717f;
  --line: #d7dde4;
  --line-strong: #bcc6d0;
  --blue: #2457d6;
  --blue-dark: #1942aa;
  --blue-pale: #e9effc;
  --teal: #087f7c;
  --teal-pale: #e2f3f1;
  --amber: #9b6416;
  --amber-pale: #f5ead8;
  --glass: rgba(247, 250, 252, 0.76);
  --glass-strong: rgba(255, 255, 255, 0.86);
  --glass-line: rgba(151, 164, 178, 0.42);
  --header-height: 72px;
  --content-width: 1200px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

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

body {
  background: var(--paper);
  color: var(--text);
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body,
button,
a {
  font: inherit;
}

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

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

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

svg {
  flex: 0 0 auto;
}

.skip-link {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  left: 16px;
  padding: 11px 15px;
  position: fixed;
  top: -80px;
  z-index: 100;
}

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  backdrop-filter: blur(22px) saturate(165%);
  background: var(--glass-strong);
  border-bottom: 1px solid var(--glass-line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
  display: grid;
  grid-template-columns: 250px 1fr 190px;
  height: var(--header-height);
  left: 0;
  padding: 0 max(28px, calc((100vw - var(--content-width)) / 2));
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 160ms ease, box-shadow 160ms ease;
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(28, 35, 45, 0.09);
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  width: max-content;
}

.brand-logo {
  display: block;
  height: auto;
  object-fit: contain;
  width: 174px;
}

.footer-brand-logo {
  background: #ffffff;
  border-radius: 9px;
  display: block;
  height: 38px;
  width: 38px;
}

.brand-wordmark,
.footer-brand-wordmark {
  display: block;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -.03em;
  line-height: 1;
}

.brand-wordmark { color: var(--ink); }
.footer-brand-wordmark { color: #ffffff; }

.brand-copy strong,
.brand-copy small,
.footer-brand strong,
.footer-brand small {
  display: block;
}

.brand-copy strong,
.footer-brand strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 760;
  line-height: 1;
}

.brand-copy small,
.footer-brand small {
  color: #7b8693;
  font-size: 9px;
  margin-top: 5px;
  text-transform: lowercase;
}

.primary-nav {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  gap: 22px;
  justify-content: center;
  justify-self: center;
  padding: 0;
}

.primary-nav a {
  border-radius: 0;
  color: #4e5967;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 0;
  position: relative;
  transition: color 160ms ease;
}

.primary-nav a::after {
  background: var(--blue);
  bottom: 3px;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
  width: 100%;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 5px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 720;
  gap: 9px;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button svg,
.text-link svg,
.capability-item a svg {
  height: 17px;
  width: 17px;
}

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

.button-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}

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

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--surface);
  border-color: #8f9ba8;
}

.button-large {
  font-size: 14px;
  min-height: 50px;
  padding: 0 22px;
}

.header-cta {
  justify-self: end;
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: var(--ink);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.icon-button svg {
  height: 19px;
  width: 19px;
}

.nav-toggle {
  display: none;
}

.hero {
  align-items: center;
  background: #eef1f4;
  display: flex;
  height: min(760px, 100svh);
  min-height: 660px;
  overflow: hidden;
  padding: calc(var(--header-height) + 44px) max(28px, calc((100vw - var(--content-width)) / 2)) 54px;
  position: relative;
}

.hero::after {
  background: var(--blue);
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  width: 34%;
}

.hero-visual {
  height: calc(100% - var(--header-height));
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  opacity: 0.92;
  position: absolute;
  right: max(-90px, calc((100vw - var(--content-width)) / 2 - 150px));
  top: var(--header-height);
  width: 72%;
}

.hero-plane {
  background: rgba(245, 247, 249, 0.96);
  bottom: 0;
  left: 0;
  position: absolute;
  top: var(--header-height);
  width: max(52%, calc((100vw - var(--content-width)) / 2 + 615px));
}

.hero-content {
  max-width: 660px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.availability {
  align-items: center;
  color: #72d8d1;
  display: flex;
  font-size: 10px;
  font-weight: 780;
  gap: 10px;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow > span,
.availability > span {
  background: currentColor;
  height: 1px;
  width: 28px;
}

.eyebrow.dark {
  color: var(--blue);
}

.hero .eyebrow {
  color: var(--blue);
}

.hero h1 {
  color: var(--ink);
  font-size: 64px;
  font-weight: 770;
  line-height: 1.07;
  margin: 0;
  max-width: 650px;
}

.hero-statement {
  color: #28313d;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.45;
  margin: 24px 0 14px;
}

.hero-copy {
  color: #5c6876;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  max-width: 610px;
}

.hero-actions,
.final-actions {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-action-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero-action-note {
  color: #71808f;
  font-size: 9px;
  line-height: 1.4;
  padding-left: 4px;
}

.hero-signals {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
}

.hero-signals span {
  align-items: center;
  color: #596574;
  display: inline-flex;
  font-size: 11px;
  gap: 7px;
}

.hero-signals svg {
  color: var(--teal);
  height: 15px;
  width: 15px;
}

.hero-figure-label {
  bottom: 22px;
  color: #707b88;
  font-size: 9px;
  margin: 0;
  position: absolute;
  right: max(28px, calc((100vw - var(--content-width)) / 2));
  text-transform: uppercase;
  z-index: 2;
}

.hero-figure-label strong {
  color: var(--teal);
  font-weight: 800;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--content-width);
}

.capability-band {
  background: var(--ink);
  color: #ffffff;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 122px;
}

.capability-strip > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 23px 28px;
  position: relative;
  transition: background-color 160ms ease;
}

.capability-strip > a + a {
  border-left: 1px solid #38414d;
}

.capability-strip > a:hover,
.capability-strip > a:focus-visible {
  background: #202731;
}

.capability-strip > a.is-live::after {
  background: #76d9d2;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.capability-strip > a.is-preview::after {
  background: #e8b15d;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.capability-strip span {
  color: #74808e;
  font-size: 9px;
  font-weight: 740;
}

.capability-strip strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 730;
  margin-top: 8px;
}

.capability-strip small {
  color: #aab4c0;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 6px;
}

.demo-section {
  background: #e8edf1;
  border-bottom: 1px solid var(--line-strong);
  padding: 92px 28px 96px;
}

.demo-heading {
  align-items: end;
  display: grid;
  gap: 84px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.demo-heading h2 {
  color: var(--ink);
  font-size: 43px;
  font-weight: 750;
  line-height: 1.2;
  margin: 0;
}

.demo-heading-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.demo-heading-copy > span {
  align-items: center;
  color: #566370;
  display: inline-flex;
  font-size: 10px;
  font-weight: 680;
  gap: 7px;
  margin-top: 16px;
}

.demo-heading-copy svg {
  color: var(--teal);
  height: 15px;
  width: 15px;
}

.demo-workbench {
  background: var(--surface);
  border: 1px solid #aeb8c3;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(23, 28, 36, 0.1);
  margin-top: 46px;
  overflow: hidden;
}

.demo-workbench-header {
  align-items: center;
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  background: rgba(238, 242, 246, 0.84);
  border-bottom: 1px solid var(--glass-line);
  color: var(--ink);
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 74px;
  padding: 9px 10px;
}

.demo-mode-tabs {
  align-items: stretch;
  background: rgba(218, 225, 232, 0.7);
  border: 1px solid rgba(166, 178, 190, 0.58);
  border-radius: 8px;
  display: flex;
  gap: 3px;
  min-height: 54px;
  min-width: 0;
  padding: 3px;
}

.demo-mode-tabs button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #65717e;
  cursor: pointer;
  display: inline-flex;
  gap: 11px;
  justify-content: center;
  min-width: 172px;
  padding: 0 18px;
  position: relative;
  text-align: left;
  transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.demo-mode-tabs button::after {
  display: none;
}

.demo-mode-tabs button:hover,
.demo-mode-tabs button:focus-visible {
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.demo-mode-tabs button[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 2px rgba(28, 36, 46, 0.13), 0 5px 16px rgba(28, 36, 46, 0.09);
  color: var(--ink);
}

.demo-mode-tabs svg {
  height: 22px;
  width: 22px;
}

.demo-mode-tabs button:first-child svg {
  color: var(--blue);
}

.demo-mode-tabs button:last-child svg {
  color: var(--teal);
}

.demo-mode-tabs span,
.demo-mode-tabs small {
  display: block;
}

.demo-mode-tabs span {
  font-size: 13px;
  font-weight: 720;
}

.demo-mode-tabs small {
  color: #7c8793;
  font-size: 8px;
  margin-top: 5px;
}

.demo-mode-tabs button[aria-selected="true"] small {
  color: var(--blue-dark);
}

.demo-case-meta {
  align-self: center;
  justify-self: end;
  min-width: 210px;
  padding: 0 14px;
  text-align: right;
}

.demo-case-meta span,
.demo-case-meta strong {
  display: block;
}

.demo-case-meta span {
  color: #7c8793;
  font-size: 8px;
  font-weight: 720;
  text-transform: uppercase;
}

.demo-case-meta strong {
  color: var(--ink);
  font-size: 11px;
  margin-top: 7px;
}

.demo-replay {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(151, 164, 178, 0.58);
  border-radius: 8px;
  color: var(--blue-dark);
  cursor: pointer;
  display: inline-flex;
  font-size: 11px;
  font-weight: 720;
  gap: 8px;
  justify-content: center;
  min-height: 52px;
  min-width: 124px;
  padding: 0 18px;
}

.demo-replay:hover,
.demo-replay:focus-visible {
  background: #ffffff;
  border-color: #8091a3;
  box-shadow: 0 5px 16px rgba(28, 36, 46, 0.1);
}

.demo-replay svg {
  height: 16px;
  width: 16px;
}

.demo-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  min-height: 590px;
}

.demo-viewer {
  display: grid;
  grid-template-rows: 62px minmax(0, 1fr) 48px;
  min-width: 0;
}

.demo-viewer-toolbar {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 0 18px 0 22px;
}

.demo-viewer-toolbar span,
.demo-viewer-toolbar strong {
  display: block;
}

.demo-viewer-toolbar span {
  color: #7b8794;
  font-size: 8px;
  font-weight: 720;
  text-transform: uppercase;
}

.demo-viewer-toolbar strong {
  color: var(--ink);
  font-size: 13px;
  margin-top: 4px;
}

.demo-view-switch {
  background: rgba(220, 227, 234, 0.76);
  border: 1px solid rgba(172, 183, 194, 0.56);
  border-radius: 7px;
  display: flex;
  gap: 3px;
  min-height: 34px;
  padding: 3px;
}

.demo-view-switch button {
  background: transparent;
  border: 0;
  border-radius: 5px;
  color: #6d7986;
  cursor: pointer;
  font-size: 10px;
  font-weight: 680;
  min-width: 72px;
  padding: 0 12px;
}

.demo-view-switch button + button {
  border-left: 0;
}

.demo-view-switch button:hover,
.demo-view-switch button:focus-visible {
  color: var(--ink);
}

.demo-view-switch button.is-active {
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(28, 36, 46, 0.12), 0 3px 10px rgba(28, 36, 46, 0.07);
  color: var(--blue-dark);
}

.demo-workbench[data-mode="bubble"] .demo-view-switch {
  display: none;
}

.demo-canvas-frame {
  align-items: center;
  background-color: #dfe5e9;
  background-image: linear-gradient(#d2d9df 1px, transparent 1px), linear-gradient(90deg, #d2d9df 1px, transparent 1px);
  background-size: 24px 24px;
  display: flex;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.demo-canvas-sheet {
  background: #ffffff;
  box-shadow: 0 7px 24px rgba(25, 34, 44, 0.16);
  max-height: 100%;
  position: relative;
  transition: width 180ms ease;
}

.demo-workbench[data-mode="annotation"] .demo-canvas-sheet {
  aspect-ratio: 1000 / 525;
  width: min(96%, 860px);
}

.demo-workbench[data-mode="bubble"] .demo-canvas-sheet {
  aspect-ratio: 1400 / 1274;
  height: min(100%, 505px);
}

.demo-canvas-sheet > img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.demo-bubble-focus {
  aspect-ratio: 1;
  border: 3px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(36, 87, 214, 0.16);
  height: auto;
  left: 29.71%;
  pointer-events: none;
  position: absolute;
  top: 49.87%;
  transform: translate(-50%, -50%);
  transition: left 180ms ease, top 180ms ease;
  width: 5%;
  z-index: 3;
}

.demo-processing {
  align-items: center;
  background: rgba(224, 230, 235, 0.9);
  display: flex;
  inset: 0;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  z-index: 8;
}

.demo-scan-line {
  background: linear-gradient(90deg, transparent, rgba(36, 87, 214, 0.7), transparent);
  height: 2px;
  left: 5%;
  position: absolute;
  right: 5%;
  top: 12%;
  animation: demo-scan 1.45s ease-in-out infinite;
}

@keyframes demo-scan {
  0% { top: 12%; opacity: 0; }
  16%, 84% { opacity: 1; }
  100% { top: 88%; opacity: 0; }
}

.demo-processing-copy {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  box-shadow: 0 16px 42px rgba(24, 32, 41, 0.18);
  max-width: calc(100% - 40px);
  padding: 28px 30px 25px;
  position: relative;
  width: 390px;
  z-index: 2;
}

.demo-processing-copy > span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 760;
}

.demo-processing-copy h3 {
  font-size: 21px;
  margin: 8px 0 21px;
}

.demo-processing-copy ol {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.demo-processing-copy li {
  align-items: center;
  color: #8a95a1;
  display: flex;
  font-size: 10px;
  gap: 10px;
}

.demo-processing-copy li::before {
  border: 1px solid #aeb8c2;
  border-radius: 50%;
  content: "";
  height: 9px;
  width: 9px;
}

.demo-processing-copy li.is-active,
.demo-processing-copy li.is-complete {
  color: var(--ink);
  font-weight: 680;
}

.demo-processing-copy li.is-active::before {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 2px #ffffff;
  background: var(--blue);
}

.demo-processing-copy li.is-complete::before {
  background: var(--teal);
  border-color: var(--teal);
}

.demo-progress {
  background: #e7ebef;
  height: 3px;
  margin-top: 22px;
  overflow: hidden;
}

.demo-progress span {
  background: var(--blue);
  display: block;
  height: 100%;
  transition: width 260ms ease;
  width: 10%;
}

.demo-viewer-footer {
  align-items: center;
  background: #ffffff;
  border-top: 1px solid var(--line);
  color: #6d7885;
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  padding: 0 20px;
}

.demo-viewer-footer span {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.demo-viewer-footer svg {
  height: 14px;
  width: 14px;
}

.demo-viewer-footer strong {
  color: var(--ink);
  font-weight: 700;
}

.demo-viewer-footer .demo-ready {
  color: var(--teal);
}

.demo-viewer-footer .demo-ready strong {
  color: var(--teal);
}

.demo-result-panel {
  background: #f8fafb;
  border-left: 1px solid var(--line-strong);
  min-width: 0;
  overflow: hidden;
}

.demo-summary-body {
  display: contents;
}

.demo-summary-toggle {
  display: none;
}

.demo-summary-body > section {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  height: 100%;
}

.demo-summary-body > #demo-panel-bubble {
  grid-template-rows: auto 52px minmax(0, 1fr) auto;
}

.demo-result-header {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 94px;
  padding: 18px 22px;
}

.demo-result-header span,
.demo-result-header h3,
.demo-result-header > strong,
.demo-result-header small {
  display: block;
}

.demo-result-header span {
  color: var(--teal);
  font-size: 8px;
  font-weight: 760;
}

.demo-result-header h3 {
  font-size: 20px;
  margin: 6px 0 0;
}

.demo-result-header > strong {
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  text-align: right;
}

.demo-result-header small {
  color: #7c8793;
  font-size: 8px;
  font-weight: 600;
  margin-top: 6px;
}

.demo-bubble-output-tabs {
  background: #eef2f5;
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 1fr);
  padding: 7px 10px;
}

.demo-bubble-output-tabs button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #697684;
  cursor: pointer;
  display: inline-flex;
  font-size: 9px;
  font-weight: 720;
  gap: 7px;
  justify-content: center;
  position: relative;
}

.demo-bubble-output-tabs button + button {
  border-left: 0;
}

.demo-bubble-output-tabs button::after {
  display: none;
}

.demo-bubble-output-tabs button:hover,
.demo-bubble-output-tabs button:focus-visible,
.demo-bubble-output-tabs button.is-active {
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(28, 36, 46, 0.12), 0 3px 10px rgba(28, 36, 46, 0.07);
  color: var(--ink);
}

.demo-bubble-output-tabs svg {
  color: var(--teal);
  height: 14px;
  width: 14px;
}

.demo-feature-panel {
  display: grid;
  grid-template-rows: 54px 34px minmax(0, 1fr);
  min-height: 0;
}

.demo-summary-grid {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.demo-summary-grid > div {
  padding: 17px 18px;
}

.demo-summary-grid > div + div {
  border-left: 1px solid var(--line);
}

.demo-summary-grid strong,
.demo-summary-grid span {
  display: block;
}

.demo-summary-grid strong {
  color: var(--blue-dark);
  font-size: 17px;
}

.demo-summary-grid span {
  color: #78838f;
  font-size: 8px;
  margin-top: 5px;
}

.demo-annotation-list {
  list-style: none;
  margin: 0;
  overflow: auto;
  padding: 0;
}

.demo-annotation-list li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 13px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  min-height: 76px;
  padding: 12px 20px;
}

.demo-annotation-list li > svg {
  background: var(--blue-pale);
  color: var(--blue);
  height: 34px;
  padding: 8px;
  width: 34px;
}

.demo-annotation-list li > span,
.demo-annotation-list strong,
.demo-annotation-list small {
  display: block;
}

.demo-annotation-list strong {
  font-size: 11px;
}

.demo-annotation-list small {
  color: #7a8692;
  font-size: 8px;
  line-height: 1.4;
  margin-top: 5px;
}

.demo-annotation-list b {
  color: var(--ink);
  font-size: 16px;
}

.demo-annotation-list .is-muted {
  opacity: 0.58;
}

.demo-review-status {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 20px;
}

.demo-review-status span {
  align-items: center;
  color: var(--teal);
  display: inline-flex;
  font-size: 9px;
  font-weight: 720;
  gap: 7px;
}

.demo-review-status svg {
  height: 14px;
  width: 14px;
}

.demo-review-status small {
  color: #7c8793;
  font-size: 8px;
}

.demo-inspection-table-head {
  align-items: center;
  background: #edf2f5;
  border-bottom: 1px solid var(--line);
  color: #788490;
  display: grid;
  font-size: 7px;
  font-weight: 720;
  gap: 8px;
  grid-template-columns: 28px minmax(0, 1fr) 72px 16px;
  padding: 0 14px;
  text-transform: uppercase;
}

.demo-inspection-list {
  min-height: 0;
  overflow: auto;
}

.demo-inspection-list button {
  align-items: center;
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 8px;
  grid-template-columns: 28px minmax(0, 1fr) 72px 16px;
  min-height: 59px;
  padding: 8px 14px;
  text-align: left;
  width: 100%;
}

.demo-inspection-list button:hover,
.demo-inspection-list button:focus-visible,
.demo-inspection-list button.is-active {
  background: #eaf5f3;
}

.demo-inspection-list button.is-active {
  box-shadow: inset 3px 0 0 var(--teal);
}

.demo-inspection-list button > span {
  align-items: center;
  border: 1px solid #ce776e;
  border-radius: 50%;
  color: #a64a42;
  display: flex;
  font-size: 9px;
  height: 27px;
  justify-content: center;
  width: 27px;
}

.demo-inspection-list strong,
.demo-inspection-list small {
  display: block;
}

.demo-inspection-list strong {
  font-size: 11px;
}

.demo-inspection-list small {
  color: #788490;
  font-size: 8px;
  font-weight: 560;
  margin-top: 5px;
}

.demo-inspection-list em {
  color: #586574;
  font-size: 8px;
  font-style: normal;
  font-variant-numeric: tabular-nums;
  line-height: 1.35;
  text-align: right;
}

.demo-inspection-list svg {
  color: var(--amber);
  height: 15px;
  width: 15px;
}

.demo-inspection-list button.is-ignored {
  background: #f3f5f7;
  color: #687583;
}

.demo-inspection-list button.is-ignored > span {
  border-color: #8d98a4;
  color: #687583;
}

.demo-inspection-list button.is-ignored em,
.demo-inspection-list button.is-ignored svg {
  color: #7c8793;
}

.demo-excel-panel {
  background: #ffffff;
  display: grid;
  grid-template-rows: 58px minmax(0, 1fr) 34px;
  min-height: 0;
}

.demo-excel-filebar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  padding: 8px 14px;
}

.demo-excel-filebar > span {
  align-items: center;
  background: #e8f3ec;
  color: #217346;
  display: flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.demo-excel-filebar svg {
  height: 17px;
  width: 17px;
}

.demo-excel-filebar p,
.demo-excel-filebar strong,
.demo-excel-filebar small {
  display: block;
  margin: 0;
}

.demo-excel-filebar strong {
  font-size: 9px;
}

.demo-excel-filebar small {
  color: #7a8692;
  font-size: 7px;
  margin-top: 4px;
}

.demo-excel-filebar b {
  background: #e8f3ec;
  color: #217346;
  font-size: 7px;
  padding: 5px 7px;
}

.demo-excel-table-wrap {
  min-height: 0;
  overflow: auto;
}

.demo-excel-table {
  border-collapse: collapse;
  color: #394653;
  font-size: 7px;
  table-layout: fixed;
  width: 100%;
}

.demo-excel-table th,
.demo-excel-table td {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 7px 6px;
  text-align: left;
  vertical-align: middle;
}

.demo-excel-table th {
  background: #e8f3ec;
  color: #496458;
  font-weight: 740;
  position: sticky;
  top: 0;
  z-index: 1;
}

.demo-excel-table th:first-child {
  width: 38px;
}

.demo-excel-table th:nth-child(2) {
  width: 66px;
}

.demo-excel-table th:nth-child(4),
.demo-excel-table th:nth-child(5) {
  width: 50px;
}

.demo-excel-table td:first-child {
  color: #217346;
  font-weight: 740;
  text-align: center;
}

.demo-excel-table td:nth-child(4),
.demo-excel-table td:nth-child(5) {
  text-align: center;
}

.demo-excel-table td strong,
.demo-excel-table td small {
  display: block;
}

.demo-excel-table td strong {
  color: var(--ink);
  font-size: 8px;
}

.demo-excel-table td small {
  color: #7b8794;
  font-size: 6px;
  margin-top: 3px;
}

.demo-excel-table td > span {
  color: #9a6a1b;
  font-weight: 720;
}

.demo-excel-table tr.is-excluded {
  background: #f2f4f6;
  color: #788490;
}

.demo-excel-table tr.is-excluded td > span {
  color: #788490;
}

.demo-excel-panel > footer {
  align-items: center;
  background: #f5f8f6;
  border-top: 1px solid var(--line);
  color: #77838f;
  display: flex;
  font-size: 7px;
  justify-content: space-between;
  padding: 0 14px;
}

.demo-excel-panel > footer strong {
  color: #217346;
}

.demo-deliverables {
  align-items: center;
  background: #edf2f5;
  border-top: 1px solid var(--line-strong);
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  min-height: 66px;
  padding: 12px 18px;
}

.demo-deliverables > span {
  color: #77838f;
  font-size: 8px;
  margin-right: 3px;
  text-transform: uppercase;
}

.demo-deliverables strong,
.demo-deliverables button {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  color: #485563;
  display: inline-flex;
  font-size: 8px;
  gap: 6px;
  min-height: 30px;
  padding: 0 9px;
}

.demo-deliverables button {
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
}

.demo-deliverables button:hover,
.demo-deliverables button:focus-visible {
  border-color: #217346;
  color: #217346;
}

.demo-deliverables svg {
  color: var(--blue);
  height: 13px;
  width: 13px;
}

.demo-workbench-footer {
  align-items: stretch;
  background: #ffffff;
  border-top: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  min-height: 86px;
}

.demo-workbench-footer > div {
  align-items: center;
  display: grid;
  gap: 13px;
  grid-template-columns: 24px minmax(0, 1fr);
  padding: 16px 22px;
}

.demo-workbench-footer > div + div {
  border-left: 1px solid var(--line);
}

.demo-workbench-footer > div > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 760;
}

.demo-workbench-footer p,
.demo-workbench-footer p strong {
  display: block;
}

.demo-workbench-footer p {
  color: #7a8692;
  font-size: 8px;
  line-height: 1.45;
  margin: 0;
}

.demo-workbench-footer p strong {
  color: var(--ink);
  font-size: 10px;
  margin-bottom: 4px;
}

.demo-workbench-footer > .button {
  align-self: center;
  margin: 0 20px;
}

.section {
  padding: 112px 28px;
}

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

.section-heading h2,
.impact-heading h2,
.company-title h2,
.final-cta h2 {
  color: var(--ink);
  font-size: 43px;
  font-weight: 750;
  line-height: 1.2;
  margin: 0;
}

.section-heading > p,
.impact-heading > p:last-child,
.company-copy > p,
.final-cta-inner > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.annotation-section {
  background: var(--surface);
}

.inspection-section {
  background: #f3f6f8;
  border-top: 1px solid var(--line);
}

.inspection-heading {
  align-items: end;
}

.annotation-spotlight {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(520px, 1.08fr) minmax(390px, 0.92fr);
  margin-top: 62px;
}

.annotation-result {
  align-self: start;
  background: #ffffff;
  border: 1px solid var(--line);
  margin: 0;
  overflow: hidden;
}

.result-toolbar {
  align-items: center;
  background: var(--ink);
  color: #b6c0cc;
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 16px;
  text-transform: uppercase;
}

.result-toolbar span {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.result-toolbar svg {
  color: #76d9d2;
  height: 13px;
  width: 13px;
}

.result-inspect-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #d9e1ea;
  cursor: pointer;
  display: inline-flex;
  font-size: 9px;
  font-weight: 700;
  gap: 7px;
  min-height: 32px;
  padding: 0 2px 0 12px;
  text-transform: uppercase;
}

.result-inspect-button:hover,
.result-inspect-button:focus-visible {
  color: #ffffff;
}

.result-inspect-button svg {
  color: #76d9d2;
}

.annotation-result img {
  aspect-ratio: 1440 / 767;
  background: #eef1f3;
  display: block;
  height: auto;
  object-fit: contain;
  padding: 0;
  width: 100%;
}

.annotation-result figcaption {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
  padding: 13px 16px;
}

body.viewer-open {
  overflow: hidden;
}

.result-viewer {
  background: #f4f6f8;
  border: 1px solid #778391;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(10, 15, 22, 0.32);
  height: min(90vh, 900px);
  max-height: none;
  max-width: none;
  padding: 0;
  width: min(1080px, calc(100vw - 48px));
}

.result-viewer::backdrop {
  background: rgba(9, 14, 20, 0.76);
}

.result-viewer-shell {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  height: 100%;
}

.result-viewer-header {
  align-items: center;
  background: var(--ink);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 20px 0 24px;
}

.result-viewer-header span,
.result-viewer-header strong {
  display: block;
}

.result-viewer-header span {
  color: #8f9baa;
  font-size: 8px;
  font-weight: 760;
  text-transform: uppercase;
}

.result-viewer-header strong {
  font-size: 16px;
  margin-top: 5px;
}

.result-viewer-header .icon-button {
  border-color: #4a5664;
  color: #ffffff;
}

.result-viewer-toolbar {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  min-height: 58px;
  padding: 8px 20px;
}

.result-viewer-toolbar .icon-button {
  height: 36px;
  width: 36px;
}

.result-viewer-toolbar input[type="range"] {
  accent-color: var(--blue);
  max-width: 230px;
  min-width: 120px;
  width: 22vw;
}

.result-viewer-toolbar output {
  color: var(--ink);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  min-width: 38px;
}

.result-viewer-stage {
  align-items: flex-start;
  background-color: #dfe4e9;
  background-image: linear-gradient(#d3d9df 1px, transparent 1px), linear-gradient(90deg, #d3d9df 1px, transparent 1px);
  background-size: 24px 24px;
  display: flex;
  justify-content: center;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 32px;
}

.result-viewer-stage img {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(23, 28, 36, 0.18);
  flex: 0 0 auto;
  height: auto;
  max-width: none;
}

.annotation-product-copy {
  background: #f1f4f8;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 46px 42px;
}

.annotation-product-copy h3 {
  font-size: 29px;
  line-height: 1.3;
  margin: 0;
}

.annotation-product-copy > p:not(.availability) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 16px 0 0;
}

.annotation-product-copy > .button {
  margin-top: 26px;
}

.inspection-feature {
  background: #eaf0f5;
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: minmax(370px, 0.82fr) minmax(570px, 1.18fr);
  margin-top: 62px;
  overflow: hidden;
}

.inspection-workflow {
  background: #ffffff;
  margin-top: 32px;
}

.inspection-copy {
  padding: 48px 44px;
}

.inspection-availability {
  color: var(--amber);
}

.inspection-availability.is-live {
  color: var(--teal);
}

.inspection-copy h3 {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.25;
  margin: 0;
}

.inspection-copy > p:not(.availability) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 16px 0 0;
}

.inspection-route {
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
  margin: 26px 0;
  padding: 18px 0;
}

.inspection-route > svg {
  color: var(--blue);
  height: 17px;
  width: 17px;
}

.inspection-route span,
.inspection-route strong,
.inspection-route small {
  display: block;
}

.inspection-route span {
  color: #7e8995;
  font-size: 8px;
  font-weight: 760;
}

.inspection-route strong {
  color: var(--ink);
  font-size: 11px;
  margin-top: 6px;
}

.inspection-route small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
  margin-top: 5px;
}

.inspection-function-list {
  margin: 0;
}

.inspection-function-list > div {
  display: grid;
  gap: 16px;
  grid-template-columns: 72px minmax(0, 1fr);
  padding: 8px 0;
}

.inspection-function-list dt {
  color: var(--ink);
  font-size: 10px;
  font-weight: 740;
}

.inspection-function-list dd {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
  margin: 0;
}

.inspection-actions {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-top: 25px;
}

.inspection-actions > span {
  color: #77828f;
  font-size: 8px;
  line-height: 1.5;
  max-width: 130px;
}

.inspection-visual {
  align-items: center;
  background: #151d27;
  border-left: 1px solid var(--line-strong);
  display: flex;
  min-width: 0;
  padding: 22px;
}

.inspection-product-shot {
  background: #ffffff;
  border: 1px solid #3a4654;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  width: 100%;
}

.inspection-shot-link {
  display: block;
  position: relative;
}

.inspection-shot-link img {
  aspect-ratio: 2208 / 1672;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.inspection-shot-link > span {
  align-items: center;
  background: rgba(18, 27, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  color: #ffffff;
  display: flex;
  height: 38px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 12px;
  top: 12px;
  transition: opacity 160ms ease;
  width: 38px;
}

.inspection-shot-link:hover > span,
.inspection-shot-link:focus-visible > span {
  opacity: 1;
}

.inspection-shot-link > span svg {
  height: 17px;
  width: 17px;
}

.inspection-product-shot figcaption {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
  padding: 11px 13px;
}

.product-facts {
  border-bottom: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 27px 0 26px;
}

.product-facts > div {
  min-width: 0;
  padding: 17px 10px 17px 0;
}

.product-facts > div + div {
  border-left: 1px solid var(--line-strong);
  padding-left: 14px;
}

.product-facts strong,
.product-facts span {
  display: block;
}

.product-facts strong {
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 760;
}

.product-facts span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
  margin-top: 6px;
}

.annotation-workflow {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
}

.annotation-workflow li {
  min-height: 235px;
  padding: 28px 30px;
  position: relative;
}

.annotation-workflow li + li {
  border-left: 1px solid var(--line);
}

.annotation-workflow li > span {
  color: #8b96a2;
  font-size: 9px;
  position: absolute;
  right: 25px;
  top: 24px;
}

.annotation-workflow svg {
  color: var(--blue);
  height: 27px;
  width: 27px;
}

.annotation-workflow h3 {
  font-size: 18px;
  margin: 36px 0 11px;
}

.annotation-workflow p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

.annotation-details {
  background: #f1f4f8;
  border-left: 4px solid var(--blue);
  display: grid;
  gap: 66px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  margin-top: 44px;
  padding: 42px 44px;
}

.availability {
  color: var(--teal);
}

.annotation-lead h3 {
  font-size: 26px;
  line-height: 1.3;
  margin: 0;
}

.annotation-lead > p:not(.availability) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 16px 0 0;
}

.text-link,
.capability-item a {
  align-items: center;
  color: var(--blue-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 740;
  gap: 7px;
  margin-top: 24px;
}

.function-list {
  border-top: 1px solid var(--line-strong);
  margin: 0;
}

.function-list div {
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  gap: 20px;
  grid-template-columns: 92px 1fr;
  padding: 15px 0;
}

.function-list dt {
  color: var(--ink);
  font-size: 11px;
  font-weight: 740;
}

.function-list dd {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}

.impact-section {
  background: var(--paper-deep);
  padding-bottom: 96px;
  padding-top: 96px;
}

.impact-heading {
  align-items: end;
  display: grid;
  gap: 84px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  max-width: none;
}

.impact-heading-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.impact-heading-copy > span {
  align-items: center;
  color: #3f4b58;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 7px;
  margin-top: 18px;
}

.impact-heading-copy > span svg {
  color: var(--teal);
  height: 16px;
  width: 16px;
}

.roi-calculator {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(35, 46, 60, 0.08);
  margin-top: 44px;
  overflow: hidden;
}

.roi-calculator-header {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 92px;
  padding: 20px 24px;
}

.roi-calculator-header > div:first-child > span,
.roi-ledger header span {
  color: var(--blue);
  display: block;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.roi-calculator-header h3,
.roi-ledger h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  margin: 5px 0 0;
}

.roi-calculator-header p,
.roi-ledger header p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
  margin: 5px 0 0;
}

.roi-header-actions {
  align-items: flex-end;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 7px;
}

.roi-preset-control {
  background: #edf1f5;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: inline-grid;
  flex: 0 0 auto;
  grid-template-columns: repeat(3, auto);
  padding: 3px;
}

.roi-preset-control button {
  background: transparent;
  border: 0;
  border-radius: 5px;
  color: #5c6774;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  min-height: 46px;
  padding: 6px 13px;
}

.roi-preset-control button strong,
.roi-preset-control button small {
  display: block;
}

.roi-preset-control button strong {
  font-size: 10px;
}

.roi-preset-control button small {
  color: #89939e;
  font-size: 8px;
  font-weight: 600;
  margin-top: 3px;
}

.roi-preset-control button.is-active small {
  color: #667587;
}

.roi-preset-control button:hover,
.roi-preset-control button:focus-visible {
  color: var(--ink);
}

.roi-preset-control button.is-active {
  background: var(--surface);
  box-shadow: 0 1px 4px rgba(28, 35, 45, 0.12);
  color: var(--blue-dark);
}

.roi-reset-button {
  background: transparent;
  border: 0;
  color: #687887;
  cursor: pointer;
  font-family: inherit;
  font-size: 9px;
  font-weight: 720;
  padding: 2px 4px;
}

.roi-reset-button:hover,
.roi-reset-button:focus-visible {
  color: var(--blue-dark);
  outline: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.roi-live-note {
  align-items: center;
  background: #fbfcfd;
  border-top: 1px solid var(--line);
  color: #71808f;
  display: flex;
  font-size: 9px;
  gap: 7px;
  line-height: 1.45;
  margin: 0;
  padding: 9px 24px;
}

.roi-live-note svg {
  color: var(--teal);
  height: 14px;
  width: 14px;
}

.roi-input-grid {
  background: #f7f9fb;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.roi-input-grid label {
  min-width: 0;
  padding: 18px 18px 17px;
}

.roi-input-grid label + label {
  border-left: 1px solid var(--line);
}

.roi-input-grid label > span,
.roi-input-grid label > em {
  display: block;
}

.roi-input-grid label > span {
  color: #53606e;
  font-size: 10px;
  font-weight: 740;
}

.roi-input-grid label > strong {
  align-items: baseline;
  display: flex;
  gap: 6px;
  margin-top: 9px;
}

.roi-input-grid input {
  appearance: textfield;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aab5c0;
  border-radius: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 760;
  min-width: 0;
  padding: 1px 0 5px;
  width: 100%;
}

.roi-input-grid input::-webkit-inner-spin-button,
.roi-input-grid input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.roi-input-grid input:focus {
  border-bottom-color: var(--blue);
  outline: 0;
}

.roi-input-grid small {
  color: #687583;
  flex: 0 0 auto;
  font-size: 9px;
  font-weight: 650;
}

.roi-input-grid label > em {
  color: #8a949f;
  font-size: 9px;
  font-style: normal;
  line-height: 1.45;
  margin-top: 7px;
}

.roi-result-strip {
  background: var(--ink);
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.roi-result-strip article {
  min-height: 132px;
  padding: 23px 22px 21px;
}

.roi-result-strip article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.roi-result-strip article > span {
  align-items: center;
  color: #b9c3cf;
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 7px;
}

.roi-result-strip article > span svg {
  color: #73d2ca;
  height: 15px;
  width: 15px;
}

.roi-result-strip strong,
.roi-result-strip small {
  display: block;
}

.roi-result-strip strong {
  color: #ffffff;
  font-size: 28px;
  font-weight: 760;
  line-height: 1.1;
  margin-top: 13px;
}

.roi-result-strip small {
  color: #8f9cab;
  font-size: 9px;
  line-height: 1.45;
  margin-top: 8px;
}

.roi-result-strip .is-negative {
  color: #ffaaa3;
}

.roi-decision-panel {
  background: #f7f9fb;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 2.15fr);
}

.roi-decision-summary {
  border-right: 1px solid var(--line);
  padding: 22px 24px;
}

.roi-decision-summary > span {
  color: var(--blue);
  display: block;
  font-size: 8px;
  font-weight: 800;
}

.roi-decision-summary h3 {
  color: var(--ink);
  font-size: 17px;
  margin: 5px 0 14px;
}

.roi-decision-summary strong {
  color: #08706d;
  display: block;
  font-size: 12px;
  line-height: 1.5;
}

.roi-decision-summary p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
  margin: 6px 0 0;
}

.roi-decision-summary .roi-decision-proof {
  border-top: 1px solid var(--line);
  color: #3f4b58;
  margin-top: 12px;
  padding-top: 11px;
}

.roi-decision-summary .is-negative,
.roi-decision-metrics .is-negative,
.roi-ledger tbody td.is-negative {
  color: #ad3f36;
}

.roi-decision-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.roi-decision-metrics > div {
  min-width: 0;
  padding: 22px 18px;
}

.roi-decision-metrics > div + div {
  border-left: 1px solid var(--line);
}

.roi-decision-metrics dt {
  color: #66727f;
  font-size: 9px;
  font-weight: 720;
  line-height: 1.35;
}

.roi-decision-metrics dd {
  margin: 9px 0 0;
}

.roi-decision-metrics strong,
.roi-decision-metrics small {
  display: block;
}

.roi-decision-metrics strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.roi-decision-metrics small {
  color: #8a949f;
  font-size: 9px;
  line-height: 1.45;
  margin-top: 7px;
}

.roi-ledger {
  border-bottom: 1px solid var(--line);
}

.roi-ledger header {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px 24px 15px;
}

.roi-ledger header p {
  margin: 0;
  max-width: 420px;
  text-align: right;
}

.roi-ledger table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.roi-ledger th,
.roi-ledger td {
  border-bottom: 1px solid var(--line);
  padding: 12px 18px;
  text-align: left;
  vertical-align: middle;
}

.roi-ledger thead th {
  background: #f4f6f8;
  color: #697582;
  font-size: 9px;
  font-weight: 760;
  text-transform: uppercase;
}

.roi-ledger thead th:first-child,
.roi-ledger tbody th {
  width: 25%;
}

.roi-ledger tbody th {
  color: #3c4754;
  font-size: 11px;
  font-weight: 720;
}

.roi-ledger tbody td {
  color: #566270;
  font-size: 11px;
  line-height: 1.45;
}

.roi-ledger tbody td > strong,
.roi-ledger tbody td > small {
  display: block;
}

.roi-ledger tbody td > strong {
  color: inherit;
  font-size: inherit;
}

.roi-ledger tbody td > small {
  color: #8a949f;
  font-size: 9px;
  margin-top: 3px;
}

.roi-ledger tbody td.is-positive {
  color: #08706d;
  font-weight: 760;
}

.roi-ledger tbody td.is-positive.is-negative {
  color: #ad3f36;
}

.roi-ledger tbody .is-negative {
  color: #ad3f36;
}

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

.roi-ledger .roi-total-row {
  background: var(--teal-pale);
}

.roi-ledger .roi-total-row th,
.roi-ledger .roi-total-row td {
  color: var(--ink);
  font-weight: 760;
}

.roi-calculator-footer {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 20px 24px 22px;
}

.roi-formula > span {
  color: var(--amber);
  display: block;
  font-size: 9px;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.roi-formula p {
  color: #727d89;
  font-size: 9px;
  line-height: 1.55;
  margin: 0;
}

.roi-formula p + p {
  margin-top: 3px;
}

.roi-formula strong {
  color: #4c5865;
}

.roi-actions {
  display: flex;
  gap: 9px;
}

.roi-actions .button {
  min-height: 42px;
  padding-left: 15px;
  padding-right: 15px;
}

.impact-note {
  color: #747f8c;
  font-size: 10px;
  line-height: 1.7;
  margin: 14px 0 0;
}

.product-summary-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 96px 28px;
}

.product-summary-grid {
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 52px;
}

.product-summary-module {
  display: flex;
  flex-direction: column;
  min-height: 450px;
  padding: 34px 36px 32px;
  position: relative;
}

.product-summary-module::before {
  background: var(--blue);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.product-summary-module + .product-summary-module {
  border-left: 1px solid var(--line-strong);
}

.product-summary-module.inspect-module::before {
  background: var(--teal);
}

.product-module-header {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
}

.product-module-icon {
  align-items: center;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.inspect-module .product-module-icon {
  background: var(--teal-pale);
  color: var(--teal);
}

.product-module-icon svg {
  height: 21px;
  width: 21px;
}

.product-module-header p,
.product-module-header strong,
.product-module-header small {
  display: block;
  margin: 0;
}

.product-module-header strong {
  color: var(--ink);
  font-size: 14px;
}

.product-module-header small {
  color: var(--teal);
  font-size: 8px;
  font-weight: 700;
  margin-top: 5px;
  text-transform: uppercase;
}

.product-module-header > b {
  color: #9aa4af;
  font-size: 10px;
}

.product-summary-module h3 {
  color: var(--ink);
  font-size: 27px;
  line-height: 1.25;
  margin: 27px 0 0;
}

.product-module-copy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin: 13px 0 0;
  max-width: 510px;
}

.product-module-route {
  align-items: center;
  background: #f1f4f7;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
  margin: 24px 0 16px;
  padding: 14px 16px;
}

.product-module-route span,
.product-module-route strong {
  display: block;
}

.product-module-route span {
  color: #87919c;
  font-size: 7px;
  font-weight: 760;
}

.product-module-route strong {
  color: var(--ink);
  font-size: 10px;
  margin-top: 5px;
}

.product-module-route > svg {
  color: var(--blue);
  height: 16px;
  width: 16px;
}

.inspect-module .product-module-route > svg {
  color: var(--teal);
}

.product-module-points {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-module-points li {
  align-items: flex-start;
  color: #596674;
  display: flex;
  font-size: 10px;
  gap: 9px;
  line-height: 1.55;
}

.product-module-points svg {
  color: var(--teal);
  height: 14px;
  margin-top: 1px;
  width: 14px;
}

.product-module-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
}

.module-proof-link {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--blue-dark);
  cursor: pointer;
  display: inline-flex;
  font-size: 10px;
  font-weight: 720;
  gap: 7px;
  min-height: 40px;
  padding: 0;
}

.module-proof-link svg {
  height: 14px;
  width: 14px;
}

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

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

.roadmap-map .capability-item {
  min-height: 330px;
}

.partnership-section {
  background: #f1f4f7;
  border-top: 1px solid var(--line);
}

.partnership-heading {
  gap: 72px;
}

.partnership-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  margin-top: 58px;
}

.partnership-lead {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 34px;
}

.partnership-kicker {
  color: #b9c9ff;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partnership-lead h3 {
  font-size: 30px;
  line-height: 1.3;
  margin: 58px 0 0;
  max-width: 390px;
}

.partnership-lead p {
  color: #d9e2f0;
  font-size: 13px;
  line-height: 1.8;
  margin: 17px 0 0;
  max-width: 490px;
}

.partnership-lead .button {
  align-self: flex-start;
  margin-top: auto;
}

.partnership-list {
  display: grid;
  gap: 14px;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.partnership-card {
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 26px 28px;
}

.partnership-card > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.partnership-card h3 {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 17px;
  gap: 9px;
  margin: 0;
}

.partnership-card h3 svg {
  color: var(--teal);
  height: 18px;
  width: 18px;
}

.partnership-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin: 10px 0 0;
  max-width: 610px;
}

.partnership-support {
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.partnership-support span {
  align-items: center;
  color: #5e6a77;
  display: flex;
  font-size: 11px;
  gap: 9px;
  min-height: 62px;
  padding: 0 24px;
}

.partnership-support span + span {
  border-left: 1px solid var(--line);
}

.partnership-support svg {
  color: var(--blue);
  height: 16px;
  width: 16px;
}

.capability-map {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 60px;
}

.capability-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 390px;
  padding: 28px 26px;
}

.capability-item.featured {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}

.capability-item.bubble-featured {
  background: #147a78;
  border-color: #147a78;
}

.capability-index {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.capability-index span {
  color: #85909d;
  font-size: 9px;
}

.capability-index svg {
  color: var(--blue);
  height: 26px;
  width: 26px;
}

.featured .capability-index span {
  color: #c8d7ff;
}

.featured .capability-index svg {
  color: #ffffff;
}

.status {
  align-items: center;
  display: flex;
  font-size: 9px;
  font-weight: 760;
  gap: 7px;
  margin: 52px 0 16px;
  text-transform: uppercase;
}

.status::before {
  background: currentColor;
  content: "";
  height: 7px;
  width: 7px;
}

.status.live {
  color: #d9fffc;
}

.status.research {
  color: var(--teal);
}

.status.delivery {
  color: var(--amber);
}

.capability-item h3 {
  font-size: 27px;
  margin: 0;
}

.capability-item h4 {
  font-size: 15px;
  margin: 7px 0 0;
}

.capability-item > p:last-of-type {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin: 20px 0 0;
}

.capability-item.featured > p:last-of-type {
  color: #d9e3fb;
}

.capability-item.featured a {
  color: #ffffff;
}

.closing-section {
  background: var(--blue);
  color: #ffffff;
  padding: 92px 28px;
}

.closing-layout {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.closing-company,
.closing-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
}

.closing-company {
  padding-right: 64px;
}

.closing-action {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 64px;
}

.closing-section .eyebrow {
  color: #d7e2ff;
}

.closing-company h2,
.closing-action h2 {
  color: #ffffff;
  font-size: 43px;
  line-height: 1.2;
  margin: 0;
}

.closing-company > p:not(.eyebrow),
.closing-action > p:not(.eyebrow) {
  color: #dbe4fb;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 18px;
  max-width: 620px;
}

.button-inverse {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--blue-dark);
}

.button-inverse:hover,
.button-inverse:focus-visible {
  background: #eef2fb;
  border-color: #eef2fb;
}

.button-on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.56);
  color: #ffffff;
}

.button-on-dark:hover,
.button-on-dark:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

body.partnership-form-open {
  overflow: hidden;
}

.partnership-form-dialog {
  background: #ffffff;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 28px 90px rgba(6, 18, 35, 0.28);
  color: var(--ink);
  margin: auto;
  max-width: calc(100vw - 32px);
  padding: 0;
  width: 470px;
}

.partnership-form-dialog::backdrop {
  background: rgba(10, 18, 28, 0.68);
  backdrop-filter: blur(4px);
}

.partnership-form-shell {
  padding: 30px;
}

.partnership-form-header {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 21px;
}

.partnership-form-header > div > span {
  color: var(--blue);
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partnership-form-header h2 {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.25;
  margin: 8px 0 0;
}

.partnership-form-header p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 9px 0 0;
}

.partnership-form {
  display: block;
  padding-top: 22px;
}

.partnership-form-fields {
  display: grid;
  gap: 16px;
}

.partnership-form-field {
  display: grid;
  gap: 7px;
}

.partnership-form-field > span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.partnership-form-field input {
  background: #f8fafc;
  border: 1px solid #d4dce5;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  min-height: 46px;
  outline: 0;
  padding: 0 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  width: 100%;
}

.partnership-form-field input::placeholder {
  color: #a3adb8;
}

.partnership-form-field input:focus {
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 87, 214, 0.12);
}

.partnership-form-field input[aria-invalid="true"] {
  border-color: #c64b55;
}

.partnership-form-field small {
  color: #c64b55;
  font-size: 11px;
  min-height: 14px;
}

.partnership-form-note,
.partnership-form-status {
  color: #7d8995;
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}

.partnership-form-status {
  min-height: 18px;
}

.partnership-form-status[data-state="success"] {
  color: #16816e;
}

.partnership-form-status[data-state="error"] {
  color: #c64b55;
}

.partnership-form-submit {
  min-height: 48px;
  width: 100%;
}

.partnership-form-success {
  align-items: center;
  display: grid;
  justify-items: center;
  padding: 20px 8px 2px;
  text-align: center;
}

.partnership-form-success-icon {
  align-items: center;
  background: #e8f7f1;
  border: 1px solid #c3ebdc;
  border-radius: 50%;
  color: #17846c;
  display: flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 18px;
  width: 64px;
}

.partnership-form-success-icon svg {
  height: 29px;
  width: 29px;
}

.partnership-form-success-kicker {
  color: #17846c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partnership-form-success h3 {
  color: var(--ink);
  font-size: 27px;
  line-height: 1.25;
  margin: 8px 0 0;
}

.partnership-form-success p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 13px auto 25px;
  max-width: 300px;
}

.partnership-form-done {
  min-height: 46px;
  width: 100%;
}

.site-footer {
  align-items: center;
  background: #10151c;
  color: #8f9aa7;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 150px;
  padding: 32px max(28px, calc((100vw - var(--content-width)) / 2));
}

.site-footer .brand-copy strong,
.site-footer .footer-brand strong {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.footer-links a {
  font-size: 11px;
}

.footer-links .footer-collaboration-link {
  color: #66717e;
  font-size: 9px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.site-footer > p {
  font-size: 10px;
  justify-self: end;
  margin: 0;
}

.site-footer-records {
  color: #66717e;
  font-size: 9px;
  grid-column: 1 / -1;
  justify-self: end;
}

[data-site-content] {
  white-space: pre-line;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js .reveal.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 901px) and (min-height: 720px) and (prefers-reduced-motion: no-preference) {
  html {
    scroll-snap-type: y proximity;
  }

  .page-panel {
    min-height: calc(100svh - var(--header-height));
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .hero.page-panel {
    min-height: calc(100svh - 96px);
  }

  .closing-section.page-panel {
    align-items: center;
    display: flex;
  }

  .closing-section.page-panel > .section-inner {
    width: 100%;
  }

  .site-footer {
    scroll-snap-align: end;
  }
}

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

  .reveal {
    opacity: 1;
    transition: none;
    transform: none;
  }

  .demo-scan-line {
    animation: none;
    display: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 210px 1fr 176px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 12px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-content {
    max-width: 590px;
  }

  .hero-plane {
    width: 57%;
  }

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

  .section-heading h2,
  .impact-heading h2,
  .company-title h2,
  .final-cta h2,
  .closing-company h2,
  .closing-action h2 {
    font-size: 39px;
  }

  .section-heading {
    gap: 50px;
  }

  .demo-heading {
    gap: 50px;
  }

  .demo-workbench-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .demo-mode-tabs button {
    min-width: 156px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .demo-case-meta {
    min-width: 180px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .demo-workspace {
    grid-template-columns: minmax(0, 1fr) 350px;
  }

  .annotation-details {
    gap: 42px;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .annotation-spotlight {
    grid-template-columns: minmax(470px, 1.05fr) minmax(360px, 0.95fr);
  }

  .annotation-product-copy {
    padding: 40px 34px;
  }

  .inspection-feature {
    grid-template-columns: 1fr;
  }

  .inspection-visual {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }

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

  .roi-input-grid label:nth-child(4) {
    border-left: 0;
  }

  .roi-input-grid label:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

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

  .roi-result-strip article:nth-child(3) {
    border-left: 0;
  }

  .roi-result-strip article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .roi-decision-panel {
    grid-template-columns: 1fr;
  }

  .roi-decision-summary {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .roi-calculator-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .roi-actions {
    width: 100%;
  }

  .capability-item {
    padding: 26px 22px;
  }

  .product-summary-module {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .site-footer > p {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    margin-right: 10px;
  }

  .primary-nav {
    align-items: stretch;
    -webkit-backdrop-filter: blur(22px) saturate(155%);
    backdrop-filter: blur(22px) saturate(155%);
    background: rgba(255, 255, 255, 0.92);
    border: 0;
    border-bottom: 1px solid var(--glass-line);
    border-radius: 0;
    box-shadow: 0 18px 30px rgba(28, 35, 45, 0.1);
    display: none;
    flex-direction: column;
    gap: 0;
    justify-self: stretch;
    left: 0;
    padding: 14px 22px 20px;
    position: absolute;
    right: 0;
    top: var(--header-height);
    width: 100%;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    background: transparent;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    padding: 15px 0;
  }

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

  .primary-nav a.is-active {
    color: var(--blue-dark);
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .primary-nav a.is-active {
    background: transparent;
    box-shadow: none;
  }

  .hero {
    height: 720px;
    min-height: 720px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-visual {
    opacity: 0.55;
    right: -13%;
    width: 104%;
  }

  .hero-plane {
    background: rgba(245, 247, 249, 0.8);
    width: 100%;
  }

  .hero-content {
    max-width: 650px;
  }

  .section-heading {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .demo-heading {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .demo-workbench-header {
    gap: 8px;
    grid-template-columns: 1fr auto;
    padding: 8px;
  }

  .demo-mode-tabs {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
  }

  .demo-mode-tabs button {
    flex: 1;
  }

  .demo-case-meta {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(172, 183, 194, 0.5);
    border-radius: 7px;
    justify-self: stretch;
    min-height: 64px;
    padding: 14px 22px;
    text-align: left;
  }

  .demo-replay {
    min-height: 64px;
    min-width: 142px;
  }

  .demo-workspace {
    grid-template-columns: 1fr;
  }

  .demo-viewer {
    min-height: 590px;
  }

  .demo-result-panel {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
    height: 610px;
  }

  .demo-workbench-footer {
    grid-template-columns: 1fr 1fr;
  }

  .demo-workbench-footer > .button {
    grid-column: 1 / -1;
    margin: 16px 22px 22px;
  }

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

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

  .annotation-workflow li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .annotation-details {
    grid-template-columns: 1fr;
  }

  .annotation-spotlight {
    grid-template-columns: 1fr;
  }

  .annotation-result {
    min-height: 0;
  }

  .annotation-product-copy {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .impact-heading {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .impact-heading-copy {
    max-width: 720px;
  }

  .roi-calculator-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .roi-input-grid label:nth-child(3),
  .roi-input-grid label:nth-child(5) {
    border-left: 0;
  }

  .roi-input-grid label:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .roi-ledger header {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .roi-ledger header p {
    text-align: left;
  }

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

  .closing-company,
  .closing-action {
    min-height: 0;
    padding-bottom: 54px;
    padding-top: 54px;
  }

  .closing-company {
    padding-right: 0;
  }

  .closing-action {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    padding-left: 0;
  }

  .roadmap-map .capability-item:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-logo {
    height: auto;
    width: 142px;
  }

  .footer-brand-logo {
    height: 36px;
    width: 36px;
  }

  .header-cta {
    font-size: 0;
    min-width: 42px;
    padding: 0;
    width: 42px;
  }

  .header-cta svg {
    height: 18px;
    width: 18px;
  }

  .hero {
    align-items: flex-start;
    height: auto;
    min-height: 720px;
    padding: calc(var(--header-height) + 60px) 20px 84px;
  }

  .hero-visual {
    bottom: 0;
    height: 59%;
    opacity: 0.62;
    right: -47%;
    top: auto;
    width: 154%;
  }

  .hero-plane {
    background: rgba(245, 247, 249, 0.78);
    top: var(--header-height);
  }

  .hero h1 {
    font-size: 43px;
    line-height: 1.1;
  }

  .hero-statement {
    font-size: 20px;
    line-height: 1.45;
    margin-top: 20px;
  }

  .hero-copy {
    font-size: 13px;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 23px;
  }

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

  .hero-signals {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    margin-top: 20px;
  }

  .hero-signals span {
    font-size: 10px;
  }

  .hero-figure-label {
    bottom: 18px;
    left: 20px;
    right: auto;
  }

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

  .capability-strip > a {
    min-height: 100px;
    padding: 20px;
  }

  .capability-strip > a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #38414d;
  }

  .capability-strip > a:nth-child(4) {
    border-top: 1px solid #38414d;
  }

  .capability-strip > a:nth-child(5) {
    border-left: 0;
    border-top: 1px solid #38414d;
    grid-column: 1 / -1;
  }

  .capability-strip strong {
    font-size: 15px;
  }

  .section {
    padding: 78px 20px;
  }

  .demo-section {
    padding: 78px 20px 84px;
  }

  .demo-heading h2 {
    font-size: 32px;
  }

  .demo-heading-copy > p {
    font-size: 14px;
  }

  .demo-workbench {
    border-radius: 6px;
    margin-top: 42px;
  }

  .demo-mode-tabs button {
    gap: 8px;
    min-width: 0;
    padding: 0 14px;
  }

  .demo-mode-tabs svg {
    height: 19px;
    width: 19px;
  }

  .demo-case-meta {
    min-width: 0;
    padding-left: 16px;
    padding-right: 10px;
  }

  .demo-case-meta strong {
    font-size: 10px;
  }

  .demo-replay {
    min-height: 56px;
    min-width: 48px;
    padding: 0;
    width: 52px;
  }

  .demo-replay span {
    display: none;
  }

  .demo-viewer {
    grid-template-rows: 72px minmax(0, 1fr) 48px;
    min-height: 520px;
  }

  .demo-viewer-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    padding: 10px 14px;
  }

  .demo-view-switch {
    width: 100%;
  }

  .demo-view-switch button {
    flex: 1;
  }

  .demo-canvas-frame {
    padding: 12px;
  }

  .demo-workbench[data-mode="annotation"] .demo-canvas-sheet {
    width: 100%;
  }

  .demo-workbench[data-mode="bubble"] .demo-canvas-sheet {
    height: auto;
    width: min(100%, 430px);
  }

  .demo-processing-copy {
    padding: 23px 20px 21px;
  }

  .demo-processing-copy h3 {
    font-size: 18px;
  }

  .demo-viewer-footer {
    padding: 0 13px;
  }

  .demo-result-panel {
    height: 480px;
  }

  .demo-workbench-footer {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .demo-workbench-footer > div {
    display: none;
  }

  .demo-workbench-footer > .button {
    grid-column: auto;
    margin: 14px 18px;
    width: auto;
  }

  .section-heading h2,
  .impact-heading h2,
  .company-title h2,
  .final-cta h2,
  .closing-company h2,
  .closing-action h2 {
    font-size: 32px;
  }

  .section-heading > p,
  .impact-heading > p:last-child,
  .company-copy > p,
  .final-cta-inner > p:not(.eyebrow) {
    font-size: 14px;
  }

  .annotation-workflow {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .annotation-spotlight {
    margin-top: 42px;
  }

  .result-viewer {
    border: 0;
    border-radius: 0;
    height: 100dvh;
    width: 100vw;
  }

  .result-viewer-header {
    min-height: 64px;
    padding: 0 14px 0 18px;
  }

  .result-viewer-header strong {
    font-size: 14px;
  }

  .result-viewer-toolbar {
    gap: 8px;
    padding: 8px 12px;
  }

  .result-viewer-toolbar input[type="range"] {
    min-width: 80px;
    width: 100%;
  }

  .result-viewer-stage {
    padding: 16px;
  }

  .annotation-product-copy {
    padding: 34px 20px;
  }

  .annotation-product-copy h3 {
    font-size: 25px;
  }

  .inspection-copy {
    padding: 34px 20px;
  }

  .inspection-copy h3 {
    font-size: 25px;
  }

  .inspection-route {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .inspection-route > svg {
    transform: rotate(90deg);
  }

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

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

  .inspection-actions > span {
    max-width: none;
  }

  .inspection-visual {
    padding: 14px;
  }

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

  .product-facts > div {
    padding: 13px 0;
  }

  .product-facts > div + div {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
    padding-left: 0;
  }

  .annotation-workflow li {
    min-height: 176px;
    padding: 26px 18px;
  }

  .annotation-workflow li + li,
  .annotation-workflow li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .annotation-workflow h3 {
    margin-top: 25px;
  }

  .annotation-details {
    gap: 34px;
    margin-top: 32px;
    padding: 32px 20px;
  }

  .annotation-lead h3 {
    font-size: 23px;
  }

  .function-list div {
    gap: 12px;
    grid-template-columns: 72px 1fr;
  }

  .impact-section {
    padding-bottom: 68px;
    padding-top: 68px;
  }

  .roi-calculator {
    margin-top: 32px;
  }

  .roi-calculator-header {
    padding: 18px 16px;
  }

  .roi-preset-control {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .roi-preset-control button {
    min-height: 50px;
    width: 100%;
  }

  .roi-input-grid {
    grid-template-columns: 1fr;
  }

  .roi-input-grid label,
  .roi-input-grid label:nth-child(3),
  .roi-input-grid label:nth-child(4),
  .roi-input-grid label:nth-child(5) {
    border-left: 0;
  }

  .roi-input-grid label + label {
    border-top: 1px solid var(--line);
  }

  .roi-input-grid label {
    padding-left: 16px;
    padding-right: 16px;
  }

  .roi-result-strip {
    grid-template-columns: 1fr;
  }

  .roi-result-strip article,
  .roi-result-strip article:nth-child(3) {
    border-left: 0;
    min-height: 0;
  }

  .roi-result-strip article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .roi-decision-summary {
    padding-left: 16px;
    padding-right: 16px;
  }

  .roi-decision-metrics {
    grid-template-columns: 1fr;
  }

  .roi-decision-metrics > div {
    border-left: 0;
  }

  .roi-decision-metrics > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .roi-ledger header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .roi-ledger thead {
    display: none;
  }

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

  .roi-ledger tr {
    border-bottom: 1px solid var(--line);
    padding: 14px 16px;
  }

  .roi-ledger tbody tr:last-child {
    border-bottom: 0;
  }

  .roi-ledger tbody th,
  .roi-ledger tbody td {
    border: 0;
    padding: 0;
  }

  .roi-ledger tbody th {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .roi-ledger tbody td {
    display: grid;
    gap: 10px;
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .roi-ledger tbody td + td {
    margin-top: 7px;
  }

  .roi-ledger tbody td::before {
    color: #89939e;
    content: attr(data-label);
    font-size: 8px;
    font-weight: 700;
  }

  .roi-calculator-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .roi-actions {
    flex-direction: column;
  }

  .roi-actions .button {
    justify-content: center;
    width: 100%;
  }

  .product-summary-section {
    padding: 68px 20px;
  }

  .product-summary-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .product-summary-module {
    min-height: 0;
    padding: 30px 20px 28px;
  }

  .product-summary-module + .product-summary-module {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }

  .product-summary-module h3 {
    font-size: 23px;
  }

  .product-module-route {
    align-items: center;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) 16px minmax(0, 1fr);
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-module-route > svg {
    transform: none;
  }

  .product-module-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-module-actions .button {
    width: 100%;
  }

  .capability-map {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .capability-item {
    min-height: 330px;
  }

  .roadmap-map .capability-item {
    min-height: 260px;
    padding: 22px 20px;
  }

  .roadmap-map .status {
    margin: 28px 0 12px;
  }

  .roadmap-map .capability-item > p:last-of-type {
    line-height: 1.6;
    margin-top: 12px;
  }

  .roadmap-map .capability-item:last-child {
    grid-column: auto;
  }

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

  .closing-section {
    padding: 64px 20px;
  }

  .closing-company,
  .closing-action {
    padding-bottom: 42px;
    padding-top: 42px;
  }

  .final-actions {
    flex-direction: column;
  }

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

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 13px;
    justify-content: flex-start;
  }

.site-footer > p {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .demo-summary-toggle {
    align-items: center;
    background: #ffffff;
    border: 0;
    border-bottom: 1px solid var(--line-strong);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    min-height: 64px;
    padding: 13px 16px;
    text-align: left;
    width: 100%;
  }

  .demo-summary-toggle span,
  .demo-summary-toggle strong,
  .demo-summary-toggle small {
    display: block;
  }

  .demo-summary-toggle strong {
    font-size: 14px;
  }

  .demo-summary-toggle small {
    color: #7a8692;
    font-size: 9px;
    margin-top: 4px;
  }

  .demo-summary-toggle svg {
    color: var(--blue);
    height: 18px;
    transition: transform 160ms ease;
    width: 18px;
  }

  .demo-result-panel {
    height: auto;
  }

  .demo-result-panel.is-open {
    height: 480px;
  }

  .demo-summary-body {
    display: none;
  }

  .demo-result-panel.is-open .demo-summary-body {
    display: block;
    height: calc(100% - 64px);
  }

  .demo-result-panel.is-open .demo-summary-toggle svg {
    transform: rotate(180deg);
  }

  .demo-summary-body > section {
    height: 100%;
  }

  .roi-header-actions {
    align-items: stretch;
    width: 100%;
  }

  .roi-reset-button {
    align-self: flex-end;
  }

  .roi-live-note {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 640px) {
  .hero-action-group {
    width: 100%;
  }

  .hero-action-note {
    padding-left: 0;
    text-align: center;
  }

  .roi-live-note {
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .partnership-heading {
    gap: 34px;
  }

  .partnership-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .partnership-lead {
    min-height: 0;
    padding: 28px;
  }

  .partnership-lead h3 {
    margin-top: 42px;
  }

  .partnership-list {
    grid-template-rows: none;
  }

  .partnership-support {
    grid-template-columns: 1fr;
  }

  .partnership-support span {
    min-height: 54px;
    padding: 0 20px;
  }

  .partnership-support span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .partnership-lead h3 {
    font-size: 25px;
  }

  .partnership-card {
    gap: 12px;
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 22px 20px;
  }

  .partnership-card h3 {
    font-size: 16px;
  }
}
