:root {
  --paper: #f2f0e9;
  --paper-deep: #e8e5dc;
  --ink: #151b1e;
  --ink-soft: #536064;
  --line: rgba(21, 27, 30, 0.2);
  --signal: #ff4e38;
  --signal-dark: #d93623;
  --acid: #d8ff66;
  --white: #fffefa;
  --max-width: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --sans: "Helvetica Neue", "Neue Haas Grotesk Text Pro", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

::selection {
  color: var(--white);
  background: var(--signal);
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 15;
  width: 100%;
  min-height: 76px;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header-inner {
  display: flex;
  width: 100%;
  max-width: var(--max-width);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: center;
  justify-content: space-between;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(242, 240, 233, 0.91);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  overflow: visible;
}

.brand-mark .glyph-curve {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 34;
}

.brand-mark .glyph-dot {
  fill: var(--signal);
  stroke: none;
}

.primary-nav {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  gap: 1.2rem;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  transition: background-color 180ms ease;
}

.nav-cta:hover {
  background: var(--signal);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  display: grid;
  min-height: 100svh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(7rem, 14vh, 9rem) var(--gutter) clamp(3rem, 7vh, 6rem);
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.76fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow,
.section-number,
.demo-kicker,
.network-label,
.token-row > span,
.result-heading span,
.legal-note {
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  margin: 0 0 2.5rem;
  gap: 0.8rem;
  align-items: center;
}

.eyebrow span {
  display: inline-block;
  width: 2.4rem;
  height: 2px;
  background: var(--signal);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3.35rem, min(6.5vw, 10vh), 7rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.hero h1 em {
  display: block;
  margin-top: 0.12em;
  color: var(--signal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88em;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.hero-intro {
  max-width: 650px;
  margin: 2.4rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  letter-spacing: -0.015em;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: 2.5rem;
  gap: 1.8rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0.9rem 1.1rem;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
}

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

.text-link {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-network {
  position: relative;
  width: min(620px, 114%);
  max-width: 620px;
  margin: 0;
  overflow: visible;
  align-self: center;
  justify-self: end;
}

.network-map {
  position: relative;
  aspect-ratio: 1;
  overflow: visible;
  isolation: isolate;
}

.network-map-svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.network-map-svg path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.mesh-secondary path {
  stroke: rgba(83, 96, 100, 0.58);
  stroke-dasharray: 3 8;
  stroke-width: 1.05;
  animation: network-mesh-drift 24s linear infinite;
}

.mesh-primary path {
  stroke: rgba(21, 27, 30, 0.68);
  stroke-width: 1;
}

.mesh-primary path:nth-child(2n) {
  stroke: rgba(21, 27, 30, 0.48);
}

.packet-in {
  fill: var(--signal);
}

.packet-out {
  fill: #1d9d63;
}

.map-entity {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  padding: 0.4rem 0.55rem;
  gap: 0.4rem;
  align-items: center;
  border: 1px solid var(--ink);
  background: var(--white);
  font-family: var(--mono);
  font-size: 0.51rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.map-entity i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--ink);
  border-radius: 50%;
  animation: map-node-signal 6s ease-in-out infinite;
  animation-delay: var(--node-delay, 0s);
}

.entity-a { top: 21.5%; left: 17.7%; --node-delay: -1s; }
.entity-b { top: 15.8%; left: 78.8%; --node-delay: -4.1s; }
.entity-c { top: 56.2%; left: 11.2%; --node-delay: -2.7s; }
.entity-d { top: 45.2%; left: 89.4%; --node-delay: -5.2s; }
.entity-e { top: 86.2%; left: 29.8%; --node-delay: -3.6s; }
.entity-f { top: 83.1%; left: 73.5%; --node-delay: -0.3s; }
.entity-g { top: 9.6%; left: 48.1%; --node-delay: -4.8s; }
.entity-h { top: 67.3%; left: 87.7%; --node-delay: -2s; }

.map-core {
  position: absolute;
  top: 51.9%;
  left: 54.2%;
  z-index: 3;
  display: flex;
  width: clamp(98px, 23%, 124px);
  aspect-ratio: 1;
  padding: 1rem;
  gap: 0.28rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.map-core::before {
  position: absolute;
  inset: -9px;
  border: 1px solid var(--signal);
  border-radius: 50%;
  content: "";
  animation: map-core-pulse 4.8s ease-in-out infinite;
}

.map-core svg {
  width: 30px;
  overflow: visible;
  fill: none;
}

.map-core svg .glyph-curve,
.orberis-node svg .glyph-curve {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-width: 34;
}

.map-core svg .glyph-dot,
.orberis-node svg .glyph-dot {
  fill: var(--signal);
  stroke: none;
}

.map-core strong,
.map-core span {
  font-family: var(--mono);
  line-height: 1.1;
}

.map-core strong {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.map-core span {
  color: #aeb8ba;
  font-size: 0.38rem;
  letter-spacing: 0.06em;
}

.demo-shell {
  position: relative;
  width: 100%;
  max-width: 530px;
  margin-left: auto;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--paper-deep), 15px 15px 0 var(--ink);
}

.demo-shell::before {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--signal);
}

.product-demo {
  border-bottom: 1px solid var(--ink);
  background: var(--paper-deep);
}

.product-demo-inner {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: minmax(300px, 0.72fr) minmax(530px, 1.15fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.product-demo-copy {
  position: sticky;
  top: 8rem;
  padding-top: 1rem;
}

.product-demo-copy h2 {
  max-width: 620px;
  margin: 1.5rem 0 1.75rem;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.067em;
  line-height: 0.94;
}

.product-demo-copy > p:not(.section-number) {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.product-demo-legend {
  display: grid;
  max-width: 500px;
  margin-top: 2.5rem;
  border-top: 1px solid var(--ink);
}

.product-demo-legend > button {
  display: grid;
  width: 100%;
  min-height: 64px;
  padding: 0.8rem 0;
  grid-template-columns: 42px 1fr;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: padding 180ms ease, background-color 180ms ease;
}

.product-demo-legend > button:hover,
.product-demo-legend > button.is-active {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  background: rgba(255, 78, 56, 0.07);
}

.product-demo-legend > button span {
  line-height: 1.35;
}

.product-demo-legend i {
  color: var(--signal-dark);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-style: normal;
}

.product-demo .demo-shell {
  max-width: 700px;
  margin-left: auto;
}

.demo-topbar {
  display: flex;
  padding-bottom: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.demo-kicker {
  margin: 0 0 0.3rem;
  color: var(--signal);
}

.demo-topbar h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.demo-status {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-status::before {
  width: 7px;
  height: 7px;
  content: "";
  background: #7a8589;
  border-radius: 50%;
}

.demo-status.is-running::before {
  background: #f5a623;
  animation: status-pulse 900ms ease infinite;
}

.demo-status.is-complete::before {
  background: #1d9d63;
}

.demo-disclosure {
  margin: 1rem 0 0;
  padding: 0.7rem 0.8rem;
  border-left: 3px solid var(--signal);
  color: var(--ink-soft);
  background: rgba(255, 78, 56, 0.07);
  font-size: 0.72rem;
  line-height: 1.45;
}

.demo-disclosure strong {
  color: var(--ink);
}

.demo-scenario {
  display: grid;
  margin: 1rem 0;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.scenario-option {
  min-height: 36px;
  padding: 0.4rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.scenario-option:last-child {
  border-right: 0;
}

.scenario-option:hover,
.scenario-option.is-active {
  color: var(--white);
  background: var(--ink);
}

.network {
  --lender-width: 158px;
  position: relative;
  display: grid;
  min-height: 192px;
  padding: 2.5rem 0.75rem 1rem;
  grid-template-columns: minmax(158px, 1fr) 64px minmax(118px, 0.8fr);
  align-items: center;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: -1px -1px;
}

.network::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, var(--white) 0, transparent 20%, transparent 80%, var(--white) 100%);
}

.network-label {
  position: absolute;
  top: 0.55rem;
  z-index: 2;
  color: var(--ink-soft);
  font-size: 0.55rem;
}

.label-left {
  left: 0.7rem;
}

.label-right {
  right: 0.7rem;
}

.lender-stack,
.network-paths,
.orberis-node {
  position: relative;
  z-index: 2;
}

.lender-stack {
  display: flex;
  gap: 0.4rem;
  flex-direction: column;
  grid-column: 1;
  grid-row: 1;
  z-index: 3;
}

.lender-node {
  display: grid;
  width: min(100%, var(--lender-width));
  min-height: 43px;
  padding: 0.38rem 0.5rem;
  grid-template-columns: 6px minmax(0, 1fr);
  grid-template-rows: auto 10px;
  column-gap: 0.5rem;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--mono);
  font-size: 0.58rem;
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.lender-node i {
  width: 6px;
  height: 6px;
  grid-row: 1 / 3;
  background: var(--ink);
  border-radius: 50%;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.lender-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lender-node small {
  display: flex;
  min-width: 0;
  gap: 0.28rem;
  align-items: center;
  color: var(--signal-dark);
  font-family: var(--mono);
  font-size: 0.43rem;
  letter-spacing: 0.02em;
  line-height: 1;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 220ms ease, transform 220ms ease;
  white-space: nowrap;
}

.lender-node small time {
  font-weight: 800;
}

.lender-node small span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.network.stage-1 .lender-node:nth-child(1),
.network.stage-2 .lender-node:nth-child(2),
.network.stage-3 .lender-node:nth-child(3) {
  border-color: var(--signal);
  transform: translateX(3px);
}

.network.stage-1 .lender-node:nth-child(1) i,
.network.stage-2 .lender-node:nth-child(2) i,
.network.stage-3 .lender-node:nth-child(3) i {
  background: var(--signal);
  box-shadow: 0 0 0 3px rgba(255, 78, 56, 0.15);
}

.network.stage-1 .lender-node:nth-child(1) small,
.network.stage-2 .lender-node:nth-child(2) small,
.network.stage-3 .lender-node:nth-child(3) small {
  opacity: 1;
  transform: translateY(0);
}

.network-paths {
  position: relative;
  height: calc(129px + 0.8rem);
  margin-left: var(--lender-width);
  align-self: center;
  grid-column: 1 / 3;
  grid-row: 1;
}

.connection-lines {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.connection-lines line {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 1;
}

.connection-lines [data-reveal] {
  width: 0;
}

.network-path {
  --start-y: calc(50% - 5px);
  --end-y: calc(50% - 5px);
  position: absolute;
  inset: 0;
  display: block;
}

[data-path="1"] {
  --start-y: calc(15% - 5px);
}

[data-path="3"] {
  --start-y: calc(85% - 5px);
}

.network-path b,
.network-path em {
  position: absolute;
  top: var(--start-y);
  display: block;
  width: 10px;
  height: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  color: transparent;
  background: var(--signal);
  box-shadow: none;
  font-size: 0;
  font-style: normal;
  opacity: 0;
}

.network-path b {
  left: -5px;
}

.network-path em {
  right: -5px;
  background: var(--acid);
  box-shadow: none;
}

.network.stage-1 [data-reveal="1"],
.network.stage-2 [data-reveal="2"],
.network.stage-3 [data-reveal="3"] {
  animation: draw-path 920ms cubic-bezier(0.35, 0, 0.25, 1) both;
}

.network.stage-1 [data-path="1"] b,
.network.stage-2 [data-path="2"] b,
.network.stage-3 [data-path="3"] b {
  animation: packet-to-engine 920ms cubic-bezier(0.35, 0, 0.25, 1) both;
}

.network.is-responding [data-path="3"] em {
  animation: response-to-lender 760ms cubic-bezier(0.35, 0, 0.25, 1) both;
}

.orberis-node {
  display: flex;
  min-height: 96px;
  padding: 0.8rem;
  gap: 0.55rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
  grid-column: 3;
  grid-row: 1;
  text-align: center;
  z-index: 3;
  transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.orberis-node svg {
  width: 32px;
  fill: none;
}

.orberis-node span {
  font-family: var(--mono);
  font-size: 0.55rem;
}

.network.is-detecting .orberis-node {
  background: var(--ink);
  box-shadow: none;
}

.network.is-detecting:not(.is-complete) .orberis-node svg {
  animation: engine-detect 800ms ease both;
}

.network.is-detecting:not(.is-complete) .orberis-node svg .glyph-dot {
  animation: engine-glyph-dot-detect 800ms ease both;
}

.network.is-complete .orberis-node svg .glyph-dot {
  fill: #1d9d63;
  transform-box: fill-box;
  transform-origin: center;
  animation: engine-glyph-confirm 620ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.network.is-complete .orberis-node {
  background: var(--ink);
}

.network.is-complete .orberis-node span {
  animation: engine-label-in 420ms 120ms ease-out both;
}

.token-row {
  position: relative;
  display: flex;
  min-height: 34px;
  padding: 0.55rem 0;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.token-row > * {
  position: relative;
  z-index: 1;
}

.token-row > span {
  color: var(--ink-soft);
  font-size: 0.52rem;
}

.token-row code {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.token-row.is-protecting {
  animation: identity-protect 1.15s ease both;
}

.token-row.is-encrypting::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24%;
  z-index: 0;
  width: 24%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 78, 56, 0.2), transparent);
  animation: identity-scan 1.05s linear both;
}

.token-row.is-encrypting > span,
.token-row.is-encrypting code {
  color: var(--signal-dark);
}

.token-row.is-protected code {
  color: var(--signal-dark);
}

.result-panel {
  min-height: 181px;
  margin-top: 1rem;
  border: 1px solid var(--ink);
}

.result-empty {
  position: relative;
  display: grid;
  min-height: 179px;
  padding: 1rem;
  place-items: center;
  color: var(--ink-soft);
  text-align: center;
}

.result-empty p {
  max-width: 240px;
  font-family: var(--mono);
  font-size: 0.65rem;
}

.scan-corner {
  position: absolute;
  width: 18px;
  height: 18px;
}

.corner-a {
  top: 0.7rem;
  left: 0.7rem;
  border-top: 1px solid var(--signal);
  border-left: 1px solid var(--signal);
}

.corner-b {
  right: 0.7rem;
  bottom: 0.7rem;
  border-right: 1px solid var(--signal);
  border-bottom: 1px solid var(--signal);
}

.result-content {
  min-height: 179px;
  padding: 0.85rem;
  animation: result-in 260ms ease both;
}

.result-content[hidden],
.result-empty[hidden] {
  display: none;
}

.result-heading {
  display: flex;
  padding-bottom: 0.7rem;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.result-heading span:not(.signal-badge) {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.5rem;
}

.result-heading strong {
  display: block;
  max-width: 260px;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.signal-badge {
  padding: 0.3rem 0.4rem;
  color: var(--white);
  background: var(--signal);
  font-size: 0.5rem;
}

.metric-list {
  padding: 0.45rem 0;
}

.metric-list > div {
  display: flex;
  padding: 0.22rem 0;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.59rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.result-content.is-building .metric-list > div {
  opacity: 0;
  transform: translateY(7px);
}

.result-content.is-building .metric-list > div.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.metric-list span {
  color: var(--ink-soft);
}

.run-query {
  display: flex;
  width: 100%;
  min-height: 50px;
  margin-top: 0.8rem;
  padding: 0 1rem;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: var(--white);
  background: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.run-query:hover:not(:disabled) {
  background: var(--signal);
}

.run-query:disabled {
  cursor: wait;
}

.run-icon {
  font-size: 1.2rem;
}

.context-band {
  display: flex;
  min-height: 180px;
  padding: 2.5rem var(--gutter);
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
  background: var(--signal);
}

.context-band p {
  max-width: 880px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.context-band p strong {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.context-band > span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
}

.section-intro {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto clamp(3rem, 6vw, 6rem);
  grid-template-columns: 0.55fr 1.3fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: start;
}

.section-number {
  margin: 0;
  color: var(--signal-dark);
}

.section-intro h2,
.privacy-heading h2,
.pilot-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-intro > p:last-child {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.signal-ledger {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}

.signal-row {
  display: grid;
  min-height: 205px;
  padding: clamp(1.75rem, 3vw, 3rem) 0;
  grid-template-columns: 0.18fr 1.05fr 0.65fr;
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.signal-index {
  align-self: start;
  color: var(--signal-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.signal-copy h3 {
  max-width: 700px;
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.signal-copy p {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
}

.signal-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 340px);
  min-height: 132px;
  border: 1px solid var(--line);
  background-color: var(--white);
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 20px 20px;
}

.visibility-visual {
  display: grid;
  padding: 1.2rem;
  grid-template-columns: 0.85fr auto 1.15fr;
  gap: 0.6rem;
  align-content: center;
  align-items: center;
}

.isolated-card,
.network-card {
  display: grid;
  min-height: 74px;
  padding: 0.65rem;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--ink);
  background: var(--white);
  font-family: var(--mono);
}

.isolated-card small {
  font-size: 0.5rem;
  letter-spacing: 0.06em;
}

.isolated-card > i {
  display: block;
  width: 10px;
  height: 10px;
  margin-top: 0.65rem;
  border-radius: 50%;
  background: var(--ink);
}

.network-card {
  color: var(--white);
  background: var(--ink);
}

.network-card > strong {
  margin-top: 0.4rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.visibility-visual > b {
  color: var(--signal);
  font-size: 1.2rem;
  font-weight: 400;
}

.network-mini {
  width: 54px;
  height: auto;
  overflow: visible;
}

.network-mini path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.network-mini .network-mini-spokes {
  stroke: rgba(255, 255, 255, 0.42);
}

.network-mini circle {
  fill: var(--signal);
  stroke: var(--ink);
  stroke-width: 1.5;
}

.network-mini .network-mini-success {
  fill: #1d9d63;
}

.network-mini .network-mini-core {
  fill: var(--ink);
  stroke: var(--white);
  stroke-width: 2;
}

.priority-visual {
  display: flex;
  padding: 1.2rem;
  align-items: center;
}

.priority-case-list {
  display: grid;
  width: 100%;
  gap: 0.3rem;
}

.priority-case-list > span {
  display: grid;
  min-height: 23px;
  padding: 0.25rem 0.45rem;
  grid-template-columns: 7px auto 1fr;
  gap: 0.45rem;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.06em;
}

.priority-case-list i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.priority-case-list b {
  font-weight: 500;
}

.priority-case-list strong {
  justify-self: end;
  color: var(--signal-dark);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.priority-case-list .priority-case-active {
  border-color: var(--signal);
}

.priority-case-active i {
  background: var(--signal);
}

.model-visual {
  display: grid;
  padding: 1.2rem;
  grid-template-columns: minmax(144px, 1fr) auto auto;
  gap: 0.55rem;
  align-content: center;
  align-items: center;
}

.decision-output {
  padding: 0.45rem 0.5rem;
  font-family: var(--mono);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

.decision-output {
  color: var(--white);
  border: 1px solid var(--ink);
  background: var(--ink);
}

.model-visual > i {
  color: var(--signal);
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1;
}

.decision-engine {
  display: grid;
  min-width: 148px;
  justify-items: center;
}

.decision-layers {
  display: grid;
  width: 142px;
  justify-items: center;
}

.decision-layers > span {
  position: relative;
  width: 130px;
  padding: 0.25rem 0.4rem;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 3px 3px 0 var(--paper-deep);
  font-family: var(--mono);
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-align: center;
}

.decision-layers > span + span {
  margin-top: -1px;
}

.decision-layers > span:nth-child(1) {
  transform: translateX(9px);
}

.decision-layers > span:nth-child(2) {
  transform: translateX(6px);
}

.decision-layers > span:nth-child(3) {
  transform: translateX(3px);
}

.decision-layers > .decision-signal-layer {
  z-index: 1;
  width: 142px;
  color: var(--white);
  border-color: var(--signal);
  background: var(--signal);
  box-shadow: 3px 3px 0 rgba(255, 78, 56, 0.2);
}

.decision-engine > small {
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.42rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.flow-section {
  color: var(--white);
  background: var(--ink);
}

.section-intro.light .section-number,
.section-intro.light > p:last-child {
  color: #b8c0c2;
}

.flow-list {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.flow-list li {
  display: grid;
  min-height: 360px;
  padding: 1.5rem;
  grid-template-rows: auto 1fr auto;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

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

.flow-number {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.flow-list li > div {
  align-self: end;
}

.flow-list h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.flow-list p {
  margin: 0;
  color: #aeb8ba;
  font-size: 0.92rem;
}

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

.privacy-heading {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto clamp(4rem, 8vw, 8rem);
  grid-template-columns: 0.55fr 2.15fr;
  gap: clamp(1.5rem, 4vw, 5rem);
}

.privacy-heading h2 {
  max-width: 950px;
}

.privacy-summary {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.privacy-layout {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 7vw, 8rem);
}

.privacy-diagram {
  display: grid;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: 1fr auto 1fr auto 1.15fr;
  gap: 0.5rem;
  align-items: center;
  border: 1px solid var(--ink);
  background: var(--white);
}

.privacy-step {
  display: flex;
  min-height: 130px;
  padding: 0.75rem;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
}

.privacy-step > span {
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.06em;
}

.privacy-step strong {
  font-size: 0.85rem;
  letter-spacing: -0.025em;
}

.privacy-step small {
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.6rem;
  line-height: 1.3;
}

.privacy-transform {
  color: var(--white);
  background: var(--ink);
}

.privacy-transform > span {
  color: #b8c0c2;
}

.privacy-store {
  border-color: var(--signal);
}

.privacy-connector {
  color: var(--signal);
}

.principles {
  border-top: 1px solid var(--ink);
}

.principle {
  display: grid;
  padding: 1.4rem 0;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.principle > span {
  color: var(--signal-dark);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.principle h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.principle p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal-note {
  max-width: var(--max-width);
  margin: clamp(3rem, 6vw, 6rem) auto 0;
  padding-top: 1.2rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: none;
}

.pilot {
  position: relative;
  display: flex;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--signal);
}

.vision-signal-field {
  position: absolute;
  display: grid;
  inset: 0;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: clamp(1rem, 2.6vw, 2.8rem);
  pointer-events: none;
  opacity: 0.62;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.82) 42%, transparent 88%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.82) 42%, transparent 88%);
}

.vision-signal-field > span {
  position: relative;
  width: clamp(9px, 1.15vw, 18px);
  height: 2px;
  align-self: center;
  justify-self: center;
  opacity: 0.14;
  transform: rotate(var(--signal-angle)) scaleX(var(--signal-stretch));
  animation: vision-signal-align 12s ease-in-out infinite;
}

.vision-signal-field > span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.88);
  animation: vision-signal-pulse 3.2s ease-in-out infinite;
  animation-delay: var(--signal-delay);
}

.vision-signal-field > span.is-accent::after {
  background: var(--acid);
}

.pilot-copy {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 clamp(1.25rem, 2vw, 2rem);
}

.pilot-copy .section-number {
  grid-column: 1 / 3;
  color: var(--white);
}

.pilot-copy h2 {
  max-width: 1160px;
  margin-top: 0;
  grid-column: 3 / -1;
  font-size: clamp(4rem, 7.2vw, 7.5rem);
}

.pilot-copy > p:not(.section-number) {
  max-width: 650px;
  margin: clamp(2rem, 4vw, 3.5rem) 0;
  grid-column: 7 / -1;
  font-size: 1.1rem;
}

.integration-strip {
  display: grid;
  margin: 0 0 2.5rem;
  grid-column: 3 / -1;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.integration-strip span {
  padding: 0.9rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-align: center;
  text-transform: uppercase;
}

.integration-strip span:last-child {
  border-right: 0;
}

.pilot-copy > .button {
  grid-column: 3 / span 3;
  justify-self: start;
}

.button-light {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.site-footer {
  display: grid;
  min-height: 140px;
  padding: 2.5rem var(--gutter);
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  color: #b8c0c2;
  background: var(--ink);
  font-size: 0.7rem;
}

.footer-brand {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes draw-path {
  from { width: 0; }
  to { width: 100px; }
}

@keyframes packet-to-engine {
  0% { left: -5px; top: var(--start-y); opacity: 1; transform: scale(0.85); }
  85% { opacity: 1; }
  100% { left: calc(100% - 5px); top: var(--end-y); opacity: 0; transform: scale(1); }
}

@keyframes response-to-lender {
  0% { right: -5px; top: var(--end-y); opacity: 0; transform: scale(0.85); }
  15% { opacity: 1; }
  80% { opacity: 1; }
  100% { right: calc(100% - 5px); top: var(--start-y); opacity: 0; transform: scale(1); }
}

@keyframes engine-detect {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.12); }
}

@keyframes engine-ring-detect {
  0%, 100% { opacity: 1; stroke-width: 2; }
  45% { opacity: 0.45; stroke-width: 3.5; }
}

@keyframes engine-confirm {
  0% { opacity: 0.35; stroke: var(--signal); stroke-width: 3.5; transform: scale(0.72); }
  48% { opacity: 1; stroke: #1d9d63; stroke-width: 3; transform: scale(1.35); }
  100% { opacity: 1; stroke: #1d9d63; stroke-width: 2; transform: scale(1); }
}

@keyframes engine-glyph-dot-detect {
  0%, 100% { opacity: 1; transform: scale(1); }
  45% { opacity: 0.42; transform: scale(1.45); }
}

@keyframes engine-glyph-confirm {
  0% { opacity: 0.35; fill: var(--signal); transform: scale(0.72); }
  48% { opacity: 1; fill: #1d9d63; transform: scale(1.45); }
  100% { opacity: 1; fill: #1d9d63; transform: scale(1); }
}

@keyframes engine-label-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes identity-protect {
  0% { background: transparent; }
  45% { background: rgba(255, 78, 56, 0.12); }
  100% { background: transparent; }
}

@keyframes identity-scan {
  to { transform: translateX(520%); }
}

@keyframes status-pulse {
  50% { opacity: 0.35; }
}

@keyframes result-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes vision-signal-align {
  0%, 18%, 100% {
    opacity: 0.12;
    transform: rotate(var(--signal-angle)) scaleX(var(--signal-stretch));
  }
  46%, 64% {
    opacity: 0.42;
    transform: rotate(0deg) scaleX(1.65);
  }
}

@keyframes vision-signal-pulse {
  0%, 100% { opacity: 0.24; }
  48% { opacity: 1; }
}

@keyframes network-mesh-drift {
  to { stroke-dashoffset: -110; }
}

@keyframes map-node-signal {
  0%, 72%, 100% { background: var(--ink); transform: scale(1); }
  80% { background: var(--signal); transform: scale(1.5); }
  88% { background: #1d9d63; transform: scale(1); }
}

@keyframes map-core-pulse {
  0%, 70%, 100% { opacity: 0.4; transform: scale(1); }
  82% { opacity: 1; transform: scale(1.07); }
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-network {
    width: 100%;
    max-width: 680px;
    margin: 0;
    justify-self: start;
  }

  .demo-shell {
    max-width: 680px;
    margin: 0;
  }

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

  .product-demo-copy {
    position: static;
    max-width: 760px;
    padding-top: 0;
  }

  .product-demo .demo-shell {
    max-width: 700px;
    margin: 0;
  }

  .section-intro {
    grid-template-columns: 0.45fr 1.55fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
  }

  .signal-row {
    grid-template-columns: 60px 1fr 0.7fr;
  }

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

  .pilot-copy .section-number {
    grid-column: 1 / 2;
  }

  .pilot-copy h2 {
    grid-column: 2 / -1;
  }

  .pilot-copy > p:not(.section-number) {
    grid-column: 5 / -1;
  }

  .integration-strip {
    grid-column: 2 / -1;
  }

  .pilot-copy > .button {
    grid-column: 2 / span 4;
  }
}

@media (max-width: 800px) {
  .site-header,
  .site-header-inner {
    min-height: 66px;
  }

  .menu-toggle {
    display: flex;
    padding: 0.5rem 0;
    gap: 0.65rem;
    align-items: center;
    cursor: pointer;
    font-family: var(--mono);
    font-size: 0.65rem;
    text-transform: uppercase;
  }

  .menu-lines,
  .menu-lines::after {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-lines::after {
    content: "";
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::after {
    transform: rotate(-90deg);
  }

  .primary-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    padding: 1.25rem var(--gutter) 1.5rem;
    gap: 1.1rem;
    align-items: stretch;
    flex-direction: column;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }

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

  .primary-nav > a:not(.nav-cta) {
    padding: 0.3rem 0;
  }

  .nav-cta {
    justify-content: space-between;
  }

  .hero {
    padding-top: 8rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 13vw, 5.4rem);
  }

  .context-band {
    gap: 2rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .section-intro,
  .privacy-heading {
    grid-template-columns: 1fr;
  }

  .section-intro > p:last-child {
    grid-column: 1;
  }

  .signal-row {
    grid-template-columns: 42px 1fr;
  }

  .signal-visual {
    grid-column: 2;
    justify-self: start;
  }

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

  .flow-list li:nth-child(2) {
    border-right: 0;
  }

  .flow-list li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .privacy-diagram {
    grid-template-columns: 1fr;
  }

  .privacy-step {
    min-height: 100px;
  }

  .privacy-connector {
    justify-self: center;
    transform: rotate(90deg);
  }

  .pilot {
    padding-top: 4rem;
  }

  .vision-signal-field {
    padding-right: 1rem;
    padding-left: 1rem;
    grid-template-columns: repeat(10, 1fr);
    opacity: 0.48;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.65) 58%, transparent 92%);
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.65) 58%, transparent 92%);
  }

  .vision-signal-field > span:nth-child(n + 71) {
    display: none;
  }

  .pilot-copy {
    display: block;
    max-width: 650px;
  }

  .pilot-copy h2 {
    margin-top: 2rem;
  }

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

@media (max-width: 540px) {
  .hero {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14.3vw, 4.4rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

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

  .button,
  .text-link {
    width: 100%;
  }

  .text-link {
    display: flex;
    justify-content: space-between;
  }

  .demo-shell {
    padding: 0.8rem;
    box-shadow: 7px 7px 0 var(--paper-deep), 8px 8px 0 var(--ink);
  }

  .map-entity {
    min-height: 25px;
    padding: 0.3rem 0.4rem;
    gap: 0.3rem;
    font-size: 0.4rem;
  }

  .map-core {
    width: 28%;
    min-width: 86px;
    padding: 0.7rem;
  }

  .map-core svg {
    width: 24px;
  }

  .map-core strong {
    font-size: 0.52rem;
  }

  .map-core span {
    font-size: 0.32rem;
  }

  .demo-topbar {
    gap: 0.75rem;
  }

  .demo-status {
    max-width: 92px;
    text-align: right;
  }

  .scenario-option {
    font-size: 0.51rem;
  }

  .network {
    --lender-width: 126px;
    min-height: 188px;
    grid-template-columns: minmax(104px, 1fr) 42px minmax(90px, 0.8fr);
  }

  .lender-node {
    width: min(100%, var(--lender-width));
    min-width: 104px;
    padding: 0.35rem 0.4rem;
    column-gap: 0.35rem;
    font-size: 0.49rem;
  }

  .lender-node small {
    gap: 0.2rem;
    font-size: 0.38rem;
  }

  .lender-node small span {
    display: none;
  }

  .orberis-node {
    min-height: 88px;
    padding: 0.5rem;
  }

  .token-row {
    gap: 0.5rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section-intro h2,
  .privacy-heading h2,
  .pilot-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .signal-row {
    grid-template-columns: 28px 1fr;
  }

  .signal-visual {
    width: 100%;
  }

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

  .integration-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    text-align: left;
  }

  .integration-strip span:last-child {
    border-bottom: 0;
  }

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

  .flow-list li {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

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

  .privacy-heading {
    margin-bottom: 3rem;
  }

  .privacy-diagram {
    padding: 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

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

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

  .network-packets {
    display: none;
  }
}
