@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light;
  --chassis: #e9e7df;
  --panel: #f4f2ea;
  --inset: #deddd4;
  --ink: #111111;
  --muted: #5e5d57;
  --rule: #181818;
  --orange: #ff3b12;
  --yellow: #ffd51f;
  --blue: #146cff;
  --green: #19a83b;
  --danger: #d82222;
  --page-pad: clamp(16px, 2.25vw, 36px);
  --section-gap: clamp(56px, 7.5vw, 116px);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --mono: "IBM Plex Mono", Menlo, Monaco, monospace;
}

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

html {
  background: var(--chassis);
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--chassis);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.55;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border: 1px solid var(--rule);
  background: var(--yellow);
  transform: translateY(-160%);
}

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

.site-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 12px var(--page-pad) 28px;
}

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto;
  min-height: 96px;
  border: 1px solid var(--rule);
  background: rgba(244, 242, 234, 0.94);
}

.brand {
  display: grid;
  grid-template-columns: 132px auto 1fr;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  min-height: 94px;
  border-right: 1px solid var(--rule);
}

.brand-mark img {
  width: 58px;
  height: 58px;
}

.brand-name {
  display: flex;
  align-items: center;
  padding-left: 32px;
  font-family: var(--display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.9;
}

.brand-tag {
  display: flex;
  align-items: center;
  padding: 4px 30px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: stretch;
}

.site-nav a {
  display: flex;
  min-width: 108px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-left: 1px solid transparent;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--panel);
}

.site-nav .nav-download {
  min-width: 150px;
  border-left-color: var(--rule);
  color: var(--orange);
}

.site-nav .nav-download:hover,
.site-nav .nav-download:focus-visible,
.site-nav .nav-download[aria-current="page"] {
  background: var(--orange);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  min-width: 100px;
  border: 0;
  border-left: 1px solid var(--rule);
  background: transparent;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--ink);
  color: var(--panel);
}

main {
  display: block;
}

.section {
  margin-top: var(--section-gap);
}

.section-tight {
  margin-top: clamp(28px, 4vw, 56px);
}

.eyebrow,
.section-kicker,
.micro {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--rule);
  background: var(--panel);
  color: var(--ink);
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border: 1px solid var(--rule);
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-title {
  max-width: 1420px;
  margin-top: 24px;
  font-size: clamp(64px, 8.5vw, 136px);
}

.hero-title span {
  display: block;
}

.page-title {
  max-width: 1240px;
  margin-top: 24px;
  font-size: clamp(64px, 7.2vw, 116px);
}

.lead {
  max-width: 830px;
  margin: 28px 0 0;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.65;
}

.hero {
  padding: clamp(54px, 8vw, 122px) clamp(8px, 2vw, 30px) 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid var(--rule);
  background: var(--panel);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--ink);
  color: var(--panel);
}

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

.button-primary {
  min-width: 290px;
  background: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink);
  color: var(--orange);
}

.button-small {
  min-height: 46px;
  padding: 9px 18px;
  font-size: 18px;
}

.button-disabled {
  color: var(--muted);
  cursor: not-allowed;
}

.rule-panel {
  border: 1px solid var(--rule);
  background: var(--panel);
}

.status-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(50px, 7vw, 96px);
  border: 1px solid var(--rule);
  background: var(--panel);
}

.status-rail > div {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 12px 18px;
  border-right: 1px solid var(--rule);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.status-rail > div:last-child {
  border-right: 0;
}

.lamp {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 1px solid var(--rule);
  background: var(--green);
  border-radius: 50%;
}

.lamp-yellow {
  background: var(--yellow);
}

.lamp-blue {
  background: var(--blue);
}

.lamp-off {
  background: transparent;
}

.product-figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--rule);
  background: #d6d5cf;
}

.product-figure::before {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
  padding: 8px 10px;
  border: 1px solid var(--rule);
  background: var(--panel);
  font-size: 11px;
  letter-spacing: 0.08em;
  content: "NOMEN / macOS / LOCAL PROCESSING";
}

.product-figure img {
  width: 100%;
  height: auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 980px;
  font-size: clamp(48px, 6vw, 88px);
}

.section-heading p {
  max-width: 440px;
  margin: 0 0 8px;
  color: var(--muted);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.step-card {
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--panel);
}

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.step-no {
  display: inline-grid;
  min-width: 52px;
  height: 52px;
  place-items: center;
  background: var(--ink);
  color: var(--panel);
  font-size: 17px;
  font-weight: 600;
}

.step-card h3 {
  margin: 36px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.step-card p {
  max-width: 460px;
  margin: 18px 0 0;
}

.step-card:nth-child(1) {
  box-shadow: inset 0 7px 0 var(--green);
}

.step-card:nth-child(2) {
  box-shadow: inset 0 7px 0 var(--yellow);
}

.step-card:nth-child(3) {
  box-shadow: inset 0 7px 0 var(--blue);
}

.privacy-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--rule);
  background: var(--panel);
}

.privacy-band > div {
  padding: clamp(28px, 4vw, 62px);
}

.privacy-band > div + div {
  border-left: 1px solid var(--rule);
}

.privacy-band h2 {
  font-size: clamp(52px, 6.5vw, 96px);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--rule);
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border: 1px solid var(--rule);
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.pricing-teaser {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1.3fr;
  border: 1px solid var(--rule);
  background: var(--panel);
}

.price-block {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 56px);
  border-right: 1px solid var(--rule);
}

.price {
  display: flex;
  align-items: end;
  gap: 22px;
  font-family: var(--display);
  line-height: 0.8;
  text-transform: uppercase;
}

.price-value {
  font-size: clamp(96px, 12vw, 172px);
  font-weight: 700;
}

.price-label {
  padding-bottom: 14px;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 600;
}

.pricing-copy {
  padding: clamp(28px, 4vw, 56px);
}

.pricing-copy h2 {
  font-size: clamp(54px, 6vw, 88px);
}

.pricing-copy .lead {
  margin-top: 20px;
}

.instrument {
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--panel);
  font-size: 11px;
}

.instrument-topbar {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  min-height: 76px;
  border-bottom: 1px solid var(--rule);
}

.instrument-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 20px;
}

.instrument-brand img {
  width: 42px;
  height: 42px;
}

.instrument-brand strong {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.instrument-brand span {
  letter-spacing: 0.08em;
}

.instrument-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid var(--rule);
}

.module-header {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 16px;
  padding-right: 12px;
  border-bottom: 1px solid var(--rule);
}

.module-no {
  display: grid;
  width: 42px;
  align-self: stretch;
  place-items: center;
  background: var(--ink);
  color: var(--panel);
  font-weight: 600;
}

.module-title {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.module-header .button {
  margin-left: auto;
}

.source-grid {
  display: grid;
  grid-template-columns: 2fr 2.4fr 1fr 1fr 1.1fr;
}

.source-grid > div {
  min-width: 0;
  min-height: 42px;
  padding: 12px;
  overflow: hidden;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-grid > div:nth-child(5n) {
  border-right: 0;
}

.source-grid .source-head {
  min-height: 34px;
  padding-top: 9px;
  padding-bottom: 9px;
  background: var(--inset);
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
}

.source-name {
  font-weight: 600;
}

.source-name .lamp {
  width: 10px;
  height: 10px;
  margin-right: 8px;
}

.source-status {
  color: var(--green);
  text-align: center;
  text-transform: uppercase;
}

.action-row {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr) 1.1fr;
  gap: 9px;
  padding: 14px;
  border-bottom: 1px solid var(--rule);
}

.instrument .action-row .button {
  min-width: 0;
  min-height: 42px;
  padding: 7px;
  font-size: 17px;
}

.result-row {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  border-bottom: 1px solid var(--rule);
}

.result-row > div {
  display: flex;
  min-height: 68px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--rule);
}

.result-row > div:last-child {
  border-right: 0;
}

.result-row strong {
  font-size: 17px;
}

.result-state {
  flex-direction: row !important;
  gap: 10px;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
}

.stage-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--rule);
}

.stage {
  display: grid;
  grid-template-columns: 18px 28px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 8px;
  border: 1px solid var(--rule);
}

.stage .lamp {
  width: 12px;
  height: 12px;
}

.stage-no {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  background: var(--ink);
  color: var(--panel);
  font-weight: 600;
}

.stage strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.stage small {
  font-size: 8px;
  text-transform: uppercase;
}

.progress-demo {
  padding: 18px 14px;
  border-bottom: 1px solid var(--rule);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.segmented-meter {
  display: grid;
  grid-template-columns: repeat(32, 1fr);
  gap: 3px;
}

.segmented-meter span {
  height: 16px;
  border: 1px solid var(--rule);
  background: var(--inset);
}

.segmented-meter span.is-active {
  background: var(--yellow);
}

.activity-log {
  min-height: 110px;
  padding: 14px;
  background: var(--inset);
  color: #087b21;
  font-size: 10px;
  line-height: 1.7;
}

.activity-log p {
  margin: 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.capability {
  min-height: 160px;
  padding: 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--panel);
}

.capability h3 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.capability p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.local-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  border: 1px solid var(--rule);
  background: var(--panel);
}

.flow-node {
  position: relative;
  display: flex;
  min-height: 170px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px;
  border-right: 1px solid var(--rule);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.flow-node:last-child {
  border-right: 0;
}

.flow-node:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -12px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid var(--rule);
  background: var(--panel);
  font-family: var(--mono);
  font-size: 14px;
  content: "→";
  transform: translateY(-50%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.trust-card {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--panel);
}

.trust-card h3 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.trust-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--rule);
  background: var(--panel);
}

.data-table th,
.data-table td {
  padding: 17px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

.data-table th:last-child,
.data-table td:last-child {
  border-right: 0;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table th {
  background: var(--inset);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-table td:first-child {
  width: 28%;
  font-weight: 600;
}

code {
  padding: 2px 5px;
  border: 1px solid var(--rule);
  background: var(--inset);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.9em;
}

.price-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.price-card {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--rule);
  background: var(--panel);
}

.price-card .price {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--rule);
}

.price-card .check-list {
  margin-top: 20px;
}

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

.platform-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--rule);
  background: var(--panel);
}

.platform-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.platform-name {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 600;
}

.platform-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
}

.platform-status-soon {
  color: #a87900;
}

.platform-mark {
  display: grid;
  min-height: 90px;
  place-items: center;
  font-family: var(--display);
  font-size: 54px;
  font-weight: 700;
}

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

.release-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.requirements {
  margin-top: 24px;
  border: 1px solid var(--rule);
  background: var(--panel);
}

.requirements h2 {
  margin: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.requirement-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}

.requirement-row:last-child {
  border-bottom: 0;
}

.requirement-row span {
  padding: 14px 18px;
}

.requirement-row span + span {
  border-left: 1px solid var(--rule);
}

.faq-list {
  border: 1px solid var(--rule);
  background: var(--panel);
}

.faq-list details {
  border-bottom: 1px solid var(--rule);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  font-family: var(--display);
  font-size: 26px;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details[open] summary {
  background: var(--ink);
  color: var(--panel);
}

.faq-answer {
  max-width: 920px;
  margin: 0;
  padding: 20px;
}

.docs-search {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--rule);
  background: var(--panel);
}

.docs-search input {
  min-width: 0;
  height: 64px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  outline: 0;
}

.docs-search input:focus {
  box-shadow: inset 0 -5px 0 var(--yellow);
}

.docs-search output {
  display: flex;
  min-width: 150px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-left: 1px solid var(--rule);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.doc-card {
  min-height: 180px;
  padding: 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--panel);
}

.doc-card[hidden] {
  display: none;
}

.doc-card h2 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: 37px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.doc-card p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quick-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.quick-step {
  min-height: 180px;
  padding: 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--panel);
}

.quick-step strong {
  display: block;
  margin-top: 24px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.quick-step p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.support-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  border: 1px solid var(--rule);
  background: var(--panel);
}

.support-actions {
  padding: 24px;
  border-right: 1px solid var(--rule);
}

.support-actions .button {
  width: 100%;
  margin-top: 12px;
}

.support-actions .button:first-of-type {
  margin-top: 24px;
}

.support-actions .micro {
  margin-top: 28px;
}

.support-layout .faq-list {
  border: 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--rule);
  background: var(--panel);
}

.cta-panel h2 {
  max-width: 760px;
  font-size: clamp(48px, 5.5vw, 80px);
}

.site-footer {
  margin-top: var(--section-gap);
  border: 1px solid var(--rule);
  background: var(--panel);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.footer-brand {
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid var(--rule);
}

.footer-brand .brand-name {
  display: block;
  padding: 0;
}

.footer-brand p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
}

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

.footer-links a {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 16px 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:nth-child(2n) {
  border-right: 0;
}

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

.footer-meta {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-home .site-nav a[data-nav="home"],
.page-features .site-nav a[data-nav="features"],
.page-privacy .site-nav a[data-nav="privacy"],
.page-docs .site-nav a[data-nav="docs"],
.page-pricing .site-nav a[data-nav="pricing"] {
  background: var(--ink);
  color: var(--panel);
}

.page-pricing .site-nav a[data-nav="pricing"] {
  background: var(--orange);
  color: var(--ink);
}

.search-empty {
  display: none;
  padding: 32px;
  border: 1px solid var(--rule);
  background: var(--yellow);
  text-align: center;
}

.search-empty.is-visible {
  display: block;
}

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(320px, 1fr) auto;
  }

  .brand {
    grid-template-columns: 104px auto 1fr;
  }

  .brand-mark {
    min-height: 82px;
  }

  .brand-name {
    padding-left: 22px;
    font-size: 48px;
  }

  .brand-tag {
    padding-right: 18px;
    padding-left: 20px;
    font-size: 11px;
  }

  .site-nav a {
    min-width: 90px;
    padding: 0 12px;
    font-size: 16px;
  }

  .site-nav .nav-download {
    min-width: 122px;
  }

  .instrument-topbar {
    grid-template-columns: 1fr 120px 120px;
  }

  .stage-row {
    gap: 7px;
  }

  .stage {
    grid-template-columns: 14px 24px 1fr;
    gap: 5px;
  }
}

@media (max-width: 960px) {
  .site-shell {
    padding-top: 8px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 80px;
  }

  .brand {
    position: relative;
    z-index: 101;
    grid-template-columns: 86px auto;
  }

  .brand-mark {
    min-height: 78px;
  }

  .brand-mark img {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    padding: 2px 24px 0;
    font-size: 47px;
  }

  .brand-tag {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    inset: 0;
    top: 0;
    display: grid;
    align-content: center;
    padding: 100px var(--page-pad) 32px;
    background: var(--chassis);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav .nav-download {
    min-height: 72px;
    border: 1px solid var(--rule);
    border-bottom: 0;
    font-size: 30px;
  }

  .site-nav a:last-child {
    border-bottom: 1px solid var(--rule);
  }

  .nav-toggle {
    position: relative;
    z-index: 101;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-title {
    font-size: clamp(64px, 13vw, 104px);
  }

  .page-title {
    font-size: clamp(60px, 12vw, 94px);
  }

  .section-heading {
    display: block;
  }

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

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

  .step-card {
    min-height: 220px;
  }

  .privacy-band,
  .pricing-teaser,
  .price-layout {
    grid-template-columns: 1fr;
  }

  .privacy-band > div + div,
  .price-block {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .price-block {
    border-right: 0;
  }

  .instrument-topbar {
    grid-template-columns: 1fr 110px;
  }

  .instrument-topbar .instrument-cell:nth-child(2) {
    display: none;
  }

  .source-grid {
    grid-template-columns: 1.4fr 1.7fr 0.8fr 0.8fr;
  }

  .source-grid > div:nth-child(5n - 1) {
    border-right: 0;
  }

  .source-grid > div:nth-child(5n) {
    display: none;
  }

  .action-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .result-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .result-row > div:nth-child(3) {
    border-right: 0;
  }

  .result-row > div:nth-child(n + 4) {
    border-top: 1px solid var(--rule);
  }

  .stage-row {
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    overflow-x: auto;
  }

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

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

  .flow-node {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .flow-node:last-child {
    border-bottom: 0;
  }

  .flow-node:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -12px;
    content: "↓";
    transform: translateX(50%);
  }

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

  .data-table {
    display: block;
    overflow-x: auto;
  }

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

  .support-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .support-actions,
  .footer-brand {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 8px;
    --section-gap: 56px;
  }

  body {
    font-size: 13px;
  }

  .site-shell {
    padding-bottom: 8px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand {
    grid-template-columns: 66px auto;
  }

  .brand-mark {
    min-height: 66px;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    padding-right: 12px;
    padding-left: 16px;
    font-size: 38px;
  }

  .nav-toggle {
    min-width: 74px;
    font-size: 19px;
  }

  .site-nav {
    padding-right: 8px;
    padding-left: 8px;
  }

  .site-nav a,
  .site-nav .nav-download {
    min-height: 64px;
    font-size: 26px;
  }

  .hero {
    padding: 48px 12px 0;
  }

  .hero-title {
    margin-top: 20px;
    font-size: clamp(44px, 12.8vw, 58px);
    line-height: 0.9;
  }

  .page-title {
    margin-top: 20px;
    font-size: clamp(46px, 13.2vw, 62px);
    line-height: 0.92;
  }

  .lead {
    margin-top: 22px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .button,
  .button-primary {
    width: 100%;
    min-width: 0;
  }

  .status-rail {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .status-rail > div {
    min-height: 48px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    text-align: left;
  }

  .status-rail > div:last-child {
    border-bottom: 0;
  }

  .product-figure::before {
    top: 8px;
    left: 8px;
    font-size: 8px;
  }

  .section-heading {
    padding: 0 8px;
  }

  .section-heading h2 {
    font-size: 52px;
  }

  .step-card {
    min-height: 240px;
    padding: 22px;
  }

  .step-card h3 {
    margin-top: 28px;
    font-size: 43px;
  }

  .privacy-band > div,
  .price-block,
  .pricing-copy {
    padding: 26px 20px;
  }

  .privacy-band h2,
  .pricing-copy h2 {
    font-size: 54px;
  }

  .price {
    gap: 12px;
  }

  .price-value {
    font-size: 104px;
  }

  .price-label {
    font-size: 35px;
  }

  .instrument {
    font-size: 8px;
  }

  .instrument-topbar {
    grid-template-columns: 1fr 78px;
    min-height: 56px;
  }

  .instrument-brand {
    gap: 10px;
    padding: 8px 10px;
  }

  .instrument-brand img {
    width: 30px;
    height: 30px;
  }

  .instrument-brand strong {
    font-size: 26px;
  }

  .instrument-brand span {
    display: none;
  }

  .module-header {
    min-height: 36px;
  }

  .module-no {
    width: 36px;
  }

  .module-title {
    font-size: 17px;
  }

  .source-grid {
    grid-template-columns: 1.4fr 1.6fr 0.8fr;
  }

  .source-grid > div {
    min-height: 38px;
    padding: 10px 7px;
  }

  .source-grid > div:nth-child(5n - 2) {
    border-right: 0;
  }

  .source-grid > div:nth-child(5n - 1),
  .source-grid > div:nth-child(5n) {
    display: none;
  }

  .action-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 9px;
  }

  .instrument .action-row .button {
    min-height: 36px;
    font-size: 14px;
  }

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

  .result-row > div {
    min-height: 58px;
  }

  .result-row > div:nth-child(3) {
    border-right: 1px solid var(--rule);
  }

  .result-row > div:nth-child(2n) {
    border-right: 0;
  }

  .result-row > div:nth-child(n + 3) {
    border-top: 1px solid var(--rule);
  }

  .result-row strong {
    font-size: 13px;
  }

  .progress-demo {
    padding: 14px 9px;
  }

  .segmented-meter {
    grid-template-columns: repeat(16, 1fr);
  }

  .segmented-meter span:nth-child(n + 17) {
    display: none;
  }

  .stage-row {
    grid-template-columns: repeat(5, 134px);
    padding: 10px;
  }

  .activity-log {
    min-height: 96px;
    padding: 10px;
    font-size: 8px;
  }

  .capability-grid,
  .trust-grid,
  .docs-grid,
  .platform-grid,
  .quick-steps {
    grid-template-columns: 1fr;
  }

  .capability,
  .trust-card,
  .doc-card,
  .quick-step {
    min-height: 0;
    padding: 22px;
  }

  .local-flow {
    margin: 0 8px;
  }

  .data-table th,
  .data-table td {
    min-width: 190px;
    padding: 13px 14px;
  }

  .price-layout {
    gap: 12px;
  }

  .price-card,
  .platform-card {
    padding: 22px;
  }

  .requirement-row {
    grid-template-columns: 1fr;
  }

  .requirement-row span + span {
    padding-top: 0;
    border-left: 0;
    color: var(--muted);
  }

  .docs-search {
    grid-template-columns: 1fr;
  }

  .docs-search output {
    min-height: 38px;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .support-layout {
    border-right: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
  }

  .cta-panel {
    display: block;
    padding: 26px 20px;
  }

  .cta-panel h2 {
    font-size: 51px;
  }

  .cta-panel .button {
    margin-top: 24px;
  }

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

  .footer-links a,
  .footer-links a:nth-child(2n) {
    border-right: 0;
  }

  .footer-meta {
    display: grid;
    justify-content: start;
  }
}

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

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