:root {
  --paper: #f7f7f5;
  --surface: #ffffff;
  --stage: #eff1ef;
  --ink: #101214;
  --muted: #686d70;
  --quiet: #8d9295;
  --line: #d8dbd9;
  --line-strong: #bcc1be;
  --blue: #0e6eb8;
  --blue-dark: #07558f;
  --blue-soft: #eaf4fa;
  --success: #2f7d4b;
  --error: #b83b35;
  --page: 1400px;
  --header-height: 76px;
  --side: 32px;
  --font-sans: "Segoe UI Variable", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

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

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

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

ul,
ol {
  padding: 0;
}

li {
  list-style: none;
}

[hidden] {
  display: none !important;
}

::selection {
  color: #fff;
  background: var(--blue);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.page-container,
.section-heading,
.closing-cta,
.catalog-shell {
  width: min(100%, var(--page));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 245, 0.96);
  backdrop-filter: blur(14px);
}

[data-site-header] {
  min-height: var(--header-height);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) auto;
  align-items: center;
  width: min(100%, var(--page));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--side);
}

.site-brand {
  display: inline-flex;
  width: 190px;
  align-items: center;
}

.site-brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  height: 100%;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #35393b;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--quiet);
  font-size: 13px;
  white-space: nowrap;
}

.language-switch b {
  color: var(--line-strong);
  font-weight: 400;
}

.language-switch .current {
  color: var(--ink);
  font-weight: 700;
}

.language-switch a:hover {
  color: var(--blue);
}

.header-project {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  padding: 8px 15px;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.header-project:hover {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.menu-button {
  display: none;
  min-width: 54px;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: var(--header-height) 0 0;
  background: var(--paper);
  opacity: 0;
  transition: opacity 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
}

.mobile-menu__inner {
  display: flex;
  width: min(100%, var(--page));
  height: 100%;
  margin-inline: auto;
  padding: 28px var(--side) 40px;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.mobile-menu nav a {
  display: flex;
  min-height: 66px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 650;
}

.mobile-menu nav a[aria-current="page"] {
  color: var(--blue);
}

.mobile-menu__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 14px;
}

.button,
.text-button,
.catalog-more {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  cursor: pointer;
  font-weight: 700;
}

.button {
  border: 1px solid var(--blue);
  padding: 10px 18px;
  color: #fff;
  background: var(--blue);
  transition: border-color 160ms ease, background 160ms ease;
}

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

.button:disabled {
  border-color: var(--line-strong);
  color: var(--quiet);
  background: var(--stage);
  cursor: not-allowed;
}

.button--secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

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

.text-button,
.text-link {
  min-height: 36px;
  border: 0;
  padding: 0;
  color: var(--blue-dark);
  background: transparent;
  font-size: 14px;
}

.text-button:hover,
.text-link:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.hero-kicker,
.catalog-results__header p,
.catalog-feature__copy > p,
.product-dialog__copy > p,
.compare-dialog__content header p {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  display: grid;
  width: min(100%, var(--page));
  height: clamp(660px, calc(100svh - 180px), 760px);
  min-height: 660px;
  margin-inline: auto;
  grid-template-columns: minmax(420px, 0.44fr) minmax(0, 0.56fr);
  grid-template-rows: 44px minmax(0, 1fr) 58px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.home-hero__topline {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-inline: var(--side);
  color: var(--quiet);
  font-size: 10px;
  font-weight: 700;
}

.home-hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-width: 0;
  grid-column: 1;
  grid-row: 2;
  padding: clamp(42px, 4.6vw, 70px) var(--side) 36px;
  flex-direction: column;
  justify-content: center;
}

.home-hero h1 {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(64px, 5.4vw, 78px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: 0;
}

.home-hero h1 span {
  color: var(--blue);
}

.home-hero__lead {
  max-width: 500px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.home-hero__proof {
  display: grid;
  width: min(100%, 430px);
  margin-top: 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.home-hero__proof div {
  display: grid;
  min-height: 70px;
  align-content: center;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 10px 18px 10px 0;
}

.home-hero__proof div + div {
  border-left: 1px solid var(--line-strong);
  padding-left: 18px;
}

.home-hero__proof dt {
  color: var(--ink);
  font-size: 27px;
  font-weight: 760;
  line-height: 1;
}

.home-hero__proof dd {
  align-self: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.home-hero__scroll {
  display: flex;
  grid-column: 1;
  grid-row: 3;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-inline: var(--side);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.home-hero__scroll b {
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.home-hero__scroll:hover b {
  transform: translateY(4px);
}

.machine-stage {
  --hero-x: 0px;
  --hero-y: 0px;
  position: relative;
  display: grid;
  min-width: 0;
  grid-column: 2;
  grid-row: 2 / 4;
  grid-template-rows: minmax(0, 1fr) 72px 68px;
  border-left: 1px solid var(--line);
  background: #e9edec;
  overflow: hidden;
}

.machine-stage__number {
  position: absolute;
  z-index: 0;
  top: -26px;
  right: 20px;
  color: #d6dcda;
  font-size: clamp(170px, 15vw, 230px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.machine-stage__viewport {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.machine-stage__product {
  position: absolute;
  z-index: 1;
  inset: 12px 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--hero-x) + 34px), var(--hero-y), 0) scale(0.965);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.2, 0.74, 0.22, 1);
}

.machine-stage__product.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1);
}

.machine-stage__image {
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(16, 18, 20, 0.12));
}

.machine-stage__image--matrix {
  width: min(78%, 630px);
  max-height: 390px;
}

.machine-stage__image--node {
  width: min(90%, 720px);
  max-height: 230px;
}

.machine-stage__image--control {
  width: min(84%, 680px);
  max-height: 310px;
}

.machine-stage__meta {
  position: relative;
  z-index: 4;
  display: grid;
  align-items: center;
  grid-template-columns: 82px minmax(0, 1fr);
  border-top: 1px solid var(--line-strong);
  padding: 12px 24px;
  background: rgba(233, 237, 236, 0.96);
}

.machine-stage__meta > span {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
}

.machine-stage__meta div {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.machine-stage__meta strong {
  font-size: 19px;
  line-height: 1.2;
}

.machine-stage__meta div span {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.machine-stage__tabs {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  background: var(--paper);
}

.machine-stage__tabs button {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 10px 15px;
  gap: 9px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.machine-stage__tabs button:last-child {
  border-right: 0;
}

.machine-stage__tabs button::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.machine-stage__tabs button:hover,
.machine-stage__tabs button.is-active {
  color: var(--ink);
  background: var(--surface);
}

.machine-stage__tabs button.is-active::before {
  transform: scaleX(1);
}

.machine-stage__tabs button span {
  color: var(--blue-dark);
  font-size: 10px;
}

.page-hero {
  display: grid;
  min-height: 470px;
  grid-template-columns: minmax(380px, 0.42fr) minmax(0, 0.58fr);
  width: min(100%, var(--page));
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.page-hero__copy {
  display: flex;
  padding: 68px var(--side);
  flex-direction: column;
  justify-content: center;
}

.page-hero h1 {
  max-width: 620px;
  margin-top: 16px;
  font-size: 50px;
  font-weight: 740;
  line-height: 1.1;
  letter-spacing: 0;
}

.page-hero h1 span {
  color: var(--blue);
}

.page-hero__lead {
  max-width: 540px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero__visual {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--line);
  padding: 70px 40px 74px;
  background: var(--stage);
  overflow: hidden;
}

.page-hero__visual > img:not(.page-hero__brand-mark) {
  width: min(90%, 720px);
  max-height: 430px;
  object-fit: contain;
}

.page-hero__visual-note {
  position: absolute;
  top: 26px;
  font-size: 12px;
  font-weight: 700;
}

.page-hero__visual-note {
  position: absolute;
  right: 30px;
  bottom: 20px;
  left: 30px;
  top: auto;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-strong);
  padding-top: 15px;
  color: var(--muted);
}

.page-hero__brand-mark {
  width: min(60%, 430px);
  height: auto;
  object-fit: contain;
}

.anchor-nav {
  border-bottom: 1px solid var(--line);
}

.anchor-nav__inner {
  display: grid;
  width: min(100%, var(--page));
  margin-inline: auto;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: var(--side);
}

.anchor-nav a {
  display: flex;
  min-height: 64px;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 14px 20px;
  font-size: 14px;
}

.anchor-nav a:first-child {
  border-left: 1px solid var(--line);
}

.anchor-nav a:hover {
  color: var(--blue-dark);
  background: var(--surface);
}

.signal-strip {
  border-bottom: 1px solid #2e3234;
  color: #f5f6f4;
  background: var(--ink);
}

.signal-strip__inner {
  display: grid;
  width: min(100%, var(--page));
  margin-inline: auto;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: var(--side);
}

.signal-strip a {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid #34383a;
  padding: 14px 20px;
  color: #d9ddde;
  font-size: 13px;
  transition: color 160ms ease, background 160ms ease;
}

.signal-strip a:first-child {
  border-left: 1px solid #34383a;
}

.signal-strip a span {
  color: #55a8dc;
}

.signal-strip a:hover {
  color: #fff;
  background: #1b1e20;
}

.section {
  padding: 96px var(--side);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  align-items: end;
  gap: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.closing-cta h2 {
  max-width: 820px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

.section-heading p,
.closing-cta p {
  color: var(--muted);
  line-height: 1.8;
}

.brief-points,
.principles,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.brief-point,
.principle,
.process-grid article {
  min-height: 190px;
  border-right: 1px solid var(--line);
  padding: 30px 32px;
}

.brief-point:first-child,
.principle:first-child,
.process-grid article:first-child {
  border-left: 1px solid var(--line);
}

.brief-point h3,
.principle h3,
.process-grid h3 {
  margin-bottom: 16px;
  font-size: 19px;
}

.brief-point p,
.principle p,
.process-grid p {
  color: var(--muted);
}

.product-focus {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-focus__visual {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 60px 34px 90px;
  background: var(--stage);
}

.product-focus__visual img {
  width: min(100%, 560px);
  max-height: 300px;
  object-fit: contain;
}

.product-focus__caption,
.product-stage__meta {
  position: absolute;
  right: 30px;
  bottom: 22px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-strong);
  padding-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.product-focus > div {
  padding: 48px 40px;
}

.product-focus .section-heading {
  display: block;
  padding: 0 0 32px;
}

.product-focus .section-heading p {
  margin-top: 16px;
}

.product-index {
  border-top: 1px solid var(--line);
}

.product-index__row {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.product-index__row h3 {
  font-size: 17px;
}

.product-index__row p {
  color: var(--muted);
  font-size: 14px;
}

.product-index__row:hover h3 {
  color: var(--blue-dark);
}

.flow-section,
.process-band {
  margin-top: 96px;
  color: #fff;
  background: #121517;
}

.flow-section__inner,
.process-band__inner {
  width: min(100%, var(--page));
  margin-inline: auto;
  padding: 74px var(--side);
}

.flow-section h2,
.process-band h2 {
  max-width: 760px;
  font-size: 34px;
  line-height: 1.35;
}

.signal-flow {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #3a3f42;
  border-bottom: 1px solid #3a3f42;
}

.signal-flow li {
  min-height: 134px;
  border-right: 1px solid #3a3f42;
  padding: 24px 20px;
}

.signal-flow li:first-child {
  border-left: 1px solid #3a3f42;
}

.signal-flow strong,
.signal-flow span {
  display: block;
}

.signal-flow span {
  margin-top: 12px;
  color: #afb5b8;
  font-size: 14px;
}

.handoff-section {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: #ecefed;
}

.handoff-section__inner {
  display: grid;
  width: min(100%, var(--page));
  margin-inline: auto;
  padding: 96px var(--side);
  grid-template-columns: minmax(280px, 0.35fr) minmax(0, 0.65fr);
  gap: 72px;
}

.handoff-section__intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.handoff-section__intro h2 {
  max-width: 440px;
  font-size: 36px;
  line-height: 1.3;
}

.handoff-section__intro > p {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.handoff-section__note {
  display: grid;
  margin-top: auto;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 18px 0;
  gap: 3px;
}

.handoff-section__note strong {
  font-size: 14px;
}

.handoff-section__note span {
  color: var(--muted);
  font-size: 12px;
}

.handoff-ledger {
  min-width: 0;
  border-right: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.44);
}

.handoff-ledger article {
  display: grid;
  min-height: 116px;
  align-items: center;
  border-top: 1px solid var(--line-strong);
  padding: 20px 24px;
  grid-template-columns: 92px minmax(190px, 0.4fr) minmax(0, 0.6fr);
  gap: 22px;
  transition: background 180ms ease;
}

.handoff-ledger article:last-of-type {
  border-bottom: 1px solid var(--line-strong);
}

.handoff-ledger article:hover {
  background: rgba(255, 255, 255, 0.78);
}

.handoff-ledger__code {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
}

.handoff-ledger h3 {
  font-size: 19px;
}

.handoff-ledger p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.handoff-ledger footer {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

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

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  margin-top: 96px;
  margin-bottom: 96px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 38px var(--side);
}

.closing-cta p {
  margin-top: 10px;
}

/* Product center */
.catalog-shell {
  padding: 30px var(--side) 100px;
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(340px, 0.42fr) minmax(420px, 0.58fr);
  align-items: end;
  gap: 54px;
  padding-bottom: 24px;
}

.catalog-intro__copy {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px 24px;
}

.catalog-intro h1 {
  grid-row: 1 / span 2;
  font-size: 30px;
  font-weight: 720;
  line-height: 1.2;
  white-space: nowrap;
}

.catalog-intro p {
  color: var(--muted);
  font-size: 14px;
}

.catalog-intro strong {
  font-size: 13px;
}

.catalog-search {
  display: grid;
  gap: 7px;
}

.catalog-search > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.catalog-search input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0 16px;
  color: var(--ink);
  background: var(--surface);
  outline: 0;
}

.catalog-search input:focus {
  border-color: var(--blue);
  box-shadow: inset 0 -2px 0 var(--blue);
}

.catalog-categories {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  background: var(--surface);
  scrollbar-width: none;
}

.catalog-categories::-webkit-scrollbar,
.compare-tray__items::-webkit-scrollbar,
.timeline-track::-webkit-scrollbar,
.signal-flow::-webkit-scrollbar {
  display: none;
}

.catalog-categories button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line-strong);
  padding: 13px 8px;
  flex-direction: column;
  gap: 3px;
  background: transparent;
  cursor: pointer;
}

.catalog-categories button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
}

.catalog-categories button:hover,
.catalog-categories button[aria-current="true"] {
  color: var(--blue-dark);
  background: #f5f8fa;
}

.catalog-categories button[aria-current="true"]::after {
  transform: scaleX(1);
}

.catalog-categories span {
  max-width: 100%;
  overflow: hidden;
  font-size: 14px;
  font-weight: 650;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-categories strong {
  font-size: 13px;
}

.catalog-workspace {
  display: grid;
  margin-top: 18px;
  grid-template-columns: minmax(350px, 0.4fr) minmax(0, 0.6fr);
  align-items: start;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.catalog-feature {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  min-width: 0;
  min-height: 690px;
  align-content: start;
  border-right: 1px solid var(--line-strong);
  padding: 30px;
  background: var(--stage);
}

.catalog-feature__copy h2 {
  margin-top: 8px;
  font-size: 36px;
  line-height: 1.25;
}

.catalog-feature__copy > span {
  display: block;
  max-width: 470px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.catalog-feature__tags,
.product-dialog__tags {
  display: flex;
  margin-top: 22px;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.catalog-feature__tags span,
.product-dialog__tags span {
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 3px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 650;
}

.catalog-feature__visual {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 22px 12px;
  background: #f5f6f4;
}

.catalog-feature__visual img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.catalog-feature__product {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid var(--line-strong);
  padding-top: 18px;
  gap: 20px;
}

.catalog-feature__product div {
  min-width: 0;
}

.catalog-feature__product strong,
.catalog-feature__product span {
  display: block;
}

.catalog-feature__product strong {
  font-size: 21px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.catalog-feature__product span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-results {
  min-width: 0;
}

.catalog-results__header {
  display: grid;
  min-height: 116px;
  grid-template-columns: minmax(170px, auto) minmax(0, 1fr);
  align-items: end;
  gap: 24px;
  border-bottom: 1px solid var(--line-strong);
  padding: 22px 24px;
}

.catalog-results__header h2 {
  margin-top: 4px;
  font-size: 25px;
  line-height: 1.25;
}

.catalog-results__header > div > span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.catalog-families {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.catalog-families button {
  position: relative;
  min-height: 36px;
  border-bottom: 1px solid transparent;
  padding: 5px 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.catalog-families button:hover,
.catalog-families button[aria-current="true"] {
  border-bottom-color: var(--blue);
  color: var(--blue-dark);
}

.catalog-list {
  min-width: 0;
}

.catalog-row {
  display: grid;
  min-height: 142px;
  grid-template-columns: 76px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.catalog-row.is-compared {
  box-shadow: inset 3px 0 0 var(--blue);
}

.catalog-row.is-featured {
  background: #f9fbfc;
}

.compare-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

.compare-toggle input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue);
}

.catalog-row__open {
  display: grid;
  min-width: 0;
  grid-template-columns: 210px minmax(0, 1fr) 84px;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.catalog-row__open:hover {
  background: #f5f7f7;
}

.catalog-row__image {
  display: flex;
  width: 100%;
  height: 108px;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.catalog-row__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-row__copy {
  min-width: 0;
}

.catalog-row__copy > strong,
.catalog-row__copy > small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-row__copy > strong {
  font-size: 18px;
  line-height: 1.35;
}

.catalog-row__copy > small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-row__copy > span {
  display: flex;
  margin-top: 12px;
  flex-wrap: wrap;
  gap: 5px 13px;
}

.catalog-row__copy em {
  color: var(--quiet);
  font-size: 11px;
  font-style: normal;
}

.catalog-row__action {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.catalog-empty {
  padding: 90px 30px;
  text-align: center;
}

.catalog-empty h3 {
  font-size: 22px;
}

.catalog-empty p {
  margin-top: 8px;
  color: var(--muted);
}

.catalog-empty .text-button {
  margin-top: 14px;
}

.catalog-more {
  width: 100%;
  min-height: 54px;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue-dark);
  background: var(--paper);
}

.catalog-more:hover {
  background: var(--stage);
}

.compare-tray {
  position: fixed;
  z-index: 80;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--line-strong);
  background: rgba(247, 247, 245, 0.98);
  box-shadow: 0 -12px 30px rgba(16, 18, 20, 0.08);
  backdrop-filter: blur(14px);
}

.compare-tray__inner {
  display: grid;
  width: min(100%, var(--page));
  min-height: 88px;
  margin-inline: auto;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 12px var(--side);
}

.compare-tray__inner > strong {
  font-size: 14px;
}

.compare-tray__items {
  display: flex;
  min-width: 0;
  gap: 8px;
  overflow-x: auto;
}

.compare-chip {
  display: grid;
  min-width: 200px;
  height: 58px;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 5px 7px;
  background: var(--surface);
}

.compare-chip img {
  width: 62px;
  height: 44px;
  object-fit: contain;
}

.compare-chip b {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compare-chip button {
  padding: 5px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
}

.compare-chip button:hover {
  color: var(--error);
}

.compare-tray__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.has-compare-tray {
  padding-bottom: 88px;
}

dialog {
  width: min(1120px, calc(100% - 36px));
  max-height: calc(100vh - 36px);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(16, 18, 20, 0.22);
}

dialog::backdrop {
  background: rgba(16, 18, 20, 0.55);
}

.dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid var(--line);
  padding: 0 18px;
  background: rgba(247, 247, 245, 0.96);
}

.dialog-close button {
  min-height: 34px;
  padding: 4px 8px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.product-dialog__layout {
  display: grid;
  grid-template-columns: 0.52fr 0.48fr;
}

.product-dialog__layout > figure {
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 42px;
  background: var(--stage);
}

.product-dialog__layout > figure img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.product-dialog__copy {
  padding: 42px;
}

.product-dialog__copy h2 {
  margin-top: 8px;
  font-size: 34px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.product-dialog__copy h3 {
  margin-top: 9px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.product-dialog__copy dl {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.product-dialog__copy dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  font-size: 13px;
}

.product-dialog__copy dt {
  color: var(--muted);
}

.product-dialog__description {
  margin-top: 28px;
}

.product-dialog__description strong {
  font-size: 13px;
}

.product-dialog__description p {
  max-height: 190px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  overflow-y: auto;
}

.product-dialog__copy .button {
  margin-top: 28px;
}

.compare-dialog__content {
  padding: 34px;
}

.compare-dialog__content header h2 {
  margin-top: 6px;
  font-size: 30px;
}

.compare-table-wrap {
  margin-top: 24px;
  overflow: auto;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

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

.compare-table thead th {
  background: var(--stage);
}

.compare-table thead th:first-child,
.compare-table tbody th {
  width: 150px;
}

.compare-table thead img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.compare-table thead strong {
  display: block;
  margin-top: 10px;
  overflow-wrap: anywhere;
}

.compare-table tbody th {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.compare-table td {
  font-size: 13px;
}

.compare-table a {
  color: var(--blue-dark);
  font-weight: 700;
}

/* Solutions */
.scenario-section,
.about-manifesto,
.contact-section {
  padding: 96px var(--side) 0;
}

.scenario-feature,
.scenario-wide,
.product-pair,
.product-network,
.product-control {
  display: grid;
  margin-top: 50px;
  grid-template-columns: 0.52fr 0.48fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scenario-feature__visual,
.scenario-wide__visual,
.product-pair__visual,
.product-network__visual,
.product-control__visual,
.scenario-panel figure,
.product-stage__visual {
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background: var(--stage);
}

.scenario-feature__visual,
.scenario-wide__visual {
  border-right: 1px solid var(--line);
}

.scenario-feature__visual img,
.scenario-wide__visual img,
.scenario-panel figure img,
.product-pair__visual img,
.product-network__visual img,
.product-control__visual img,
.product-stage__visual img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.scenario-feature__copy,
.scenario-wide__copy,
.scenario-panel__copy,
.product-pair__copy,
.product-network__copy,
.product-control__copy {
  display: flex;
  padding: 46px;
  flex-direction: column;
  justify-content: center;
}

.scenario-feature__copy h2,
.scenario-wide__copy h2,
.scenario-panel__copy h2,
.product-pair__copy h2,
.product-network__copy h2,
.product-control__copy h2,
.product-stage__head h2 {
  font-size: 32px;
  line-height: 1.3;
}

.scenario-feature__copy p,
.scenario-wide__copy p,
.scenario-panel__copy p,
.product-pair__copy > p,
.product-network__copy > p,
.product-control__copy > p,
.product-stage__head p {
  margin-top: 18px;
  color: var(--muted);
}

.tag-list,
.feature-list {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.tag-list span,
.feature-list li {
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  color: var(--blue-dark);
  font-size: 13px;
}

.scenario-pair {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scenario-panel {
  display: grid;
  grid-template-rows: 360px auto;
}

.scenario-panel:first-child {
  border-right: 1px solid var(--line);
}

.scenario-panel figure {
  min-height: 0;
  border-bottom: 1px solid var(--line);
}

.product-pair-wrap,
.product-network-wrap,
.product-control-wrap,
.product-stage {
  width: min(100%, var(--page));
  margin-inline: auto;
  padding-inline: var(--side);
}

.product-stage {
  display: grid;
  margin-top: 80px;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 0;
}

.product-stage__head {
  padding: 34px 34px 34px 0;
}

.product-stage__visual {
  position: relative;
  min-height: 460px;
}

.product-stage__details {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-stage__details article {
  border-right: 1px solid var(--line);
  padding: 28px;
}

.product-stage__details article:first-child {
  border-left: 1px solid var(--line);
}

.product-stage__details h3 {
  font-size: 17px;
}

.product-stage__details p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.product-pair,
.product-network,
.product-control {
  margin-top: 70px;
}

.product-pair__visual,
.product-network__visual,
.product-control__visual {
  border-left: 1px solid var(--line);
}

.product-pair__visual {
  position: relative;
}

.product-pair__visual img {
  position: absolute;
  width: 62%;
  max-height: 260px;
}

.product-pair__visual img:first-child {
  top: 50px;
  left: 46px;
}

.product-pair__visual img:last-child {
  right: 46px;
  bottom: 42px;
}

.network-points {
  display: grid;
  margin-top: 26px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.network-points article {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px 16px 0;
}

.network-points article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.network-points article:nth-child(even) {
  padding-left: 18px;
}

.network-points h3 {
  font-size: 15px;
}

.network-points p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.product-pair__copy .text-link,
.product-network__copy .text-link,
.product-control__copy .text-link {
  margin-top: 24px;
  align-self: flex-start;
}

/* About */
.about-manifesto {
  display: grid;
  grid-template-columns: 0.46fr 0.54fr;
  gap: 70px;
}

.about-manifesto__lead {
  font-size: 36px;
  font-weight: 680;
  line-height: 1.4;
}

.about-manifesto__body {
  border-top: 1px solid var(--line);
}

.about-manifesto__body p {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  color: var(--muted);
}

.timeline-section {
  margin-top: 96px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--stage);
}

.timeline-section__inner {
  width: min(100%, var(--page));
  margin-inline: auto;
  padding: 72px var(--side);
}

.timeline-track {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.timeline-track article {
  min-height: 230px;
  border-right: 1px solid var(--line-strong);
  padding: 26px 20px;
}

.timeline-track article:first-child {
  border-left: 1px solid var(--line-strong);
}

.timeline-track time {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.timeline-track h3 {
  margin-top: 14px;
  font-size: 17px;
}

.timeline-track p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

/* Contact */
.contact-layout {
  --watch-x: 0px;
  --watch-y: 0px;
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.contact-details,
.project-form {
  padding: 44px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-strong);
  background: var(--stage);
}

.contact-details h2,
.project-form h2 {
  font-size: 28px;
  line-height: 1.4;
}

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

.contact-list div {
  border-bottom: 1px solid var(--line-strong);
  padding: 18px 0;
}

.contact-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.contact-list dd {
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.project-form {
  position: relative;
  background: var(--surface);
}

.project-form__head {
  display: grid;
  min-height: 102px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  grid-template-columns: minmax(0, 1fr);
}

.project-form__head h2 {
  max-width: 470px;
}

.form-watchers {
  position: relative;
  display: flex;
  width: min(100%, 214px);
  height: 118px;
  margin-top: 32px;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0;
  pointer-events: none;
}

.form-watchers::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.form-watcher {
  --watch-color: var(--blue);
  --watch-height: 78px;
  position: relative;
  z-index: 1;
  width: 52px;
  height: var(--watch-height);
  flex: 0 0 52px;
  border-radius: 2px 2px 0 0;
  background: var(--watch-color);
  box-shadow: inset 0 0 0 1px rgba(16, 18, 20, 0.16);
  transform: translateX(0) skewX(0deg) scaleY(1);
  transform-origin: 50% 100%;
  transition: transform 440ms cubic-bezier(0.2, 0.76, 0.22, 1);
}

.form-watcher__face {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.form-watcher__neck {
  display: none;
}

.form-watcher__face {
  z-index: 2;
  top: 18px;
  display: flex;
  width: 28px;
  height: 11px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: transform 440ms cubic-bezier(0.2, 0.76, 0.22, 1);
}

.form-watcher__face i {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 20, 0.68);
  border-radius: 50%;
  background: #fff;
}

.form-watcher__face i::after {
  position: absolute;
  top: 3.5px;
  left: 3.5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #101214;
  content: "";
  transform: translate(var(--watch-x), var(--watch-y));
  transition: transform 160ms ease;
}

.form-watcher--coral {
  --watch-color: #e6654f;
  --watch-height: 104px;
  transition-delay: 45ms;
}

.form-watcher--yellow {
  --watch-color: #efc84a;
  --watch-height: 66px;
  transition-delay: 90ms;
}

.form-watcher--coral .form-watcher__face {
  transition-delay: 45ms;
}

.form-watcher--yellow .form-watcher__face {
  transition-delay: 90ms;
}

.contact-layout.is-watching .form-watcher {
  transform: translateX(7px) skewX(-12deg) scaleY(1.06);
}

.contact-layout.is-watching .form-watcher__face {
  transform: translateX(-50%) skewX(12deg) scaleY(0.94);
}

.contact-layout.is-typing .form-watcher {
  transform: translateX(10px) skewX(-15deg) scaleY(1.1);
}

.contact-layout.is-typing .form-watcher__face {
  transform: translateX(-50%) skewX(15deg) scaleY(0.91);
}

.field-grid {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 11px 13px;
  background: var(--paper);
  outline: 0;
}

.field input,
.field select {
  min-height: 46px;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: inset 0 -2px 0 var(--blue);
}

.project-form > .button {
  margin-top: 24px;
}

.form-status {
  min-height: 26px;
  margin-top: 14px;
  font-size: 14px;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.form-note {
  color: var(--quiet);
  font-size: 12px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line-strong);
  background: #f0f1ef;
}

.site-footer__main {
  display: grid;
  width: min(100%, var(--page));
  margin-inline: auto;
  grid-template-columns: minmax(280px, 1.6fr) 1fr 1.2fr;
  gap: 60px;
  padding: 52px var(--side);
}

.footer-brand a {
  display: block;
  width: 180px;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.footer-column strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--blue-dark);
}

.site-footer__bottom {
  display: flex;
  width: min(100%, var(--page));
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  border-top: 1px solid var(--line-strong);
  padding: 12px var(--side);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1200px) {
  :root {
    --side: 24px;
  }

  .site-header__inner {
    grid-template-columns: 180px minmax(0, 1fr) auto;
  }

  .site-brand {
    width: 170px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .header-project {
    display: none;
  }

  .catalog-row__open {
    grid-template-columns: 170px minmax(0, 1fr) 72px;
    gap: 16px;
  }

  .catalog-workspace {
    grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.62fr);
  }

  .catalog-feature {
    padding: 24px;
  }

  body[data-locale="en"] .home-hero h1 {
    font-size: 58px;
  }

  body[data-locale="en"] .page-hero h1 {
    font-size: 42px;
  }

  .catalog-feature__visual {
    min-height: 290px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .site-header__inner {
    grid-template-columns: 170px 1fr;
  }

  .site-nav,
  .site-header__actions .language-switch,
  .site-header__actions .header-project {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .page-hero__copy {
    min-height: 460px;
    padding: 58px var(--side);
  }

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

  .page-hero__visual {
    min-height: 440px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-hero {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 40px auto 410px 54px;
  }

  .home-hero__copy {
    min-height: 450px;
    grid-column: 1;
    grid-row: 2;
    padding: 54px var(--side) 44px;
  }

  .home-hero h1,
  body[data-locale="en"] .home-hero h1 {
    font-size: 56px;
  }

  .machine-stage {
    grid-column: 1;
    grid-row: 3;
    grid-template-rows: minmax(0, 1fr) 68px 64px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-hero__scroll {
    grid-column: 1;
    grid-row: 4;
  }

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

  .product-focus,
  .scenario-feature,
  .scenario-wide,
  .product-pair,
  .product-network,
  .product-control,
  .about-manifesto,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product-focus__visual,
  .scenario-feature__visual,
  .scenario-wide__visual,
  .contact-details {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-pair__visual,
  .product-network__visual,
  .product-control__visual {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-network__visual,
  .product-control__visual {
    order: 2;
  }

  .signal-flow,
  .timeline-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .signal-flow li:nth-child(4),
  .timeline-track article:nth-child(4) {
    border-left: 1px solid #3a3f42;
  }

  .timeline-track article:nth-child(4) {
    border-left-color: var(--line-strong);
  }

  .catalog-intro {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 22px;
  }

  .catalog-categories {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .catalog-categories button {
    min-width: 156px;
    scroll-snap-align: start;
  }

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

  .catalog-feature {
    position: static;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .catalog-feature__visual {
    min-height: 360px;
  }

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

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

  .product-dialog__layout > figure {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer__main {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
  }

  .handoff-section__inner {
    padding-block: 76px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .handoff-section__intro > p,
  .handoff-section__note {
    max-width: 560px;
  }

  .handoff-section__note {
    margin-top: 28px;
  }
}

@media (max-width: 700px) {
  :root {
    --side: 18px;
  }

  body {
    font-size: 15px;
  }

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

  .site-brand {
    width: 150px;
  }

  .page-hero__copy {
    min-height: 390px;
    padding-block: 46px;
  }

  .page-hero h1 {
    font-size: 39px;
    line-height: 1.15;
  }

  body[data-locale="en"] .page-hero h1 {
    font-size: 34px;
  }

  .page-hero__lead {
    margin-top: 20px;
    font-size: 15px;
  }

  .page-hero__visual {
    min-height: 340px;
    padding: 56px 22px 66px;
  }

  .page-hero__visual > img:not(.page-hero__brand-mark) {
    width: auto;
    max-width: 90%;
    max-height: 220px;
  }

  .page-hero__visual-note {
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .home-hero {
    grid-template-rows: 38px auto 310px;
  }

  .home-hero__topline {
    padding-inline: var(--side);
  }

  .home-hero__topline span:last-child {
    display: none;
  }

  .home-hero__copy {
    min-height: 380px;
    padding: 42px var(--side) 34px;
  }

  .home-hero h1,
  body[data-locale="en"] .home-hero h1 {
    font-size: 46px;
    line-height: 1.06;
  }

  .home-hero__lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
  }

  .home-hero .hero-actions {
    margin-top: 26px;
  }

  .home-hero__proof {
    margin-top: 28px;
  }

  .home-hero__proof div {
    min-height: 60px;
    gap: 8px;
  }

  .home-hero__proof dt {
    font-size: 23px;
  }

  .machine-stage {
    grid-template-rows: minmax(0, 1fr) 62px 58px;
  }

  .home-hero__scroll {
    display: none;
  }

  .machine-stage__number {
    top: -12px;
    right: 14px;
    font-size: 120px;
  }

  .machine-stage__image--matrix {
    width: min(75%, 430px);
    max-height: 205px;
  }

  .machine-stage__image--node {
    width: min(90%, 520px);
    max-height: 150px;
  }

  .machine-stage__image--control {
    width: min(84%, 480px);
    max-height: 180px;
  }

  .machine-stage__meta {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 10px 18px;
  }

  .machine-stage__meta strong {
    font-size: 16px;
  }

  .machine-stage__meta div span {
    font-size: 11px;
  }

  .machine-stage__tabs button {
    justify-content: center;
    padding: 9px 6px;
    gap: 6px;
    font-size: 11px;
  }

  .signal-strip__inner,
  .anchor-nav__inner {
    display: flex;
    padding-inline: 0;
    overflow-x: auto;
  }

  .signal-strip a,
  .anchor-nav a {
    min-width: 155px;
  }

  .signal-strip__inner,
  .anchor-nav__inner {
    scrollbar-width: none;
  }

  .signal-strip__inner::-webkit-scrollbar,
  .anchor-nav__inner::-webkit-scrollbar {
    display: none;
  }

  .section,
  .scenario-section,
  .about-manifesto,
  .contact-section {
    padding-top: 68px;
  }

  .handoff-section__inner {
    padding-block: 68px;
    gap: 34px;
  }

  .handoff-section__intro h2 {
    font-size: 28px;
  }

  .handoff-ledger article {
    min-height: 0;
    padding: 20px 18px;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 6px 16px;
  }

  .handoff-ledger article p {
    grid-column: 2;
  }

  .handoff-ledger footer {
    align-items: flex-start;
    padding-inline: 18px;
    flex-direction: column;
    gap: 4px;
  }

  .section-heading h2,
  .closing-cta h2,
  .about-manifesto__lead {
    font-size: 28px;
  }

  .brief-points,
  .principles,
  .process-grid,
  .scenario-pair,
  .product-stage__details {
    grid-template-columns: 1fr;
  }

  .brief-point,
  .principle,
  .process-grid article,
  .product-stage__details article {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    padding: 24px;
  }

  .scenario-panel:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-focus > div,
  .scenario-feature__copy,
  .scenario-wide__copy,
  .scenario-panel__copy,
  .product-pair__copy,
  .product-network__copy,
  .product-control__copy,
  .contact-details,
  .project-form {
    padding: 30px 24px;
  }

  .project-form__head {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-watchers {
    margin-left: 0;
  }

  .product-index__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flow-section,
  .process-band,
  .timeline-section {
    margin-top: 68px;
  }

  .signal-flow,
  .timeline-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .signal-flow li,
  .timeline-track article {
    min-width: 240px;
    border-left: 0 !important;
    scroll-snap-align: start;
  }

  .signal-flow li:first-child,
  .timeline-track article:first-child {
    border-left: 1px solid;
  }

  .closing-cta {
    grid-template-columns: 1fr;
    align-items: start;
    margin-block: 68px;
  }

  .closing-cta .button {
    justify-self: start;
  }

  .catalog-shell {
    padding-top: 22px;
    padding-bottom: 70px;
  }

  .catalog-intro__copy {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalog-intro h1 {
    grid-row: auto;
    font-size: 28px;
  }

  .catalog-search input {
    height: 48px;
  }

  .catalog-categories button {
    min-width: 138px;
    min-height: 76px;
  }

  .catalog-feature {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding: 24px 18px;
    gap: 14px;
  }

  .catalog-feature__copy,
  .catalog-feature__tags {
    grid-column: 1 / -1;
  }

  .catalog-feature__copy h2 {
    font-size: 30px;
  }

  .catalog-feature__copy > span {
    display: none;
  }

  .catalog-feature__tags {
    margin-top: 0;
  }

  .catalog-feature__visual {
    grid-column: 1;
    min-height: 150px;
    margin-top: 0;
    padding: 8px;
  }

  .catalog-feature__visual img {
    max-height: 142px;
  }

  .catalog-feature__product {
    grid-column: 2;
    align-items: start;
    justify-content: center;
    border-top: 0;
    border-left: 1px solid var(--line-strong);
    padding-top: 0;
    padding-left: 16px;
    flex-direction: column;
    gap: 10px;
  }

  .catalog-results__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalog-families {
    justify-content: flex-start;
  }

  .catalog-row {
    min-height: 156px;
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .catalog-row__open {
    grid-template-columns: 106px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 12px;
  }

  .catalog-row__image {
    height: 94px;
  }

  .catalog-row__copy > strong {
    font-size: 15px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .catalog-row__copy > small {
    display: -webkit-box;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .catalog-row__action {
    display: none;
  }

  .compare-toggle span {
    font-size: 11px;
  }

  .compare-tray__inner {
    min-height: 116px;
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
  }

  .compare-tray__items {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .compare-tray__inner > strong {
    grid-column: 1;
    grid-row: 2;
  }

  .compare-tray__actions {
    grid-column: 2;
    grid-row: 2;
  }

  .compare-chip {
    min-width: 170px;
  }

  .compare-tray__actions .text-button {
    min-height: 40px;
    font-size: 12px;
  }

  .compare-tray__actions .button {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .has-compare-tray {
    padding-bottom: 116px;
  }

  dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
  }

  .product-dialog__layout > figure {
    min-height: 300px;
    padding: 24px;
  }

  .product-dialog__copy,
  .compare-dialog__content {
    padding: 26px 20px;
  }

  .product-dialog__copy h2 {
    font-size: 27px;
  }

  .product-stage {
    grid-template-columns: 1fr;
    padding-inline: var(--side);
  }

  .product-stage__head {
    padding: 0 0 28px;
  }

  .product-pair-wrap,
  .product-network-wrap,
  .product-control-wrap {
    padding-inline: var(--side);
  }

  .product-pair__visual img:first-child {
    top: 36px;
    left: 24px;
  }

  .product-pair__visual img:last-child {
    right: 24px;
    bottom: 36px;
  }

  .network-points,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .network-points article,
  .network-points article:nth-child(even) {
    border-right: 0;
    padding-inline: 0;
  }

  .field--full {
    grid-column: auto;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 390px) {
  .site-brand {
    width: 136px;
  }

  .menu-button {
    min-width: 50px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  body[data-locale="en"] .home-hero h1,
  body[data-locale="en"] .page-hero h1 {
    font-size: 30px;
  }

  .home-hero h1,
  body[data-locale="en"] .home-hero h1 {
    font-size: 41px;
  }

  .home-hero__copy {
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 26px;
  }

  .home-hero__proof dd {
    font-size: 11px;
  }

  .home-hero .hero-actions {
    flex-direction: row;
  }

  .home-hero .hero-actions .button {
    width: auto;
    min-width: 0;
    flex: 1;
    padding-inline: 10px;
    font-size: 13px;
  }

  .home-hero__proof {
    margin-top: 22px;
  }

  .home-hero__proof div {
    min-height: 52px;
  }

  .home-hero {
    grid-template-rows: 38px auto 270px;
  }

  .machine-stage__meta {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .machine-stage__meta div span {
    display: none;
  }

  .machine-stage__meta strong {
    white-space: nowrap;
  }

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

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

  .catalog-row__open {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .catalog-row__copy > span {
    display: none;
  }

  .compare-chip {
    min-width: 154px;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .compare-chip img {
    width: 52px;
  }

  .compare-chip button {
    display: none;
  }
}

/* Homepage architectural opening */
body[data-page="home"] [data-site-header] {
  position: absolute;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  min-height: 0;
}

body[data-page="home"] .site-header {
  position: relative;
  border-bottom-color: rgba(22, 34, 38, 0.12);
  color: #182326;
  background: rgba(246, 248, 247, 0.78);
  backdrop-filter: blur(10px);
}

body[data-page="home"] .site-brand {
  width: 178px;
}

body[data-page="home"] .site-nav a,
body[data-page="home"] .language-switch .current,
body[data-page="home"] .language-switch a {
  color: rgba(24, 35, 38, 0.88);
}

body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a[aria-current="page"],
body[data-page="home"] .language-switch a:hover {
  color: #111b1e;
}

body[data-page="home"] .header-project,
body[data-page="home"] .menu-button {
  border-color: rgba(24, 35, 38, 0.42);
  color: #182326;
}

body[data-page="home"] .header-project:hover,
body[data-page="home"] .menu-button:hover {
  border-color: var(--blue);
  color: #ffffff;
  background: var(--blue);
}

.home-hero {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  height: clamp(660px, calc(100svh - 112px), 790px);
  min-height: 660px;
  margin: 0;
  border: 0;
  color: #182326;
  background: #d9e1e3;
  overflow: hidden;
}

.home-hero__scene,
.home-hero__scene > img,
.home-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__scene {
  z-index: 0;
  background: #d9e1e3;
  overflow: hidden;
}

.home-hero__scene > img {
  object-fit: cover;
  object-position: 51% center;
  opacity: 1;
  transition: opacity 500ms ease;
}

.home-hero__canvas {
  display: block;
  opacity: 0;
  transition: opacity 500ms ease;
}

.home-hero__scene.is-3d-ready > img {
  opacity: 0;
}

.home-hero__scene.is-3d-ready .home-hero__canvas {
  opacity: 1;
}

.home-hero__scene.is-static > img {
  opacity: 1 !important;
}

/* Keep the homepage on one finished frame; the 3D scene still preloads in the background. */
body[data-page="home"] .home-hero__scene > img {
  opacity: 1 !important;
  transition: none;
}

body[data-page="home"] .home-hero__scene .home-hero__canvas {
  opacity: 0 !important;
  pointer-events: none;
  transition: none;
}

.home-hero__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(246, 249, 248, 0.07);
  pointer-events: none;
}

.home-hero__shade::before {
  display: none;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, var(--page));
  height: 100%;
  min-height: 0;
  margin-inline: auto;
  padding: calc(var(--header-height) + 48px) var(--side) 54px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.home-hero h1,
body[data-locale="en"] .home-hero h1 {
  max-width: 590px;
  margin: 0;
  color: #162326;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
}

.home-hero__lead {
  max-width: 540px;
  margin-top: 24px;
  color: rgba(22, 35, 38, 0.82);
  font-size: 17px;
  line-height: 1.65;
}

.home-hero__context {
  max-width: 520px;
  margin-top: 7px;
  color: rgba(22, 35, 38, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.home-hero .hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 32px;
}

.home-hero .hero-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-bottom: 1px solid rgba(22, 35, 38, 0.48);
  color: #162326;
  font-size: 14px;
  font-weight: 600;
}

.home-hero .hero-link:hover {
  border-bottom-color: var(--blue-dark);
  color: var(--blue-dark);
}

.home-hero__facts {
  display: flex;
  margin-top: 62px;
  gap: 28px;
  color: rgba(22, 35, 38, 0.52);
  font-size: 12px;
}

.home-hero__facts span {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.home-hero__facts b {
  color: rgba(22, 35, 38, 0.92);
  font-size: 19px;
  font-weight: 560;
}

.signal-strip {
  border-top: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}

.signal-strip__inner {
  display: grid;
  width: min(100%, var(--page));
  margin-inline: auto;
  padding-inline: var(--side);
  grid-template-columns: 1.28fr repeat(4, minmax(0, 1fr));
}

.signal-strip__title,
.signal-strip a {
  display: flex;
  min-width: 0;
  min-height: 112px;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 20px 24px;
  flex-direction: column;
}

.signal-strip__title {
  border-left: 1px solid var(--line);
}

.signal-strip__title small {
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 800;
}

.signal-strip__title strong {
  margin-top: 7px;
  font-size: 24px;
  line-height: 1.2;
}

.signal-strip a {
  align-items: stretch;
  color: #3d4244;
  font-size: 14px;
}

.signal-strip a:first-child {
  border-left: 0;
}

.signal-strip a span {
  margin-top: 8px;
  color: var(--blue);
}

.signal-strip a:hover {
  color: var(--ink);
  background: var(--surface);
}

@media (max-width: 1200px) {
  .home-hero h1,
  body[data-locale="en"] .home-hero h1 {
    font-size: 50px;
  }

  .home-hero__shade::before {
    width: 52%;
  }

  .signal-strip__title,
  .signal-strip a {
    padding-inline: 18px;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .site-brand {
    width: 166px;
  }

  .home-hero {
    display: block;
    height: clamp(650px, calc(100svh - 92px), 760px);
    min-height: 650px;
  }

  .home-hero__copy {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    padding-top: calc(var(--header-height) + 46px);
  }

  .home-hero h1,
  body[data-locale="en"] .home-hero h1 {
    font-size: 48px;
  }

  .home-hero__shade::before {
    width: 60%;
  }

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

  .signal-strip__title,
  .signal-strip a {
    min-height: 100px;
    padding: 18px 14px;
  }

  .signal-strip__title strong {
    font-size: 20px;
  }
}

@media (max-width: 700px) {
  body[data-page="home"] .site-header {
    border-bottom-color: rgba(22, 34, 38, 0.1);
    background: rgba(246, 248, 247, 0.86);
  }

  body[data-page="home"] .site-brand {
    width: 148px;
  }

  .home-hero {
    height: clamp(610px, calc(100svh - 72px), 700px);
    min-height: 610px;
  }

  .home-hero__scene > img {
    object-position: 43% center;
  }

  .home-hero__shade {
    background: rgba(246, 249, 248, 0.1);
  }

  .home-hero__shade::before {
    display: none;
  }

  .home-hero__copy {
    min-height: 0;
    padding: calc(var(--header-height) + 34px) var(--side) 38px;
  }

  .home-hero h1,
  body[data-locale="en"] .home-hero h1 {
    max-width: 520px;
    font-size: 39px;
    line-height: 1.2;
  }

  body[data-locale="en"] .home-hero h1 {
    font-size: 36px;
  }

  .home-hero__lead {
    max-width: 520px;
    margin-top: 20px;
    font-size: 15px;
  }

  .home-hero__context {
    font-size: 13px;
  }

  .home-hero .hero-actions {
    margin-top: 30px;
    flex-direction: row;
    gap: 24px;
  }

  .home-hero__facts {
    margin-top: 46px;
    gap: 20px;
  }

  .signal-strip__inner {
    display: grid;
    padding-inline: var(--side);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .signal-strip__title {
    min-height: 82px;
    grid-column: 1 / -1;
    border-right: 1px solid var(--line);
    padding: 17px 18px;
  }

  .signal-strip a {
    min-width: 0;
    min-height: 74px;
    padding: 15px 18px;
  }

  .signal-strip a:nth-of-type(2n) {
    border-left: 1px solid var(--line);
  }

  .signal-strip a span {
    margin-top: 4px;
  }
}

@media (max-width: 390px) {
  .home-hero {
    height: 610px;
    min-height: 610px;
  }

  .home-hero__copy {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 38px;
  }

  .home-hero h1,
  body[data-locale="en"] .home-hero h1 {
    font-size: 34px;
  }

  body[data-locale="en"] .home-hero h1 {
    font-size: 31px;
  }

  .home-hero .hero-actions {
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }

  .home-hero__facts {
    margin-top: 38px;
    font-size: 11px;
  }

  .signal-strip a {
    padding-inline: 14px;
    font-size: 13px;
  }
}

/* Homepage visual polish: restrained brand anchors and engineering flow. */
body[data-page="home"] .home-hero__shade {
  background: linear-gradient(
    90deg,
    rgba(247, 247, 245, 0.96) 0%,
    rgba(247, 247, 245, 0.86) 28%,
    rgba(247, 247, 245, 0.64) 43%,
    rgba(247, 247, 245, 0) 62%
  );
}

body[data-page="home"] .home-hero__lead {
  color: var(--ink);
}

body[data-page="home"] .home-hero h1 {
  color: var(--ink);
}

body[data-page="home"] .home-hero__lead {
  color: #26383d;
}

body[data-page="home"] .home-hero__context {
  color: #33474d;
}

body[data-page="home"] .home-hero .hero-actions {
  margin-top: 32px;
  gap: 12px;
}

body[data-page="home"] .home-hero .hero-link {
  min-height: 48px;
  justify-content: center;
  border: 1px solid var(--blue);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease, transform 180ms ease;
}

body[data-page="home"] .home-hero .hero-link:first-child {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

body[data-page="home"] .home-hero .hero-link:last-child {
  color: var(--blue-dark);
  background: rgba(247, 247, 245, 0.84);
}

body[data-page="home"] .home-hero .hero-link:first-child:hover {
  border-color: var(--blue-dark);
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 0 8px 20px rgba(14, 110, 184, 0.2);
  transform: translateY(-2px);
}

body[data-page="home"] .home-hero .hero-link:last-child:hover {
  border-color: var(--blue-dark);
  color: var(--blue-dark);
  background: #fff;
  transform: translateY(-2px);
}

body[data-page="home"] .home-hero .hero-link:active {
  transform: translateY(0);
}

body[data-page="home"] .home-hero__facts {
  margin-top: 42px;
  color: #34484e;
}

body[data-page="home"] .home-hero__facts b {
  color: var(--ink);
  font-weight: 700;
}

body[data-page="home"] .signal-strip__title {
  border-left: 4px solid var(--blue);
  padding-left: 20px;
}

body[data-page="home"] .signal-strip a {
  transition: color 180ms ease, background 180ms ease;
}

body[data-page="home"] .signal-strip a span {
  display: inline-block;
  transition: transform 180ms ease;
}

body[data-page="home"] .signal-strip a:hover {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

body[data-page="home"] .signal-strip a:hover span {
  transform: translateX(4px);
}

body[data-page="home"] .section-heading h2::before,
body[data-page="home"] .handoff-section__intro h2::before,
body[data-page="home"] .flow-section h2::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 17px;
  background: var(--blue);
}

body[data-page="home"] .home-brief {
  padding-block: 112px 56px;
}

body[data-page="home"] .home-products {
  padding-block: 56px 96px;
}

body[data-page="home"] .brief-points {
  border-bottom-color: var(--line-strong);
}

body[data-page="home"] .brief-point {
  border-top: 2px solid var(--blue);
  border-right-color: var(--line-strong);
}

body[data-page="home"] .brief-point:first-child {
  border-left-color: var(--line-strong);
}

body[data-page="home"] .product-focus {
  border-color: var(--line-strong);
  background: var(--surface);
}

body[data-page="home"] .product-index {
  border-top-color: var(--line-strong);
}

body[data-page="home"] .product-index__row {
  position: relative;
  border-bottom-color: var(--line-strong);
  padding: 22px 56px 22px 16px;
  transition: background 180ms ease;
}

body[data-page="home"] .product-index__row h3 {
  transition: color 180ms ease;
}

body[data-page="home"] .product-index__row h3 span {
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--blue);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

body[data-page="home"] .product-index__row:hover {
  background: rgba(14, 110, 184, 0.06);
}

body[data-page="home"] .product-index__row:hover h3 {
  color: var(--blue-dark);
}

body[data-page="home"] .product-index__row:hover h3 span {
  transform: translate(4px, -50%);
}

body[data-page="home"] .flow-section {
  margin-top: 0;
  border-top: 1px solid rgba(14, 110, 184, 0.38);
}

body[data-page="home"] .flow-section__inner {
  padding-block: 80px;
}

body[data-page="home"] .signal-flow {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top-color: rgba(80, 166, 219, 0.52);
  border-bottom-color: rgba(80, 166, 219, 0.34);
  counter-reset: signal-step;
  overflow: visible;
}

body[data-page="home"] .signal-flow li {
  position: relative;
  min-width: 0;
  min-height: 154px;
  border-right-color: rgba(80, 166, 219, 0.26);
  padding: 22px 22px 24px;
  counter-increment: signal-step;
}

body[data-page="home"] .signal-flow li:first-child {
  border-left-color: rgba(80, 166, 219, 0.26);
}

body[data-page="home"] .signal-flow li::before {
  content: counter(signal-step, decimal-leading-zero);
  display: block;
  margin-bottom: 26px;
  color: #69b7e5;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="home"] .signal-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -12px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #75bfe9;
  background: #121517;
  font-size: 14px;
  transform: translateY(-50%);
}

body[data-page="home"] .signal-flow strong {
  font-size: 16px;
}

body[data-page="home"] .handoff-ledger__code {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 4px 8px;
  color: #fff;
  background: var(--blue);
  font-size: 10px;
  line-height: 1;
}

body[data-page="home"] .handoff-ledger article:hover {
  background: rgba(14, 110, 184, 0.045);
}

body[data-page="home"] .closing-cta {
  width: 100%;
  max-width: none;
  margin: 0;
  border-color: rgba(14, 110, 184, 0.22);
  padding: 68px max(var(--side), calc((100vw - var(--page)) / 2 + var(--side)));
  background: #edf5f9;
}

body[data-page="home"] .closing-cta .button {
  min-height: 48px;
  box-shadow: 0 0 0 rgba(14, 110, 184, 0);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease,
    transform 180ms ease;
}

body[data-page="home"] .closing-cta .button span {
  transition: transform 180ms ease;
}

body[data-page="home"] .closing-cta .button:hover {
  box-shadow: 0 12px 26px rgba(14, 110, 184, 0.2);
  transform: translateY(-2px);
}

body[data-page="home"] .closing-cta .button:hover span {
  transform: translateX(4px);
}

body[data-page="home"] .closing-cta .button:active {
  transform: translateY(0);
}

@media (max-width: 700px) {
  body[data-page="home"] .home-hero {
    height: 560px;
    min-height: 560px;
  }

  body[data-page="home"] .home-hero__scene > img {
    object-position: 14% center;
  }

  body[data-page="home"] .home-hero__shade {
    background: linear-gradient(
      0deg,
      rgba(247, 247, 245, 0.98) 0%,
      rgba(247, 247, 245, 0.95) 48%,
      rgba(247, 247, 245, 0.8) 68%,
      rgba(247, 247, 245, 0.28) 87%,
      rgba(247, 247, 245, 0) 100%
    );
  }

  body[data-page="home"] .home-hero__copy {
    justify-content: flex-end;
    padding: 76px var(--side) 28px;
  }

  body[data-page="home"] .home-hero h1,
  body[data-page="home"][data-locale="en"] .home-hero h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.16;
  }

  body[data-page="home"] .home-hero__lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
  }

  body[data-page="home"] .home-hero__context {
    margin-top: 5px;
    font-size: 12px;
  }

  body[data-page="home"] .home-hero .hero-actions {
    display: grid;
    width: 100%;
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body[data-page="home"] .home-hero .hero-link {
    width: 100%;
    min-height: 46px;
    padding-inline: 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  body[data-page="home"][data-locale="en"] .home-hero .hero-link {
    font-size: 12px;
  }

  body[data-page="home"] .home-hero__facts {
    margin-top: 24px;
    gap: 18px;
    font-size: 11px;
  }

  body[data-page="home"] .signal-strip__title {
    min-height: 72px;
  }

  body[data-page="home"] .signal-strip a {
    min-height: 68px;
  }

  body[data-page="home"] .home-brief {
    padding: 72px var(--side) 36px;
  }

  body[data-page="home"] .home-products {
    padding: 36px var(--side) 72px;
  }

  body[data-page="home"] .section-heading h2::before,
  body[data-page="home"] .handoff-section__intro h2::before,
  body[data-page="home"] .flow-section h2::before {
    margin-bottom: 14px;
  }

  body[data-page="home"] .product-index__row {
    padding: 20px 48px 20px 12px;
  }

  body[data-page="home"] .product-index__row h3 span {
    right: 12px;
  }

  body[data-page="home"] .flow-section__inner {
    padding-block: 64px;
  }

  body[data-page="home"] .flow-section h2 {
    font-size: 28px;
  }

  body[data-page="home"] .signal-flow {
    display: grid;
    margin-top: 34px;
    border: 0;
    padding-left: 36px;
    grid-template-columns: 1fr;
    overflow: visible;
    scroll-snap-type: none;
  }

  body[data-page="home"] .signal-flow::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 11px;
    width: 1px;
    background: rgba(80, 166, 219, 0.58);
  }

  body[data-page="home"] .signal-flow li {
    min-width: 0;
    min-height: 108px;
    border-top: 0;
    border-right: 1px solid rgba(80, 166, 219, 0.26);
    border-bottom: 1px solid rgba(80, 166, 219, 0.26);
    border-left: 1px solid rgba(80, 166, 219, 0.26) !important;
    padding: 20px 20px 20px 28px;
    scroll-snap-align: none;
  }

  body[data-page="home"] .signal-flow li:first-child {
    border-top: 1px solid rgba(80, 166, 219, 0.26);
  }

  body[data-page="home"] .signal-flow li::before {
    position: absolute;
    top: 18px;
    left: -39px;
    display: grid;
    width: 28px;
    height: 28px;
    margin: 0;
    place-items: center;
    border: 1px solid rgba(80, 166, 219, 0.72);
    color: #8bcaf0;
    background: #121517;
  }

  body[data-page="home"] .signal-flow li:not(:last-child)::after {
    display: none;
  }

  body[data-page="home"] .signal-flow span {
    margin-top: 7px;
  }

  body[data-page="home"] .closing-cta {
    grid-template-columns: 1fr;
    align-items: start;
    padding-block: 54px;
    gap: 28px;
  }

  body[data-page="home"] .closing-cta .button {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 390px) {
  body[data-page="home"] .home-hero {
    height: 540px;
    min-height: 540px;
  }

  body[data-page="home"] .home-hero__copy {
    padding-bottom: 24px;
  }

  body[data-page="home"] .home-hero h1,
  body[data-page="home"][data-locale="en"] .home-hero h1 {
    font-size: 34px;
  }
}

/* 2026-07-17 site-wide light engineering unification. */
.hero-kicker {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.section-heading {
  display: block;
  max-width: 920px;
  padding-bottom: 0;
  border-bottom: 0;
}

.section-heading p {
  max-width: 760px;
  margin-top: 18px;
}

.section-heading h2::before,
.handoff-section__intro h2::before,
.flow-section h2::before {
  display: none !important;
  content: none !important;
}

.page-hero {
  min-height: 400px;
  grid-template-columns: minmax(380px, 0.46fr) minmax(0, 0.54fr);
  background: var(--paper);
}

.page-hero--compact {
  min-height: 350px;
}

.page-hero__copy {
  padding-block: 60px;
}

.page-hero h1 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.13;
}

.page-hero h1 span {
  color: inherit;
}

.page-hero__lead {
  margin-top: 22px;
  font-size: 16px;
}

.page-hero__visual {
  min-height: 0;
  border-left: 0;
  padding: 54px 48px 70px;
  background: var(--stage);
}

.page-hero__visual > img:not(.page-hero__brand-mark) {
  width: min(82%, 620px);
  max-height: 280px;
}

.page-hero__brand-mark {
  width: min(52%, 300px);
}

.page-hero__visual-note {
  right: 48px;
  bottom: 22px;
  left: 48px;
}

body[data-page="home"] .home-hero__scene > img {
  filter: brightness(0.94) contrast(1.05) saturate(0.88);
}

body[data-page="home"] .home-hero__shade {
  background: linear-gradient(
    90deg,
    rgba(247, 247, 245, 0.94) 0%,
    rgba(247, 247, 245, 0.82) 29%,
    rgba(247, 247, 245, 0.46) 46%,
    rgba(247, 247, 245, 0.08) 62%,
    rgba(247, 247, 245, 0) 72%
  );
}

body[data-page="home"] .home-hero__lead {
  color: var(--ink);
}

body[data-page="home"] .signal-strip__inner {
  grid-template-columns: 1.1fr repeat(4, minmax(0, 1fr));
}

body[data-page="home"] .signal-strip__title,
body[data-page="home"] .signal-strip a {
  min-height: 92px;
}

body[data-page="home"] .signal-strip__title {
  padding-left: 20px;
}

body[data-page="home"] .signal-strip__title strong {
  margin-top: 0;
  font-size: 22px;
}

body[data-page="home"] .home-brief {
  padding-block: 104px 50px;
}

body[data-page="home"] .home-products {
  padding-block: 50px 96px;
}

body[data-page="home"] .brief-points {
  display: grid;
  margin-top: 42px;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 52px;
  border: 0;
}

body[data-page="home"] .brief-point,
body[data-page="home"] .brief-point:first-child {
  min-height: 0;
  border: 0;
  border-left: 1px solid var(--line-strong);
  padding: 2px 0 2px 20px;
}

body[data-page="home"] .brief-point h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

body[data-page="home"] .brief-point p {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.8;
}

body[data-page="home"] .product-focus {
  border: 0;
  background: transparent;
}

body[data-page="home"] .product-focus > div {
  padding: 0;
}

body[data-page="home"] .product-focus .section-heading {
  padding-bottom: 0;
}

body[data-page="home"] .product-index {
  margin-top: 36px;
}

body[data-page="home"] .product-index__row {
  padding: 24px 52px 24px 8px;
}

body[data-page="home"] .flow-section {
  margin-top: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--stage);
}

body[data-page="home"] .flow-section__inner {
  padding-block: 96px;
}

body[data-page="home"] .flow-section h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.3;
}

body[data-page="home"] .signal-flow {
  position: relative;
  display: grid;
  margin-top: 58px;
  border: 0;
  padding-top: 48px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  counter-reset: none;
  overflow: visible;
}

body[data-page="home"] .signal-flow::before {
  position: absolute;
  top: 6px;
  right: calc(20% - 7px);
  left: 7px;
  height: 1px;
  background: rgba(14, 110, 184, 0.58);
  content: "";
}

body[data-page="home"] .signal-flow li,
body[data-page="home"] .signal-flow li:first-child {
  position: relative;
  min-width: 0;
  min-height: 0;
  border: 0;
  padding: 0 28px 0 0;
  counter-increment: none;
}

body[data-page="home"] .signal-flow li::before {
  position: absolute;
  top: -48px;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  margin: 0;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--stage);
  content: "";
}

body[data-page="home"] .signal-flow li:not(:last-child)::after {
  display: none;
}

body[data-page="home"] .signal-flow strong {
  color: var(--ink);
  font-size: 17px;
}

body[data-page="home"] .signal-flow span {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.7;
}

body[data-page="home"] .handoff-section {
  border-top: 0;
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper);
}

body[data-page="home"] .handoff-section__inner {
  padding-block: 96px;
}

body[data-page="home"] .handoff-ledger {
  border: 0;
  background: transparent;
}

body[data-page="home"] .handoff-ledger article {
  min-height: 0;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 0.66fr);
  border-top: 1px solid var(--line-strong);
  padding: 23px 0;
  gap: 28px;
}

body[data-page="home"] .handoff-ledger article:last-of-type {
  border-bottom: 1px solid var(--line-strong);
}

body[data-page="home"] .handoff-ledger article:hover {
  background: transparent;
}

body[data-page="home"] .handoff-ledger h3 {
  font-size: 18px;
}

body[data-page="home"] .handoff-ledger footer {
  padding-inline: 0;
}

body[data-page="home"] .closing-cta .button:hover {
  box-shadow: none;
  transform: translateY(-1px);
}

.catalog-results__header > div > p,
.catalog-feature__copy > p,
.product-dialog__copy > p,
.compare-dialog__content header > p {
  display: none;
}

.catalog-feature__copy h2,
.product-dialog__copy h2 {
  margin-top: 0;
}

.catalog-categories {
  border-right: 0;
  border-left: 0;
  background: transparent;
}

.catalog-categories button {
  min-height: 72px;
  border-right: 0;
  background: transparent;
}

.catalog-categories button:hover,
.catalog-categories button[aria-current="true"] {
  background: transparent;
}

.catalog-workspace {
  border-right: 0;
  border-left: 0;
}

.catalog-feature {
  background: #f0f2f1;
}

.scenario-section,
.about-manifesto,
.contact-section {
  padding-top: 96px;
}

.scenario-feature,
.scenario-wide {
  margin-top: 56px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 0;
}

.scenario-feature__visual,
.scenario-wide__visual,
.scenario-panel figure {
  background: var(--stage);
}

.scenario-pair {
  margin-top: 64px;
  border: 0;
  gap: 34px;
}

.scenario-panel,
.scenario-panel:first-child {
  border-top: 1px solid var(--line-strong);
  border-right: 0;
}

.scenario-panel figure {
  border-bottom: 0;
}

.scenario-panel__copy {
  padding: 36px 8px 0;
}

.tag-list span {
  border-bottom: 0;
  padding-bottom: 0;
  color: var(--muted);
}

.process-band {
  margin-top: 96px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--stage);
}

.process-band__inner {
  padding-block: 88px;
}

.process-band h2 {
  color: var(--ink);
  font-size: 34px;
}

.process-grid {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(14, 110, 184, 0.5);
  border-bottom: 0;
  gap: 34px;
}

.process-grid article,
.process-grid article:first-child {
  min-height: 0;
  border: 0;
  padding: 24px 0 0;
}

.process-grid h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

.process-grid p {
  font-size: 14px;
  line-height: 1.75;
}

.about-manifesto {
  display: block;
  max-width: 980px;
}

.about-manifesto__lead {
  max-width: 820px;
  font-size: 38px;
  line-height: 1.35;
}

.about-manifesto__body {
  max-width: 820px;
  margin-top: 42px;
  border-top: 1px solid var(--line-strong);
}

.about-manifesto__body p {
  padding-block: 20px;
}

.principles {
  display: block;
  margin-top: 40px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 0;
}

.principle,
.principle:first-child {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.7fr);
  align-items: baseline;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 24px 0;
  gap: 32px;
}

.principle h3 {
  margin-bottom: 0;
}

.timeline-section {
  border-color: var(--line-strong);
  background: var(--paper);
}

.timeline-section__inner {
  padding-block: 92px;
}

.timeline-track {
  position: relative;
  margin-top: 50px;
  border: 0;
  padding-top: 34px;
}

.timeline-track::before {
  position: absolute;
  top: 6px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.timeline-track article,
.timeline-track article:first-child {
  position: relative;
  min-height: 0;
  border: 0;
  padding: 20px 28px 0 0;
}

.timeline-track article::before {
  position: absolute;
  top: -34px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.timeline-track h3 {
  margin-top: 10px;
}

.contact-section {
  padding-top: 72px;
}

.contact-layout {
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
}

.contact-details {
  background: var(--stage);
}

.form-watchers {
  width: 132px;
  height: 90px;
  margin-top: 26px;
}

.form-watcher {
  --watch-height: 58px;
  width: 44px;
  height: var(--watch-height);
  flex-basis: 44px;
  transition-duration: 360ms;
}

.form-watcher--coral {
  --watch-color: #c96f5c;
  --watch-height: 78px;
}

.form-watcher--yellow {
  --watch-color: #c7a743;
  --watch-height: 50px;
}

.form-watcher__face {
  top: 14px;
  width: 24px;
  height: 10px;
  transition-duration: 360ms;
}

.form-watcher__face i {
  width: 10px;
  height: 10px;
}

.form-watcher__face i::after {
  top: 3px;
  left: 3px;
  width: 4px;
  height: 4px;
}

.contact-layout.is-watching .form-watcher {
  transform: translateX(5px) skewX(-10deg) scaleY(1.04);
}

.contact-layout.is-watching .form-watcher__face {
  transform: translateX(-50%) skewX(10deg) scaleY(0.96);
}

.contact-layout.is-typing .form-watcher {
  transform: translateX(7px) skewX(-13deg) scaleY(1.07);
}

.contact-layout.is-typing .form-watcher__face {
  transform: translateX(-50%) skewX(13deg) scaleY(0.94);
}

@media (max-width: 980px) {
  .page-hero,
  .page-hero--compact {
    min-height: 0;
    grid-template-columns: 1fr;
  }

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

  .contact-details {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .page-hero__copy {
    min-height: 330px;
    padding-block: 54px;
  }

  .page-hero__visual {
    min-height: 280px;
    padding-block: 44px 64px;
  }

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

@media (max-width: 700px) {
  .page-hero__copy {
    min-height: 300px;
    padding: 50px var(--side) 42px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero__visual {
    min-height: 230px;
    padding: 36px 24px 58px;
  }

  .page-hero__visual > img:not(.page-hero__brand-mark) {
    max-height: 150px;
  }

  .page-hero__brand-mark {
    width: min(62%, 250px);
  }

  .page-hero__visual-note {
    right: 24px;
    bottom: 16px;
    left: 24px;
    padding-top: 10px;
  }

  body[data-page="home"] .home-hero__shade {
    background: linear-gradient(
      0deg,
      rgba(247, 247, 245, 0.97) 0%,
      rgba(247, 247, 245, 0.91) 50%,
      rgba(247, 247, 245, 0.52) 74%,
      rgba(247, 247, 245, 0.1) 91%,
      rgba(247, 247, 245, 0) 100%
    );
  }

  body[data-page="home"] .signal-strip__title,
  body[data-page="home"] .signal-strip a {
    min-height: 68px;
  }

  body[data-page="home"] .signal-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .signal-strip__title {
    grid-column: 1 / -1;
  }

  body[data-page="home"] .signal-strip__title strong {
    font-size: 20px;
  }

  body[data-page="home"] .home-brief {
    padding: 68px var(--side) 34px;
  }

  body[data-page="home"] .home-products {
    padding: 34px var(--side) 68px;
  }

  body[data-page="home"] .brief-points {
    display: block;
    margin-top: 32px;
  }

  body[data-page="home"] .brief-point,
  body[data-page="home"] .brief-point:first-child {
    border: 0;
    border-top: 1px solid var(--line-strong);
    padding: 22px 0;
  }

  body[data-page="home"] .brief-point:last-child {
    border-bottom: 1px solid var(--line-strong);
  }

  body[data-page="home"] .product-index {
    margin-top: 30px;
  }

  body[data-page="home"] .flow-section__inner {
    padding-block: 66px;
  }

  body[data-page="home"] .flow-section h2 {
    font-size: 28px;
  }

  body[data-page="home"] .signal-flow {
    display: grid;
    margin-top: 38px;
    border: 0;
    padding: 0 0 0 36px;
    grid-template-columns: 1fr;
    gap: 28px;
    overflow: visible;
  }

  body[data-page="home"] .signal-flow::before {
    top: 8px;
    right: auto;
    bottom: 8px;
    left: 6px;
    width: 1px;
    height: auto;
  }

  body[data-page="home"] .signal-flow li,
  body[data-page="home"] .signal-flow li:first-child {
    min-width: 0;
    min-height: 0;
    border: 0 !important;
    padding: 0;
  }

  body[data-page="home"] .signal-flow li::before {
    top: 5px;
    left: -36px;
  }

  body[data-page="home"] .handoff-section__inner {
    padding-block: 68px;
  }

  body[data-page="home"] .handoff-ledger article {
    display: block;
    padding: 21px 0;
  }

  body[data-page="home"] .handoff-ledger article p {
    margin-top: 8px;
  }

  .scenario-section,
  .about-manifesto,
  .contact-section {
    padding-top: 68px;
  }

  .scenario-feature,
  .scenario-wide,
  .scenario-pair {
    margin-top: 42px;
  }

  .scenario-pair {
    gap: 42px;
  }

  .scenario-panel,
  .scenario-panel:first-child {
    border-bottom: 0;
  }

  .scenario-panel__copy {
    padding: 28px 0 0;
  }

  .process-band {
    margin-top: 68px;
  }

  .process-band__inner {
    padding-block: 66px;
  }

  .process-grid {
    display: block;
    margin-top: 32px;
    border-top: 0;
  }

  .process-grid article,
  .process-grid article:first-child {
    border: 0;
    border-top: 1px solid var(--line-strong);
    padding: 20px 0;
  }

  .process-grid article:last-child {
    border-bottom: 1px solid var(--line-strong);
  }

  .about-manifesto__lead {
    font-size: 29px;
  }

  .about-manifesto__body {
    margin-top: 32px;
  }

  .principle,
  .principle:first-child {
    display: block;
    padding: 22px 0;
  }

  .principle p {
    margin-top: 8px;
  }

  .timeline-section__inner {
    padding-block: 68px;
  }

  .timeline-track {
    display: grid;
    margin-top: 36px;
    border: 0;
    padding: 0 0 0 34px;
    grid-template-columns: 1fr;
    gap: 26px;
    overflow: visible;
  }

  .timeline-track::before {
    top: 6px;
    right: auto;
    bottom: 6px;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .timeline-track article,
  .timeline-track article:first-child {
    min-width: 0;
    border: 0 !important;
    padding: 0;
  }

  .timeline-track article::before {
    top: 4px;
    left: -34px;
  }

  .catalog-categories button {
    min-width: 132px;
    min-height: 66px;
  }

  .catalog-search input {
    padding-inline: 12px;
    font-size: 13px;
  }

  .catalog-feature {
    background: var(--stage);
  }

  .catalog-row__open {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .catalog-row__image {
    height: 104px;
  }

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

  .contact-details,
  .project-form {
    padding: 30px 22px;
  }

  .form-watchers {
    margin-top: 24px;
  }
}

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