:root {
  --ink: #11110f;
  --ink-soft: #1a1a17;
  --paper: #f4f2ea;
  --paper-deep: #e8e6dc;
  --acid: #c9ff2e;
  --blue: #2457ff;
  --coral: #ff5a36;
  --mist: #d7d6cf;
  --dim: #8a8983;
  --line-dark: rgba(17, 17, 15, 0.18);
  --line-light: rgba(244, 242, 234, 0.2);
  --radius: 22px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --shell: min(1480px, calc(100vw - 96px));
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
  font: inherit;
}

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--acid);
  font: 800 12px/1 var(--mono);
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 46px;
  padding: 0 max(32px, calc((100vw - 1480px) / 2));
  color: var(--paper);
  background: rgba(17, 17, 15, 0.86);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(17, 17, 15, 0.96);
}

.brand {
  width: 100px;
  color: var(--paper);
  text-decoration: none;
}

.brand svg {
  overflow: visible;
}

.brand text {
  fill: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -3px;
}

.brand circle {
  fill: var(--acid);
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: var(--mist);
  font: 750 11px/1 var(--mono);
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.site-nav a:hover {
  color: var(--paper);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  padding: 12px 14px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 7px;
  transition: transform 180ms ease, background 180ms ease;
}

.site-nav .nav-cta:hover {
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-2px);
}

.locale-switcher {
  display: flex;
  align-items: center;
  padding-left: 22px;
  border-left: 1px solid var(--line-light);
}

.locale-switcher button {
  min-width: 35px;
  min-height: 35px;
  padding: 0;
  color: var(--dim);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font: 800 10px/1 var(--mono);
  transition: color 150ms ease, background 150ms ease;
}

.locale-switcher button:hover {
  color: var(--paper);
}

.locale-switcher button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--acid);
}

.menu-toggle {
  display: none;
}

main {
  overflow: clip;
}

section {
  scroll-margin-top: 65px;
}

.hero {
  position: relative;
  min-height: max(900px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, 0.97fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(48px, 6vw, 112px);
  row-gap: 60px;
  align-items: center;
  padding: calc(var(--header-height) + 88px) max(48px, calc((100vw - 1480px) / 2)) 50px;
  color: var(--paper);
  background: var(--ink);
  isolation: isolate;
}

.hero-grid,
.pilot-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(244, 242, 234, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 234, 0.11) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, #000, transparent 68%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(201, 255, 46, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 820px;
  height: 820px;
  top: 5%;
  right: -350px;
}

.hero-orbit-two {
  width: 570px;
  height: 570px;
  top: 18%;
  right: -220px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 780px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--mist);
  font: 750 11px/1.3 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #55544f;
}

.status-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 255, 46, 0.13);
}

.status-dot-dark {
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(17, 17, 15, 0.12);
}

.hero h1 {
  margin-bottom: 36px;
  max-width: 900px;
  font-size: clamp(68px, 7.3vw, 126px);
  font-weight: 900;
  letter-spacing: -0.078em;
  line-height: 0.8;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent {
  color: var(--acid);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 36px;
  color: var(--mist);
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.hero-actions,
.pilot-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-acid {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 0 0 rgba(201, 255, 46, 0);
}

.button-acid:hover {
  box-shadow: 0 12px 30px rgba(201, 255, 46, 0.16);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-arrow {
  font-size: 19px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span:last-child {
  transition: transform 180ms ease;
}

.text-link:hover span:last-child {
  transform: translate(3px, -3px);
}

.text-link-dark {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: center;
  min-height: 640px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(36, 87, 255, 0.23), transparent 37%),
    #181815;
  border: 1px solid var(--line-light);
  border-radius: 4px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.24);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 58px 0 50px;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(244, 242, 234, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 234, 0.16) 1px, transparent 1px);
  background-size: 32px 32px;
}

.registration-corner {
  position: absolute;
  z-index: 4;
  width: 26px;
  height: 26px;
}

.registration-corner::before,
.registration-corner::after {
  content: "";
  position: absolute;
  background: var(--acid);
}

.registration-corner::before {
  width: 26px;
  height: 2px;
}

.registration-corner::after {
  width: 2px;
  height: 26px;
}

.registration-corner-tl { top: 11px; left: 11px; }
.registration-corner-tr { top: 11px; right: 11px; transform: rotate(90deg); }
.registration-corner-bl { bottom: 11px; left: 11px; transform: rotate(-90deg); }
.registration-corner-br { right: 11px; bottom: 11px; transform: rotate(180deg); }

.visual-topline,
.visual-footer {
  position: absolute;
  z-index: 5;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 30px;
  color: var(--mist);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-topline {
  top: 0;
  height: 59px;
  border-bottom: 1px solid var(--line-light);
}

.visual-footer {
  bottom: 0;
  height: 51px;
  border-top: 1px solid var(--line-light);
}

.micro-label {
  font: 750 10px/1.3 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 99px;
}

.status-pill i {
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
}

.jersey-stage {
  position: absolute;
  z-index: 2;
  inset: 72px 20px 50px;
  display: grid;
  place-items: center;
}

.jersey {
  height: 510px;
  transform: rotate(-2deg);
  animation: jersey-float 5s ease-in-out infinite;
}

@keyframes jersey-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-9px) rotate(-1deg); }
}

.jersey-axis {
  position: absolute;
  color: rgba(244, 242, 234, 0.35);
  font: 650 8px/1 var(--mono);
  letter-spacing: 0.1em;
}

.jersey-axis-x {
  right: 0;
  bottom: 45px;
}

.jersey-axis-y {
  top: 80px;
  left: -8px;
  transform: rotate(-90deg);
}

.config-card {
  position: absolute;
  z-index: 6;
  right: 22px;
  bottom: 80px;
  width: min(220px, 38%);
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(244, 242, 234, 0.95);
  border-radius: 9px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.config-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-dark);
  font: 650 9px/1.1 var(--mono);
  text-transform: uppercase;
}

.config-row:last-child {
  border: 0;
}

.config-row span {
  color: #6d6c66;
}

.config-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gate-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--acid);
}

.gate-check i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-style: normal;
}

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

.hero-proof > div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 0 24px;
  border-right: 1px solid var(--line-light);
}

.hero-proof > div:first-child {
  padding-left: 0;
}

.hero-proof > div:last-child {
  border: 0;
}

.hero-proof strong {
  color: var(--paper);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.hero-proof span {
  color: var(--dim);
  font: 650 10px/1.4 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.process-ticker {
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.ticker-track {
  width: max-content;
  min-width: 200%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 42px;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  font: 850 12px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-track i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--ink);
  border-radius: 50%;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(96px, 9vw, 160px) 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.58fr);
  column-gap: clamp(36px, 7vw, 120px);
  margin-bottom: clamp(60px, 7vw, 110px);
}

.section-heading .eyebrow {
  grid-row: 1 / span 2;
  align-self: start;
  padding-top: 13px;
}

.section-heading h2,
.pilot-section h2 {
  margin-bottom: 32px;
  max-width: 1040px;
  font-size: clamp(48px, 6.4vw, 96px);
  font-weight: 880;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.section-lead {
  max-width: 810px;
  margin-bottom: 0;
  color: #55544f;
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.38;
  letter-spacing: -0.025em;
}

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

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.workflow-steps {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.workflow-step {
  position: relative;
  width: 100%;
  min-height: 132px;
  display: grid;
  grid-template-columns: 125px minmax(150px, 0.6fr) minmax(240px, 1fr) 150px;
  align-items: center;
  gap: 24px;
  padding: 20px 18px;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.workflow-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--acid);
  transform: scaleY(0);
  transition: transform 180ms ease;
}

.workflow-step:hover,
.workflow-step.is-active {
  padding-right: 24px;
  padding-left: 28px;
  background: var(--ink);
  color: var(--paper);
}

.workflow-step.is-active::before {
  transform: scaleY(1);
}

.step-index,
.step-status {
  font: 750 10px/1.3 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.step-index {
  color: var(--dim);
}

.workflow-step strong {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.step-body {
  color: #66655f;
  font-size: 15px;
  line-height: 1.5;
}

.workflow-step:hover .step-body,
.workflow-step.is-active .step-body {
  color: var(--mist);
}

.step-status {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #55544f;
  text-align: right;
}

.step-status i {
  width: 8px;
  height: 8px;
  background: var(--dim);
  border-radius: 50%;
}

.workflow-step:hover .step-status,
.workflow-step.is-active .step-status {
  color: var(--acid);
}

.workflow-step:hover .step-status i,
.workflow-step.is-active .step-status i {
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(201, 255, 46, 0.12);
}

.workflow-panel {
  position: sticky;
  top: 92px;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--paper);
  background: var(--blue);
  border-radius: var(--radius);
  overflow: hidden;
  touch-action: pan-y;
}

.workflow-panel::after {
  content: "";
  position: absolute;
  right: -45%;
  bottom: -20%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.035), 0 0 0 130px rgba(255, 255, 255, 0.025);
}

.panel-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.panel-id {
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.05em;
}

.panel-state-visual {
  position: relative;
  z-index: 2;
  min-height: 338px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 0;
}

.state-rings {
  position: absolute;
  top: 42px;
  right: 20px;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
}

.state-rings i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.state-rings i:nth-child(1) { inset: 0; }
.state-rings i:nth-child(2) { inset: 21px; }
.state-rings i:nth-child(3) { inset: 42px; background: var(--acid); border: 0; }

.state-rings span {
  position: relative;
  z-index: 2;
  color: var(--ink);
  font: 900 26px/1 var(--mono);
}

.state-kicker {
  margin-bottom: 13px;
  color: #b9c6ff;
  font: 750 10px/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.panel-state-visual strong {
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.panel-state-visual p {
  max-width: 38ch;
  margin: 18px 0 0;
  color: #dbe1ff;
  font-size: 15px;
}

.panel-timeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.panel-timeline button {
  position: relative;
  min-width: 0;
  min-height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.panel-timeline button::before {
  content: "";
  position: absolute;
  inset: 20px 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.panel-timeline button:hover::before,
.panel-timeline button:focus-visible::before {
  background: rgba(255, 255, 255, 0.52);
  transform: scaleY(1.5);
}

.panel-timeline button:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

.panel-timeline button.is-complete::before {
  background: var(--acid);
}

.panel-timeline button.is-active::before {
  box-shadow: 0 0 0 3px rgba(201, 255, 46, 0.2);
}

.panel-complete {
  position: relative;
  z-index: 2;
  display: none;
  margin: 0 0 20px;
  color: var(--acid);
  font: 750 11px/1.5 var(--mono);
  text-transform: uppercase;
}

.workflow-panel.is-complete .panel-complete {
  display: block;
}

.workflow-panel .button {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
}

.benefits-section {
  color: var(--paper);
  background: var(--blue);
}

.section-heading-light .section-lead {
  color: #dbe1ff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(28px, 3vw, 44px);
  border-radius: var(--radius);
}

.benefit-card-paper {
  color: var(--ink);
  background: var(--paper);
}

.benefit-card-acid {
  color: var(--ink);
  background: var(--acid);
}

.benefit-card-dark {
  color: var(--paper);
  background: var(--ink);
}

.benefit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid currentColor;
}

.card-number {
  font: 850 12px/1 var(--mono);
}

.benefit-card h3 {
  margin-bottom: 24px;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.benefit-card p {
  margin-bottom: 0;
  max-width: 45ch;
  color: inherit;
  font-size: 16px;
  opacity: 0.72;
}

.proof-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 750 10px/1.3 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-label i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
}

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

.integration-map {
  display: grid;
  grid-template-columns: 1fr 100px 1fr 100px 1fr;
  align-items: center;
  margin-bottom: 24px;
}

.map-node {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.map-node-engine {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.map-node-engine img,
.map-icon {
  width: 68px;
  height: 68px;
  margin-bottom: auto;
}

.map-icon {
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 18px;
  font: 900 30px/1 var(--mono);
}

.map-icon-output {
  color: var(--ink);
  background: var(--acid);
}

.map-node .micro-label {
  margin: 52px 0 18px;
  color: var(--dim);
}

.map-node h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.map-node p {
  margin: 0;
  color: var(--dim);
  font: 650 10px/1.4 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.map-connector {
  position: relative;
  height: 2px;
  background: var(--ink);
}

.map-connector::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  transform: rotate(45deg);
}

.map-connector i {
  position: absolute;
  top: -4px;
  left: 15%;
  width: 9px;
  height: 9px;
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 50%;
  animation: connector-move 2.4s ease-in-out infinite;
}

.map-connector span {
  position: absolute;
  top: 12px;
  left: 50%;
  font: 750 9px/1 var(--mono);
  transform: translateX(-50%);
}

@keyframes connector-move {
  0%, 100% { left: 15%; }
  50% { left: 78%; }
}

.api-proof {
  display: grid;
  grid-template-columns: 1fr 1.35fr auto;
  align-items: center;
  gap: 40px;
  padding: 32px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.api-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  padding: 16px 18px;
  background: #242420;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  font: 650 10px/1.3 var(--mono);
  white-space: nowrap;
}

.api-code span {
  overflow: hidden;
  color: var(--mist);
  text-overflow: ellipsis;
}

.api-code strong {
  color: var(--acid);
}

.api-proof dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
}

.api-proof dl div {
  min-width: 0;
}

.api-proof dt {
  margin-bottom: 8px;
  color: var(--dim);
  font: 650 9px/1.3 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.api-proof dd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  overflow: hidden;
  font: 750 11px/1.3 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.api-proof dd i {
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
}

.api-proof .text-link {
  color: var(--acid);
  white-space: nowrap;
}

.pilot-section {
  position: relative;
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.65fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  padding: clamp(90px, 10vw, 170px) max(48px, calc((100vw - 1480px) / 2));
  background: var(--acid);
  isolation: isolate;
  overflow: hidden;
}

.pilot-grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(17, 17, 15, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.24) 1px, transparent 1px);
  mask-image: linear-gradient(to right, #000, #000 55%, transparent 88%);
}

.pilot-copy {
  position: relative;
  z-index: 2;
  max-width: 1040px;
}

.pilot-section h2 {
  font-size: clamp(54px, 6vw, 100px);
}

.pilot-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 36px;
  font-size: clamp(19px, 1.75vw, 27px);
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.pilot-note {
  display: block;
  margin-top: 40px;
  font: 750 10px/1.3 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  justify-self: end;
}

.contact-form {
  position: relative;
  scroll-margin-top: 90px;
  padding: clamp(26px, 3vw, 42px);
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 45px 90px rgba(17, 17, 15, 0.22);
}

.contact-form-heading {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-light);
}

.contact-form-heading .micro-label {
  display: block;
  margin-bottom: 14px;
  color: var(--acid);
}

.contact-form-heading h3 {
  margin-bottom: 14px;
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.contact-form-heading > p:last-child {
  margin: 0;
  color: var(--mist);
  font-size: 15px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  padding: 28px 0 22px;
}

.form-field {
  min-width: 0;
  display: grid;
  gap: 9px;
}

.form-field > span,
.form-consent,
.contact-form-actions > span {
  color: var(--mist);
  font: 700 10px/1.4 var(--mono);
  letter-spacing: 0.04em;
}

.form-field > span {
  text-transform: uppercase;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--paper);
  background: #242420;
  border: 1px solid rgba(244, 242, 234, 0.22);
  border-radius: 7px;
  font: 500 15px/1.4 var(--sans);
  transition: border-color 160ms ease, background 160ms ease;
}

.form-field select {
  appearance: auto;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7e7d76;
  opacity: 1;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: #2b2b26;
  border-color: var(--acid);
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
  cursor: pointer;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--acid);
}

.form-consent a {
  color: var(--acid);
  text-underline-offset: 3px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.contact-form-actions .button {
  flex: 0 0 auto;
}

.contact-form-actions > span {
  color: var(--dim);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.contact-status {
  min-height: 0;
  margin: 0;
  font: 750 11px/1.5 var(--mono);
}

.contact-status:not(:empty) {
  margin-top: 20px;
  padding: 13px 14px;
  border: 1px solid var(--line-light);
  border-radius: 7px;
}

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

.contact-status[data-state="error"] {
  color: #ff8b72;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(290px, 1fr) repeat(4, minmax(120px, auto));
  gap: clamp(28px, 3.6vw, 58px);
  padding: 78px max(48px, calc((100vw - 1480px) / 2)) 30px;
  color: var(--paper);
  background: var(--ink);
}

.brand-footer {
  display: block;
  width: 125px;
  margin-bottom: 26px;
}

.footer-brand p {
  max-width: 390px;
  margin: 0;
  color: var(--mist);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: var(--dim);
  font: 750 10px/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: var(--mist);
  font-size: 14px;
  text-decoration: none;
}

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

.footer-column a[aria-current="page"] {
  color: var(--acid);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-link .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 24px;
  color: var(--dim);
  border-top: 1px solid var(--line-light);
  font: 650 9px/1.4 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--acid);
}

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

.legal-page main {
  overflow: visible;
}

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

.legal-back {
  justify-self: end;
  color: var(--mist);
  font: 750 10px/1 var(--mono);
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-back::before {
  content: "←";
  margin-right: 10px;
  color: var(--acid);
}

.legal-back:hover {
  color: var(--paper);
}

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

.legal-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
  overflow: hidden;
  padding: calc(var(--header-height) + 110px) max(48px, calc((100vw - 1480px) / 2)) 74px;
  color: var(--paper);
  background: var(--ink);
  isolation: isolate;
}

.legal-hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(244, 242, 234, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 234, 0.11) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, #000, transparent 82%);
}

.legal-hero .eyebrow {
  margin-bottom: 32px;
}

.legal-hero h1 {
  max-width: 940px;
  margin-bottom: 28px;
  font-size: clamp(68px, 9vw, 150px);
  font-weight: 880;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.legal-lead {
  max-width: 740px;
  margin-bottom: 34px;
  color: var(--mist);
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.025em;
}

.legal-date {
  color: var(--dim);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-hero-mark {
  width: clamp(160px, 17vw, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 24%;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3);
  font: 900 clamp(50px, 6vw, 92px)/1 var(--mono);
  transform: rotate(4deg);
}

.legal-hero-imprint .legal-hero-mark {
  color: var(--paper);
  background: var(--blue);
  transform: rotate(-4deg);
}

.legal-layout {
  width: var(--shell);
  display: grid;
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  align-items: start;
  margin: 0 auto;
  padding: 100px 0 130px;
}

.legal-article {
  max-width: 920px;
}

.legal-section {
  padding: 0 0 62px;
  border-bottom: 1px solid var(--line-dark);
}

.legal-section + .legal-section {
  padding-top: 62px;
}

.legal-section h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.legal-section h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.legal-section p {
  max-width: 74ch;
  margin-bottom: 20px;
  color: #4d4c47;
  font-size: 17px;
  line-height: 1.7;
}

.legal-subsection {
  margin-top: 38px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
}

.legal-subsection p:last-child,
.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-subsection .legal-basis {
  margin: 9px 0 0;
  color: #62615b;
  font: 650 11px/1.55 var(--mono);
}

.legal-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin: 34px 0 0;
  padding: 1px;
  background: var(--line-dark);
  border-radius: 14px;
}

.legal-data-grid div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  background: var(--paper);
}

.legal-data-grid dt {
  color: var(--dim);
  font: 750 9px/1.35 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-data-grid dd {
  margin: 0;
  font-size: 16px;
  font-weight: 750;
}

.legal-data-grid a {
  text-underline-offset: 4px;
}

.legal-missing {
  width: fit-content;
  padding: 7px 9px;
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 5px;
  font: 780 9px/1.25 var(--mono) !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-external {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font: 780 11px/1.3 var(--mono);
  text-underline-offset: 5px;
}

.legal-external:hover {
  color: var(--blue);
}

.legal-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 8px;
}

.legal-link-list .legal-external {
  margin-top: 0;
}

.legal-section-final {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section-final .button {
  margin-top: 14px;
}

.legal-footer {
  grid-template-columns: minmax(320px, 1fr) 220px 220px;
}

noscript {
  position: fixed;
  z-index: 300;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 20px;
  color: var(--ink);
  background: var(--acid);
  text-align: center;
  font: 700 11px/1.4 var(--mono);
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 1900px) {
  :root {
    --shell: min(1640px, calc(100vw - 160px));
  }

  .site-header,
  .hero,
  .pilot-section,
  .site-footer {
    padding-right: max(80px, calc((100vw - 1640px) / 2));
    padding-left: max(80px, calc((100vw - 1640px) / 2));
  }

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

  .hero-visual {
    min-height: 720px;
  }

  .jersey {
    height: 585px;
  }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 56px, 1100px);
  }

  .site-header {
    gap: 25px;
    padding-inline: 28px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    column-gap: 38px;
    padding-inline: 28px;
  }

  .hero h1 {
    font-size: clamp(64px, 7.5vw, 90px);
  }

  .hero-visual {
    min-height: 600px;
  }

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

  .workflow-panel {
    position: relative;
    top: auto;
    min-height: 520px;
  }

  .workflow-step {
    grid-template-columns: 110px 0.65fr 1fr 150px;
  }

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

  .benefit-card:last-child {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .integration-map {
    grid-template-columns: 1fr 60px 1fr 60px 1fr;
  }

  .map-node {
    min-height: 330px;
    padding: 25px;
  }

  .api-proof {
    grid-template-columns: 1fr auto;
  }

  .api-proof dl {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .pilot-section {
    padding-inline: 36px;
  }

  .site-footer {
    grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(140px, 1fr));
    padding-inline: 36px;
  }

  .legal-hero {
    padding-inline: 36px;
  }
}

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

  .site-header {
    grid-template-columns: auto 1fr auto;
    height: var(--header-height);
  }

  .brand {
    width: 96px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    cursor: pointer;
  }

  .site-header:not(.legal-header) .menu-toggle {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: var(--paper);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 90px 34px;
    color: var(--paper);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    color: var(--paper);
    font-family: var(--sans);
    font-size: clamp(38px, 8vw, 68px);
    font-weight: 850;
    letter-spacing: -0.055em;
    text-transform: none;
  }

  .site-nav .nav-cta {
    margin-top: 16px;
    padding: 17px 20px;
    color: var(--ink);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .site-nav .locale-switcher {
    width: 100%;
    gap: 8px;
    margin-top: 12px;
    margin-right: 0;
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 58px;
    padding-top: 132px;
  }

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

  .hero h1 {
    font-size: clamp(70px, 13vw, 112px);
  }

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

  .hero-visual {
    width: min(100%, 720px);
    min-height: 690px;
    justify-self: center;
  }

  .hero-proof {
    grid-column: 1;
  }

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

  .section-heading .eyebrow {
    grid-row: auto;
  }

  .workflow-step {
    grid-template-columns: 90px 1fr 150px;
  }

  .step-body {
    display: none;
  }

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

  .benefit-card,
  .benefit-card:last-child {
    grid-column: auto;
    min-height: 470px;
  }

  .integration-map {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .map-node {
    min-height: 280px;
  }

  .map-node .micro-label {
    margin-top: 34px;
  }

  .map-connector {
    width: 2px;
    height: 62px;
    justify-self: center;
  }

  .map-connector::after {
    top: auto;
    right: -4px;
    bottom: -1px;
    transform: rotate(135deg);
  }

  .map-connector i {
    top: 15%;
    left: -4px;
    animation: connector-move-vertical 2.4s ease-in-out infinite;
  }

  .map-connector span {
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
  }

  @keyframes connector-move-vertical {
    0%, 100% { top: 15%; }
    50% { top: 78%; }
  }

  .api-proof {
    grid-template-columns: 1fr;
  }

  .api-proof dl {
    grid-row: auto;
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }

  .pilot-section {
    grid-template-columns: 1fr;
  }

  .contact-form-shell {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

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

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

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

  .legal-hero {
    min-height: 500px;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 36px);
    --radius: 17px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .site-header:not(.legal-header) .menu-toggle {
    right: 18px;
  }

  .legal-header .locale-switcher {
    margin-right: 0;
  }

  .legal-header .legal-back {
    display: none;
  }

  .locale-switcher button {
    min-width: 30px;
    min-height: 30px;
    font-size: 9px;
  }

  .hero {
    gap: 24px;
    padding: 92px 18px 28px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > * {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .hero-copy .eyebrow {
    order: 1;
    margin-bottom: 0;
  }

  .hero-grid {
    background-size: 28px 28px;
  }

  .hero h1 {
    order: 2;
    margin-bottom: 0;
    font-size: clamp(54px, 16vw, 76px);
    line-height: 0.85;
  }

  .hero-lead {
    order: 4;
    font-size: 18px;
  }

  .hero-actions {
    order: 5;
  }

  .hero-actions,
  .pilot-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    order: 3;
    min-height: 500px;
  }

  .visual-topline,
  .visual-footer {
    padding-inline: 18px;
  }

  .visual-topline .micro-label {
    display: none;
  }

  .jersey-stage {
    inset-inline: -25px;
  }

  .jersey {
    height: 430px;
  }

  .config-card {
    right: 14px;
    bottom: 70px;
    width: 48%;
  }

  .visual-footer > span:last-child {
    display: none;
  }

  .hero-proof {
    order: 6;
    grid-template-columns: 1fr;
  }

  .hero-proof > div,
  .hero-proof > div:first-child {
    min-height: 80px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero-proof > div:last-child {
    border-bottom: 0;
  }

  .ticker-track {
    height: 50px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 55px;
  }

  .section-heading h2,
  .pilot-section h2 {
    font-size: clamp(44px, 13.5vw, 68px);
  }

  .section-lead {
    font-size: 18px;
  }

  .workflow-step {
    min-height: 124px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 18px 12px;
  }

  .workflow-step:hover,
  .workflow-step.is-active {
    padding: 18px 16px 18px 22px;
  }

  .step-index {
    grid-column: 1;
  }

  .workflow-step strong {
    grid-column: 1;
    grid-row: 2;
    font-size: 22px;
  }

  .step-status {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: 120px;
    font-size: 9px;
  }

  .workflow-panel {
    min-height: 540px;
    padding: 22px;
  }

  .state-rings {
    right: -5px;
    width: 145px;
    height: 145px;
  }

  .panel-state-visual strong {
    font-size: 42px;
  }

  .benefit-card,
  .benefit-card:last-child {
    min-height: 440px;
  }

  .map-node {
    min-height: 300px;
  }

  .api-proof {
    padding: 22px;
  }

  .api-proof dl {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pilot-section {
    min-height: auto;
    padding: 88px 18px;
  }

  .pilot-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .contact-form {
    padding: 24px 20px;
  }

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

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

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

  .site-footer {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 65px 18px 26px;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 20px;
  }

  .legal-hero {
    min-height: 540px;
    grid-template-columns: 1fr;
    padding: 132px 18px 62px;
  }

  .legal-hero h1 {
    font-size: clamp(58px, 18vw, 78px);
  }

  .legal-hero-mark {
    position: absolute;
    right: -42px;
    bottom: -55px;
    width: 170px;
    opacity: 0.16;
  }

  .legal-layout {
    width: calc(100vw - 36px);
    padding: 70px 0 90px;
  }

  .legal-section {
    padding-bottom: 48px;
  }

  .legal-section + .legal-section {
    padding-top: 48px;
  }

  .legal-section h2 {
    font-size: 36px;
  }

  .legal-section p {
    font-size: 16px;
  }

  .legal-subsection {
    padding: 21px;
  }

  .legal-data-grid {
    grid-template-columns: 1fr;
  }

  .legal-data-grid div {
    min-height: 105px;
  }
}

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

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

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
