@charset "UTF-8";

:root {
  --font-sans:
    InterVariable, Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #111318;
  --ink-soft: #4f5663;
  --ink-faint: #737b88;
  --paper: #ffffff;
  --canvas: #f7f8f6;
  --well: #f1f3f5;
  --blue: #2d3ace;
  --blue-dark: #222eaf;
  --blue-soft: #eef0ff;
  --blue-pale: #f7f7ff;
  --cyan: #3e8fb9;
  --green: #16845b;
  --green-soft: #eaf7f1;
  --amber: #ac6c00;
  --amber-soft: #fff7dc;
  --red: #b94242;
  --red-soft: #fff0ef;
  --line: rgb(17 19 24 / 10%);
  --line-strong: rgb(17 19 24 / 16%);
  --shadow: 0 28px 80px rgb(20 26 54 / 12%), 0 4px 16px rgb(20 26 54 / 7%);
  --radius-panel: 22px;
  --shell: 1280px;
}

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

html {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "cv02", "cv03", "cv04", "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
}

body.menu-open {
  overflow: hidden;
}

body.landing-page {
  position: relative;
}

body.landing-page::before,
body.landing-page::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

body.landing-page::before {
  top: -70px;
  left: -5%;
  width: 69%;
  height: 1160px;
  background-image: radial-gradient(
    circle at center,
    rgb(45 58 206 / 24%) 1px,
    transparent 1.35px
  );
  background-position: 5px 8px;
  background-size: 23px 23px;
  -webkit-mask-image: radial-gradient(
    ellipse 72% 66% at 39% 44%,
    black 0,
    rgb(0 0 0 / 82%) 42%,
    transparent 82%
  );
  mask-image: radial-gradient(
    ellipse 72% 66% at 39% 44%,
    black 0,
    rgb(0 0 0 / 82%) 42%,
    transparent 82%
  );
  opacity: 0.58;
}

body.landing-page::after {
  top: -390px;
  right: -280px;
  width: 1060px;
  height: 1060px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(45 58 206 / 13%) 0,
    rgb(45 58 206 / 4%) 38%,
    transparent 70%
  );
}

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

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

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

p,
h1,
h2,
h3,
dl,
dd,
ol {
  margin: 0;
}

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

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

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: 28px;
}

.page-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgb(247 248 246 / 88%);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.landing-page .site-header {
  background: transparent;
  backdrop-filter: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.landing-page .site-header.is-scrolled,
.landing-page.menu-open .site-header {
  border-bottom-color: var(--line);
  background: rgb(247 248 246 / 86%);
  box-shadow: 0 10px 32px rgb(20 26 54 / 4%);
  backdrop-filter: blur(18px) saturate(1.12);
}

.landing-page .page-shell {
  z-index: 1;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: 104px;
  min-width: 0;
  align-items: center;
}

.brand img {
  width: 104px;
  height: 48px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--ink-soft);
  font-size: 0.875rem;
}

.desktop-nav a,
.footer-links a,
.header-cta,
.text-link {
  outline: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.desktop-nav a:focus-visible,
.footer-links a:focus-visible,
.header-cta:focus-visible,
.text-link:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid #4f78ff;
  outline-offset: 3px;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: rgb(255 255 255 / 70%);
  padding: 7px 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.header-cta:hover {
  border-color: rgb(45 58 206 / 35%);
  color: var(--blue);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transform-origin: center;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}
.menu-toggle span:nth-child(2) {
  top: 23px;
}
.menu-toggle span:nth-child(3) {
  top: 30px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav-inner {
  display: grid;
  padding-block: 12px 22px;
}

.mobile-nav a {
  border-bottom: 1px solid var(--line);
  padding-block: 15px;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-nav a:last-child {
  border-bottom: 0;
  color: var(--blue);
}

.hero {
  position: relative;
  padding-block: 96px 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(650px, 1.22fr);
  align-items: center;
  gap: 50px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 24px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.hero h1 {
  max-width: 10.8ch;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(3.5rem, 5.8vw, 5.7rem);
  font-weight: 560;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-lede {
  max-width: 45ch;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 1.125rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-weight: 650;
}

.button-primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 8px 22px rgb(45 58 206 / 20%);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 0.9375rem;
  font-weight: 620;
}

.text-link:hover {
  color: var(--blue);
}

.hero-note {
  max-width: 48ch;
  margin-top: 18px;
  color: var(--ink-faint);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.hero-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-scope span {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgb(255 255 255 / 60%);
  padding: 6px 12px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 600;
}

.workspace-wrap {
  position: relative;
  min-width: 0;
}

.workspace-caption {
  margin-top: 14px;
  color: var(--ink-faint);
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: right;
}

.workspace-aura {
  position: absolute;
  inset: -14% -10% -12%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgb(68 88 241 / 13%),
    transparent 67%
  );
  filter: blur(14px);
}

.workspace {
  position: relative;
  overflow: hidden;
  border-radius: min(1.7vw, var(--radius-panel));
  background: var(--paper);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgb(17 19 24 / 8%);
}

.workspace-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
}

.workspace-breadcrumb {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.workspace-breadcrumb strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.muted {
  color: #a0a6af;
}

.mini-mark {
  display: block;
  width: 18px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 9px 5px 7px;
  font-size: 0.6875rem;
  font-weight: 650;
  white-space: nowrap;
}

.status i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.status-active {
  background: var(--amber-soft);
  color: var(--amber);
}

.status-active i {
  animation: status-pulse 2.4s ease-out infinite;
}

.status-clear {
  background: var(--green-soft);
  color: var(--green);
}

.status-review {
  background: var(--blue-soft);
  color: var(--blue);
}

.status-running {
  background: var(--amber-soft);
  color: var(--amber);
}

.workspace-body {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 146px;
  min-height: 540px;
}

.workspace-sidebar {
  min-width: 0;
  border-right: 1px solid var(--line);
  background: #fbfbfa;
  padding: 18px 10px;
}

.side-label {
  padding: 0 8px 8px;
  color: #9399a3;
  font-size: 0.625rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.side-label-spaced {
  margin-top: 20px;
}

.side-item {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 7px;
  padding: 9px 8px;
  color: var(--ink-soft);
  font-size: 0.6875rem;
}

.side-item span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-item b {
  color: #9298a2;
  font-size: 0.625rem;
  font-weight: 550;
  font-variant-numeric: tabular-nums;
}

.side-item.active {
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 620;
}

.workspace-content {
  min-width: 0;
  padding: 22px 20px 26px;
}

.record-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.record-kicker {
  color: var(--ink-faint);
  font-size: 0.6875rem;
}

.record-head h2 {
  margin-top: 4px;
  font-size: 1.125rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.record-meta {
  display: grid;
  gap: 2px;
  text-align: right;
}

.record-meta span,
.record-facts span {
  color: var(--ink-faint);
  font-size: 0.625rem;
}

.record-meta strong,
.record-facts strong {
  font-size: 0.6875rem;
  font-weight: 620;
}

.record-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--line);
}

.record-facts div {
  display: grid;
  min-width: 0;
  gap: 3px;
  background: white;
  padding: 10px;
}

.record-facts strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sample-card {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.sample-head,
.sample-row {
  display: flex;
  align-items: center;
}

.sample-head {
  justify-content: space-between;
  gap: 16px;
  padding: 11px 12px;
}

.sample-head p,
.rail-block p,
.map-label {
  color: var(--ink-faint);
  font-size: 0.625rem;
}

.sample-head strong {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  font-weight: 630;
}

.sample-row {
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 9px 12px;
  font-size: 0.6875rem;
}

.sample-row > span:nth-child(2) {
  min-width: 0;
  flex: 1 1 auto;
}

.sample-row strong,
.sample-row small {
  display: block;
}

.sample-row strong {
  font-weight: 620;
}

.sample-row small {
  margin-top: 2px;
  color: var(--ink-faint);
  font-size: 0.625rem;
}

.sample-code {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  background: var(--well);
  color: var(--ink-soft);
  font-size: 0.625rem;
  font-weight: 650;
}

.sample-time {
  flex: 0 0 auto;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}

.test-table {
  width: 100%;
  margin-top: 14px;
  border-collapse: collapse;
  font-size: 0.6875rem;
}

.test-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.test-table th,
.test-table td {
  border-bottom: 1px solid var(--line);
  padding: 9px 8px 9px 2px;
  text-align: left;
  white-space: nowrap;
}

.test-table th:first-child,
.test-table td:first-child {
  width: 42%;
}

.test-table th:nth-child(2),
.test-table td:nth-child(2) {
  width: 32%;
}

.test-table th:last-child,
.test-table td:last-child {
  width: 26%;
  padding-right: 2px;
}

.test-table strong,
.test-table small {
  display: block;
}
.test-table strong {
  font-weight: 620;
}
.test-table small {
  color: var(--ink-faint);
  font-size: 0.625rem;
  margin-top: 2px;
}

.test-table th {
  color: var(--ink-faint);
  font-size: 0.625rem;
  font-weight: 500;
}

.stage {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  vertical-align: 1px;
}

.stage-done {
  background: var(--green);
}
.stage-review {
  background: var(--blue);
}
.stage-run {
  background: #d69712;
}
.stage-muted {
  background: #a5abb4;
}

.workspace-rail {
  min-width: 0;
  border-left: 1px solid var(--line);
  background: #fbfbfa;
  padding: 18px 14px;
}

.rail-block {
  padding-bottom: 18px;
}

.release-ring {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 12px auto 0;
  place-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side, #fbfbfa 79%, transparent 80% 99%),
    conic-gradient(var(--blue) 75%, #e5e7ea 0);
  text-align: center;
}

.release-ring span {
  font-size: 0.9375rem;
  font-weight: 680;
  font-variant-numeric: tabular-nums;
}

.release-ring small {
  margin-top: 1px;
  color: var(--ink-faint);
  font-size: 0.5625rem;
}

.rail-list {
  display: grid;
  gap: 9px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.rail-list > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.625rem;
}

.rail-list strong {
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.integration-state {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.integration-state strong {
  font-size: 0.6875rem;
  font-weight: 650;
}

.integration-state > span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-size: 0.625rem;
}

.integration-state > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgb(22 132 91 / 10%);
}

.rail-event {
  display: grid;
  gap: 3px;
  margin-top: 4px;
  border-radius: 8px;
  background: var(--well);
  padding: 10px;
  font-size: 0.5625rem;
}

.rail-event span,
.rail-event small {
  color: var(--ink-faint);
}
.rail-event strong {
  font-size: 0.625rem;
  font-weight: 630;
}

.workspace-signal {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgb(45 58 206 / 9%);
}

.workspace-signal span {
  display: block;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: signal-move 7s ease-in-out infinite;
}

.credibility-bar {
  container: credibility / inline-size;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 45%);
}

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

.credibility-grid > div {
  display: grid;
  min-width: 0;
  gap: 5px;
  border-left: 1px solid var(--line);
  padding: 24px 32px;
}

.credibility-grid > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.credibility-grid > div:last-child {
  padding-right: 0;
}

.credibility-grid dt {
  min-width: 0;
  overflow: hidden;
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.credibility-grid dd {
  min-width: 0;
  overflow: hidden;
  color: var(--ink-faint);
  font-size: 0.8125rem;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@container credibility (max-width: 700px) {
  .credibility-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .credibility-grid > div,
  .credibility-grid > div:first-child,
  .credibility-grid > div:last-child {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 20px 0;
  }

  .credibility-grid > div:first-child {
    border-top: 0;
  }

  .credibility-grid dt {
    font-size: 1.75rem;
  }

  .credibility-grid dd {
    font-size: 1rem;
  }
}

.section {
  padding-block: 132px;
}

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

.section-heading h2,
.product-copy h2,
.controls-copy h2,
.fit-heading h2,
.closing-panel h2 {
  max-width: 19ch;
  margin-top: 18px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1.03;
  text-wrap: balance;
}

.section-heading > p,
.product-lede,
.controls-copy > p,
.closing-action > p {
  max-width: 49ch;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.workflow-lane {
  list-style: none;
  margin-top: 76px;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}

.workflow-lane li {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
}

.workflow-lane li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58px;
  width: 1px;
  background: var(--line);
  content: "";
}

.step-index {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--canvas);
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
}

.step-content {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: baseline;
  gap: 26px;
  min-width: 0;
}

.step-content h3 {
  font-size: 1.375rem;
  font-weight: 580;
  letter-spacing: -0.03em;
}

.step-content p {
  max-width: 67ch;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.step-state {
  border-radius: 999px;
  background: white;
  box-shadow: 0 0 0 1px var(--line);
  padding: 6px 10px;
  color: var(--ink-soft);
  font-size: 0.6875rem;
  font-weight: 620;
  white-space: nowrap;
}

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

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: 72px;
}

.product-copy {
  min-width: 0;
}

.product-lede {
  margin-top: 26px;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.feature-list > div {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding-block: 20px;
}

.feature-list dt {
  font-size: 0.9375rem;
  font-weight: 640;
}

.feature-list dd {
  max-width: 55ch;
  color: var(--ink-soft);
  font-size: 0.875rem;
  line-height: 1.65;
}

.result-console {
  overflow: hidden;
  border-radius: min(1.5vw, var(--radius-panel));
  background: white;
  box-shadow:
    var(--shadow),
    0 0 0 1px var(--line);
}

.result-console-head,
.result-console-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.result-console-head {
  min-height: 74px;
  border-bottom: 1px solid var(--line);
  padding: 15px 20px;
}

.result-console-head > div > span,
.result-summary span,
.history-copy > span {
  color: var(--ink-faint);
  font-size: 0.6875rem;
}

.result-console-head strong {
  display: block;
  margin-top: 3px;
  font-size: 1rem;
  font-weight: 650;
}

.result-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fbfbfa;
  padding: 18px 20px;
}

.result-summary > div {
  display: grid;
  min-width: 0;
  gap: 4px;
  border-left: 1px solid var(--line);
  padding-inline: 18px;
}

.result-summary > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.result-summary > div:last-child {
  padding-right: 0;
}

.result-summary strong {
  min-width: 0;
  overflow: hidden;
  font-size: 0.8125rem;
  font-weight: 630;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-history {
  list-style: none;
  margin: 0;
  padding: 8px 20px;
}

.result-history li {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-block: 17px;
}

.result-history li:last-child {
  border-bottom: 0;
}

.result-history li:not(:last-child)::after {
  position: absolute;
  top: calc(50% + 5px);
  bottom: calc(-50% + 5px);
  left: 5px;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.history-marker {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-strong);
}

.history-entered {
  background: var(--amber);
}

.history-validated {
  background: var(--blue);
}

.history-final {
  background: var(--green);
}

.history-copy {
  min-width: 0;
}

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

.history-copy strong {
  margin-top: 3px;
  font-size: 0.875rem;
  font-weight: 630;
}

.history-copy small {
  margin-top: 4px;
  color: var(--ink-faint);
  font-size: 0.6875rem;
}

.history-value {
  color: var(--ink-soft);
  font-size: 0.6875rem;
  font-weight: 620;
  white-space: nowrap;
}

.result-console-foot {
  background: #fbfbfa;
  padding: 13px 20px;
  color: var(--ink-faint);
  font-size: 0.625rem;
}

.controls-section {
  background: var(--paper);
  padding-top: 0;
}

.controls-panel,
.closing-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-panel);
  background: #111521;
  color: white;
}

.controls-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 80px;
  padding: 74px;
}

.controls-panel::before,
.closing-panel::before {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(88 108 255 / 23%), transparent 66%);
  content: "";
  pointer-events: none;
}

.controls-panel::before {
  top: -350px;
  left: -250px;
}

.controls-copy,
.control-grid,
.closing-panel > * {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: #9faaff;
}

.controls-copy h2 {
  max-width: 11ch;
  color: white;
}

.controls-copy > p {
  margin-top: 26px;
  color: #b9bfcb;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  align-self: start;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 15px;
  background: rgb(255 255 255 / 11%);
  overflow: hidden;
}

.control-grid > div {
  min-width: 0;
  background: #151a28;
  padding: 24px;
}

.control-grid dt {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
  color: white;
  font-size: 0.875rem;
  font-weight: 620;
}

.control-grid dt span {
  color: #8f9bf4;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.6875rem;
}

.control-grid dd {
  margin-top: 10px;
  color: #aeb5c1;
  font-size: 0.8125rem;
  line-height: 1.65;
}

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

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--line);
}

.capability-grid > div {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 8px;
  background: var(--paper);
  padding: 26px 24px;
}

.capability-grid dt {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 640;
}

.capability-grid dt span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.6875rem;
}

.capability-grid dd {
  color: var(--ink-soft);
  font-size: 0.875rem;
  line-height: 1.65;
}

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

.integration-map {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(220px, 1fr) 150px 180px 110px
    minmax(220px, 1fr);
  align-items: center;
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 54px;
}

.map-source-stack,
.map-destination {
  position: relative;
  display: grid;
  min-width: 0;
}

.map-source-stack {
  grid-column: 1;
  grid-row: 1;
  grid-template-rows: repeat(3, 56px);
  gap: 12px;
  justify-items: end;
}

.map-destination {
  grid-column: 5;
  grid-row: 1;
  justify-items: start;
}

.map-source-stack .map-label {
  position: absolute;
  top: -28px;
  right: 0;
}

.map-destination .map-label {
  position: absolute;
  top: -28px;
  left: 0;
}

.instrument-node,
.destination-node {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 240px);
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 10px 14px;
}

.instrument-node {
  min-height: 56px;
  align-content: center;
}

.destination-node {
  min-height: 64px;
  align-content: center;
}

.instrument-node span,
.destination-node span {
  color: var(--ink-faint);
  font-size: 0.6875rem;
}

.instrument-node strong,
.destination-node strong {
  font-size: 0.875rem;
  font-weight: 630;
}

.map-fan-in {
  display: block;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: 100%;
  height: 192px;
  overflow: visible;
}

.connector-path,
.connector-flow {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}

.connector-path {
  stroke: rgb(45 58 206 / 16%);
  stroke-width: 1;
}

.connector-flow {
  stroke: var(--blue);
  stroke-width: 2.5;
  stroke-dasharray: 8 180;
}

.connector-flow-out {
  animation: connector-flow-out 3.2s linear infinite;
}

.connector-flow-in {
  opacity: 0.7;
  animation: connector-flow-in 3.6s linear infinite;
}

.flow-one {
  animation-delay: -0.4s;
}

.flow-two {
  animation-delay: -1.5s;
}

.flow-three {
  animation-delay: -2.6s;
}

.map-core {
  position: relative;
  z-index: 3;
  display: grid;
  grid-column: 3;
  grid-row: 1;
  width: 180px;
  height: 180px;
  place-content: center;
  justify-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  box-shadow: 0 22px 50px rgb(45 58 206 / 24%);
}

.gateway-prompt {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 10px;
  background: rgb(255 255 255 / 8%);
  color: white;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.875rem;
  font-weight: 650;
}

.map-core strong {
  margin-top: 8px;
  font-size: 1.125rem;
  font-weight: 620;
}

.map-core > span {
  margin-top: 3px;
  color: #d8dcff;
  font-size: 0.6875rem;
}

.core-orbit {
  position: absolute;
  inset: -16px;
  border: 1px solid rgb(45 58 206 / 18%);
  border-radius: 50%;
}

.core-orbit span {
  position: absolute;
  top: 11px;
  right: 34px;
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 50%;
  background: #5a68ed;
  box-shadow: 0 0 0 1px rgb(45 58 206 / 25%);
}

.map-line {
  display: block;
  grid-column: 4;
  grid-row: 1;
  z-index: 1;
  width: 100%;
  height: 56px;
  overflow: visible;
}

.integration-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
}

.integration-notes > div {
  display: grid;
  min-width: 0;
  gap: 5px;
  border-left: 1px solid var(--line);
  padding-inline: 28px;
}

.integration-notes > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.integration-notes > div:last-child {
  padding-right: 0;
}

.integration-notes span {
  color: var(--blue);
  font-size: 0.6875rem;
  font-weight: 640;
}

.integration-notes strong {
  font-size: 0.8125rem;
  font-weight: 560;
  line-height: 1.5;
}

/* Shared two-column heading + dt/dd list layout (used by the Trust section; formerly "Beyond the bench") */
.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
}

.fit-heading h2 {
  max-width: 15ch;
}

.fit-lede {
  max-width: 49ch;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

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

.fit-list > div {
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(0, 1fr);
  gap: 34px;
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
}

.fit-list dt {
  font-size: 0.9375rem;
  font-weight: 640;
}

.fit-list dd {
  color: var(--ink-soft);
  font-size: 0.875rem;
  line-height: 1.65;
}

.closing-section {
  background: #f0f1ee;
  padding-bottom: 132px;
}

.closing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 80px;
  padding: 74px;
}

.closing-panel::before {
  right: -250px;
  bottom: -370px;
}

.closing-panel h2 {
  max-width: 15ch;
  color: white;
}

.closing-action {
  display: grid;
  gap: 26px;
  justify-items: start;
}

.closing-action > p {
  color: #b9bfcb;
}

.button-light {
  border: 1px solid rgb(255 255 255 / 25%);
  background: rgb(255 255 255 / 7%);
  color: white;
}

.button-light:hover {
  background: rgb(255 255 255 / 12%);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding-block: 62px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(2, 1fr);
  gap: 58px;
}

.footer-brand p {
  max-width: 31ch;
  margin-top: 12px;
  color: var(--ink-faint);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links span {
  margin-bottom: 4px;
  color: var(--ink-faint);
  font-size: 0.6875rem;
  font-weight: 650;
}

.footer-links a {
  width: fit-content;
  color: var(--ink-soft);
  font-size: 0.8125rem;
  font-weight: 400;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--ink-faint);
  font-size: 0.6875rem;
}

.footer-meta-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-meta-links a {
  color: var(--ink-soft);
  outline: none;
}

.footer-meta-links a:hover,
.footer-meta-links a:focus-visible {
  color: var(--ink);
}

.footer-meta-links a:focus-visible {
  outline: 2px solid #4f78ff;
  outline-offset: 3px;
}

.privacy-page {
  background: var(--paper);
}

.privacy-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
  padding-block: 108px 96px;
}

.privacy-hero-glow {
  position: absolute;
  top: -460px;
  left: 50%;
  width: 920px;
  height: 720px;
  transform: translateX(-20%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(72 88 232 / 12%), transparent 67%);
  pointer-events: none;
}

.privacy-hero .shell {
  position: relative;
}

.privacy-hero h1 {
  max-width: 13ch;
  margin-top: 20px;
  font-size: clamp(3.25rem, 6vw, 5.75rem);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.privacy-intro {
  max-width: 64ch;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.privacy-effective {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 36px;
  color: var(--ink-faint);
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
}

.privacy-effective span {
  color: var(--blue);
  font-weight: 640;
}

.privacy-body {
  padding-block: 96px 132px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.52fr);
  align-items: start;
  gap: 96px;
}

.privacy-summary {
  position: sticky;
  top: 116px;
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}

.privacy-summary h2 {
  font-size: 0.875rem;
  font-weight: 650;
}

.privacy-summary dl {
  margin-top: 18px;
}

.privacy-summary dl > div {
  border-top: 1px solid var(--line);
  padding-block: 17px;
}

.privacy-summary dt {
  color: var(--ink-faint);
  font-size: 0.6875rem;
  font-weight: 620;
}

.privacy-summary dd {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.8125rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.privacy-summary a,
.privacy-content a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgb(45 58 206 / 30%);
  text-underline-offset: 3px;
  outline: none;
}

.privacy-summary a:hover,
.privacy-summary a:focus-visible,
.privacy-content a:hover,
.privacy-content a:focus-visible {
  color: var(--blue-dark);
  text-decoration-color: currentColor;
}

.privacy-summary a:focus-visible,
.privacy-content a:focus-visible {
  outline: 2px solid #4f78ff;
  outline-offset: 3px;
}

.privacy-content {
  min-width: 0;
  border-top: 1px solid var(--line-strong);
}

.privacy-content > section {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-block: 34px 42px;
  scroll-margin-top: 110px;
}

.privacy-section-number {
  padding-top: 5px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.6875rem;
  font-variant-numeric: tabular-nums;
}

.privacy-content h2 {
  max-width: 30ch;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.privacy-content h3 {
  margin-top: 28px;
  font-size: 1rem;
  font-weight: 640;
}

.privacy-content p,
.privacy-content li {
  max-width: 72ch;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.privacy-content h2 + p,
.privacy-content h3 + p,
.privacy-content p + p,
.privacy-content p + ul {
  margin-top: 15px;
}

.privacy-content ul {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 21px;
}

.privacy-content li::marker {
  color: var(--blue);
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(172 108 0 / 28%);
  }
  55%,
  100% {
    box-shadow: 0 0 0 7px transparent;
  }
}

@keyframes signal-move {
  0%,
  14% {
    transform: translateX(-110%);
  }
  70%,
  100% {
    transform: translateX(660%);
  }
}

@keyframes connector-flow-out {
  to {
    stroke-dashoffset: -188;
  }
}

@keyframes connector-flow-in {
  to {
    stroke-dashoffset: 188;
  }
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(590px, 1.2fr);
    gap: 34px;
  }

  .workspace-body {
    grid-template-columns: 110px minmax(0, 1fr) 130px;
  }

  .controls-panel,
  .closing-panel {
    padding: 56px;
  }

  .controls-panel {
    gap: 56px;
  }

  .product-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
    gap: 52px;
  }
}

@media (max-width: 960px) {
  body.landing-page::before {
    top: -60px;
    left: -18%;
    width: 112%;
    height: 820px;
  }

  body.landing-page::after {
    top: 220px;
    right: -48%;
    width: 1180px;
    height: 1180px;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }

  .hero h1 {
    max-width: 11ch;
  }
  .hero-lede {
    max-width: 55ch;
  }

  .workspace-wrap {
    width: 100%;
  }

  .section {
    padding-block: 104px;
  }

  .section-heading-split,
  .product-grid,
  .fit-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

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

  .product-grid {
    gap: 64px;
  }

  .section-heading > p,
  .product-lede {
    max-width: 60ch;
  }

  .controls-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .controls-copy h2 {
    max-width: 14ch;
  }

  .integration-map {
    grid-template-columns: minmax(0, 1fr) 90px 150px 70px minmax(0, 1fr);
  }

  .map-core {
    width: 150px;
    height: 150px;
  }

  .fit-grid {
    gap: 58px;
  }

  .fit-heading h2 {
    max-width: 18ch;
  }
}

@media (max-width: 800px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }

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

  .workspace-rail {
    display: none;
  }

  .step-content {
    grid-template-columns: minmax(120px, 0.4fr) minmax(0, 1fr);
  }

  .integration-map {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 42px;
  }

  .map-source-stack,
  .map-destination {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    justify-items: center;
  }

  .map-core {
    grid-column: 1;
    grid-row: auto;
  }

  .map-source-stack .map-label,
  .map-destination .map-label {
    position: static;
    justify-self: center;
    margin-bottom: 14px;
  }

  .instrument-node,
  .destination-node {
    width: min(100%, 420px);
  }

  .map-fan-in,
  .map-line {
    display: none;
  }

  .integration-map::before {
    content: "";
    position: absolute;
    top: 66px;
    bottom: 40px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    border-radius: 2px;
    background: linear-gradient(
      180deg,
      transparent,
      rgb(45 58 206 / 22%) 13%,
      rgb(45 58 206 / 22%) 87%,
      transparent
    );
  }

  .integration-notes {
    grid-template-columns: minmax(0, 1fr);
  }

  .integration-notes > div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 18px 0;
  }

  .integration-notes > div:last-child {
    border-bottom: 1px solid var(--line);
  }

  .closing-panel {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
    gap: 32px;
  }

  .privacy-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  .privacy-summary {
    position: static;
    display: grid;
    grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
    gap: 32px;
  }

  .privacy-summary dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .privacy-summary dl > div {
    padding: 16px 20px 16px 0;
  }

  .privacy-summary dl > div:nth-child(even) {
    padding-right: 0;
    padding-left: 20px;
  }
}

@media (max-width: 640px) {
  body.landing-page::before {
    top: -50px;
    left: -38%;
    width: 156%;
    height: 720px;
    background-size: 21px 21px;
    opacity: 0.5;
  }

  body.landing-page::after {
    top: 360px;
    right: -115%;
    width: 1080px;
    height: 1080px;
  }

  .shell {
    padding-inline: 20px;
  }

  .brand,
  .brand img {
    width: 92px;
  }

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

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(3.25rem, 15vw, 4.5rem);
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.7;
  }

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

  .hero-note {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .workspace-caption {
    font-size: 0.875rem;
    text-align: left;
  }

  .workspace {
    border-radius: min(4vw, 18px);
  }

  .workspace-body {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .workspace-sidebar {
    display: none;
  }
  .workspace-content {
    padding: 19px 14px 22px;
  }
  .record-facts {
    grid-template-columns: minmax(0, 1fr);
  }
  .record-facts div {
    border-top: 1px solid var(--line);
  }
  .record-facts div:first-child {
    border-top: 0;
  }
  .sample-time {
    display: none;
  }

  .test-table th:last-child,
  .test-table td:last-child {
    display: none;
  }

  .test-table th:first-child,
  .test-table td:first-child {
    width: 58%;
  }

  .test-table th:nth-child(2),
  .test-table td:nth-child(2) {
    width: 42%;
  }

  .section {
    padding-block: 86px;
  }

  .section-heading h2,
  .product-copy h2,
  .controls-copy h2,
  .fit-heading h2,
  .closing-panel h2 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .section-heading > p,
  .product-lede,
  .controls-copy > p,
  .closing-action > p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .workflow-lane {
    margin-top: 52px;
  }

  .workflow-lane li {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding-block: 22px;
  }

  .workflow-lane li::before {
    left: 21px;
  }

  .step-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .step-content p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .step-state {
    display: none;
  }

  .product-grid {
    gap: 52px;
  }

  .feature-list dt {
    font-size: 1rem;
  }
  .feature-list dd {
    font-size: 1rem;
    line-height: 1.7;
  }

  .result-console {
    border-radius: min(4vw, 18px);
  }

  .result-console-head,
  .result-summary,
  .result-history,
  .result-console-foot {
    padding-inline: 14px;
  }

  .result-summary {
    grid-template-columns: minmax(0, 1fr);
    padding-block: 8px;
  }

  .result-summary > div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 12px 0;
  }

  .result-summary > div:first-child {
    border-top: 0;
  }

  .result-summary span,
  .history-copy > span,
  .result-console-head > div > span {
    font-size: 0.8125rem;
  }

  .result-summary strong,
  .result-console-head strong,
  .history-copy strong {
    font-size: 1rem;
    line-height: 1.35;
  }

  .history-copy small {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .result-history li {
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
  }

  .history-value {
    grid-column: 2;
    font-size: 0.8125rem;
  }

  .result-console-foot {
    align-items: flex-start;
    flex-direction: column;
    font-size: 0.75rem;
  }

  .controls-section {
    padding-top: 0;
  }

  .controls-panel,
  .closing-panel {
    border-radius: 18px;
    padding: 42px 24px;
  }

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

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

  .control-grid dt {
    font-size: 1rem;
  }
  .control-grid dd {
    font-size: 1rem;
    line-height: 1.7;
  }

  .map-label,
  .instrument-node span,
  .destination-node span {
    font-size: 0.8125rem;
  }

  .instrument-node strong,
  .destination-node strong {
    font-size: 1rem;
  }

  .integration-notes span {
    font-size: 0.8125rem;
  }
  .integration-notes strong {
    font-size: 1rem;
  }

  .fit-grid {
    gap: 44px;
  }

  .fit-list > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .fit-list dt,
  .fit-list dd {
    font-size: 1rem;
  }
  .fit-list dd {
    line-height: 1.7;
  }

  .closing-section {
    padding-bottom: 86px;
  }

  .button-light {
    width: 100%;
    min-height: 52px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p,
  .footer-links a {
    font-size: 0.9375rem;
  }
  .footer-links span {
    font-size: 0.8125rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    font-size: 0.8125rem;
  }

  .footer-meta-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .privacy-hero {
    padding-block: 68px 64px;
  }

  .privacy-hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.4rem);
  }

  .privacy-intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .privacy-body {
    padding-block: 68px 86px;
  }

  .privacy-layout {
    gap: 48px;
  }

  .privacy-summary {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .privacy-summary dl {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 14px;
  }

  .privacy-summary dl > div,
  .privacy-summary dl > div:nth-child(even) {
    padding: 16px 0;
  }

  .privacy-summary h2,
  .privacy-summary dt,
  .privacy-summary dd {
    font-size: 1rem;
  }

  .privacy-content > section {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding-block: 28px 34px;
  }

  .privacy-section-number {
    padding-top: 0;
    font-size: 0.8125rem;
  }

  .privacy-content h2 {
    font-size: 1.5rem;
  }

  .privacy-content h3,
  .privacy-content p,
  .privacy-content li {
    font-size: 1rem;
  }
}

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

  .connector-flow {
    display: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .closing-section,
  .site-footer,
  .privacy-summary {
    display: none;
  }

  .section,
  .hero,
  .privacy-hero,
  .privacy-body {
    padding-block: 32px;
  }

  .privacy-layout {
    display: block;
  }

  .workspace,
  .result-console {
    box-shadow: 0 0 0 1px var(--line-strong);
  }
}
