:root {
  --ink: #0b1217;
  --ink-soft: #27333b;
  --steel: #aeb9c1;
  --mist: #e8edf0;
  --paper: #f8faf9;
  --white: #ffffff;
  --signal: #ff5c35;
  --signal-dark: #c93718;
  --line: rgba(11, 18, 23, 0.18);
  --header-height: 86px;
  --gutter: clamp(22px, 4.6vw, 76px);
  --display: "Arial Narrow", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
a,
input,
select,
textarea {
  outline-color: transparent;
}

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

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

.topbar,
.docs-topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-name {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.11em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 54px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a,
.footer a,
.text-link {
  transition: color 160ms ease;
}

.nav a:hover,
.footer a:hover,
.text-link:hover {
  color: var(--signal);
}

.header-status,
.docs-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #85f2a2;
  box-shadow: 0 0 0 5px rgba(133, 242, 162, 0.12);
}

.status-dot.offline {
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(255, 92, 53, 0.14);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  grid-template-columns: minmax(330px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  padding: calc(var(--header-height) + 36px) var(--gutter) 60px;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 47%;
  content: "";
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
  padding-right: clamp(20px, 4vw, 70px);
  animation: hero-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--signal);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.actions-section h2,
.workflow-section h2,
.playground-section h2,
.pricing-section h2,
.final-section h2,
.docs-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(62px, 7vw, 126px);
}

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

.hero-lead {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.48;
}

.hero-actions,
.final-section > div {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

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

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

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

.button-approve {
  border: 1px solid var(--signal);
  color: var(--signal);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 18px;
}

.case-showcase {
  --case-duration: 6500ms;
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  justify-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  animation: board-in 900ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.case-toolbar,
.case-controls,
.case-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-toolbar {
  min-height: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.case-toolbar span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.case-toolbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #85f2a2;
  box-shadow: 0 0 0 5px rgba(133, 242, 162, 0.1);
  animation: case-live 1.8s ease-in-out infinite;
}

.case-controls {
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.case-tabs {
  display: flex;
  align-self: stretch;
}

.case-tabs button,
.case-pause {
  border: 0;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.case-tabs button {
  min-width: 92px;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.case-tabs button span {
  margin-right: 5px;
  color: var(--signal);
}

.case-tabs button:hover,
.case-tabs button[aria-selected="true"],
.case-pause:hover,
.case-pause[aria-pressed="true"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.case-pause {
  align-self: stretch;
  padding: 0 4px 0 18px;
}

.case-stage {
  position: relative;
  height: clamp(350px, 27vw, 410px);
  overflow: hidden;
}

.case-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 22%, black 100%);
  mask-image: linear-gradient(90deg, transparent, black 22%, black 100%);
}

.case-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
}

.case-link {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-dasharray: 3 9;
  stroke-width: 1.2;
  transition: opacity 260ms ease, stroke 260ms ease, stroke-width 260ms ease;
}

.case-link.is-active {
  stroke: var(--signal);
  stroke-dasharray: 10 12;
  stroke-width: 2.8;
  filter: drop-shadow(0 0 4px rgba(255, 92, 53, 0.6));
  animation: case-route-flow 780ms linear infinite;
}

.case-link.is-complete {
  stroke: rgba(133, 242, 162, 0.46);
  stroke-dasharray: 4 7;
  stroke-width: 1.8;
}

.case-link.is-unused {
  opacity: 0;
}

.case-goal,
.case-card {
  position: absolute;
  background: rgba(11, 18, 23, 0.94);
}

.case-goal {
  top: 42%;
  left: 0;
  display: grid;
  width: 146px;
  min-height: 82px;
  align-content: center;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 3px solid var(--signal);
}

.case-goal::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 6px rgba(255, 92, 53, 0.12);
  animation: case-node-pulse 1.8s ease-out infinite;
}

.case-goal span,
.case-goal small,
.case-card header,
.case-card p,
.case-caption span {
  font-family: var(--display);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-goal span,
.case-goal small {
  color: rgba(255, 255, 255, 0.42);
}

.case-goal strong {
  margin: 5px 0 3px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.case-goal small {
  color: var(--signal);
  font-size: 7px;
}

.case-card {
  display: grid;
  width: clamp(150px, 13vw, 186px);
  min-height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.2);
  opacity: 0.68;
  transform: translateY(0);
  transition: border-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.case-card-a { top: 7%; left: 22%; }
.case-card-b { top: 3%; right: 0; }
.case-card-c { top: 39%; right: 4%; }
.case-card-d { right: 22%; bottom: 3%; }
.case-card-e { bottom: 4%; left: 19%; }

.case-card header {
  display: flex;
  min-height: 26px;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
}

.case-card header i {
  color: rgba(255, 255, 255, 0.26);
  font-style: normal;
}

.case-card code {
  align-self: center;
  overflow: hidden;
  padding: 9px 10px 5px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(8px, 0.72vw, 10px);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-card p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0 10px 9px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.04em;
  text-transform: none;
}

.case-card p span {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.case-card p em {
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-card.is-active {
  z-index: 3;
  border-color: var(--signal);
  box-shadow: 8px 8px 0 rgba(255, 92, 53, 0.12);
  opacity: 1;
  transform: translateY(-6px);
}

.case-card.is-active p {
  color: rgba(255, 255, 255, 0.72);
}

.case-card.is-active p span {
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(255, 92, 53, 0.12);
  animation: case-live 1s ease-in-out infinite;
}

.case-card.is-complete {
  border-color: rgba(133, 242, 162, 0.45);
  opacity: 0.9;
}

.case-card.is-complete p {
  color: #85f2a2;
}

.case-card.is-complete p span {
  background: #85f2a2;
}

.case-card.is-unused {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92);
}

.case-card.is-entering {
  animation: case-card-in 420ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

.case-caption {
  min-height: 74px;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.case-caption > div {
  display: grid;
  min-width: 255px;
}

.case-caption span {
  color: var(--signal);
}

.case-caption strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -0.015em;
}

.case-caption p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
}

.case-timeline {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.case-timeline i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
}

.case-showcase.is-running .case-timeline i {
  animation: case-timeline var(--case-duration) linear forwards;
}

.case-showcase.is-paused .case-timeline i {
  animation-play-state: paused;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--signal);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.actions-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 140px);
  padding: clamp(100px, 12vw, 190px) var(--gutter);
  background: var(--mist);
}

.section-intro {
  align-self: start;
  position: sticky;
  top: 60px;
}

.actions-section h2,
.workflow-section h2,
.playground-section h2,
.pricing-section h2 {
  font-size: clamp(52px, 6vw, 98px);
}

.section-intro > p:last-child,
.playground-copy > p {
  max-width: 440px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.action-ledger {
  margin: 0;
  padding: 0;
  list-style: none;
}

.action-ledger li {
  display: grid;
  min-height: 112px;
  grid-template-columns: 48px minmax(175px, 0.7fr) 1fr auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  transition: padding-left 180ms ease, color 180ms ease;
}

.action-ledger li:last-child {
  border-bottom: 1px solid var(--line);
}

.action-ledger li:hover {
  padding-left: 12px;
  color: var(--signal-dark);
}

.action-ledger li > span,
.action-ledger li > i {
  font-family: var(--display);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.action-ledger li > span {
  color: var(--signal-dark);
}

.action-ledger li > i {
  color: rgba(11, 18, 23, 0.38);
}

.action-ledger strong {
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 24px);
  letter-spacing: -0.03em;
}

.action-ledger p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.workflow-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 9vw, 150px);
  padding: clamp(100px, 12vw, 190px) var(--gutter);
  color: var(--white);
  background: var(--ink);
}

.workflow-sticky {
  position: sticky;
  top: 60px;
  align-self: start;
}

.workflow-intro {
  max-width: 430px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
}

.workflow-step {
  min-height: 270px;
  padding: 34px 0 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.workflow-step > span {
  color: var(--signal);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.workflow-step h3 {
  max-width: 620px;
  margin: 24px 0 20px;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.workflow-step p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.playground-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(50px, 9vw, 150px);
  padding: clamp(100px, 11vw, 170px) var(--gutter);
  background: var(--paper);
}

.playground-copy {
  align-self: center;
}

.contract-note {
  display: grid;
  max-width: 430px;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contract-note span {
  color: var(--signal-dark);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
}

.contract-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.console {
  width: 100%;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  background: var(--ink);
  box-shadow: 24px 24px 0 var(--steel);
}

.console-bar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.console-bar span:first-child {
  color: var(--white);
}

.console-bar i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--signal);
}

.console-sandbox {
  display: grid;
  min-height: 58px;
  grid-template-columns: 130px 1fr;
  align-items: stretch;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 92, 53, 0.08), transparent 42%);
}

.console-sandbox > span {
  align-self: center;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.console-sandbox > strong {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: #b9e7c6;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.console-sandbox i {
  width: 8px;
  height: 8px;
  background: #85f2a2;
  box-shadow: 0 0 0 5px rgba(133, 242, 162, 0.1);
}

.console label {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.console label > span {
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.console input,
.console select,
.console textarea {
  width: 100%;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  color: var(--white);
  background: transparent;
}

.console input,
.console select {
  min-height: 54px;
  padding: 0 18px;
}

.console select {
  color-scheme: dark;
}

.console textarea {
  min-height: 204px;
  resize: vertical;
  padding: 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.6;
}

.console-actions {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
}

.console-actions > span {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.console button:disabled,
.console select:disabled,
.console textarea:disabled {
  cursor: wait;
  opacity: 0.55;
}

.console-output {
  min-height: 126px;
  max-height: 300px;
  overflow: auto;
  margin: 0;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #b9e7c6;
  background: #070d11;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.pricing-section {
  padding: clamp(100px, 12vw, 190px) var(--gutter);
  background: var(--mist);
}

.pricing-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
}

.pricing-intro h2 {
  margin: 0;
}

.pricing-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.billing-cycle {
  display: flex;
  width: max-content;
  margin-top: 34px;
  border: 1px solid var(--line);
}

.billing-cycle button {
  min-height: 44px;
  padding: 0 17px;
  border: 0;
  color: rgba(11, 18, 23, 0.5);
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.billing-cycle button + button {
  border-left: 1px solid var(--line);
}

.billing-cycle button.is-active {
  color: var(--white);
  background: var(--ink);
}

.money-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: clamp(68px, 8vw, 120px);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.money-flow > div {
  min-height: 96px;
}

.money-flow span {
  color: var(--signal-dark);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.money-flow strong {
  display: block;
  margin-top: 13px;
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 23px);
  letter-spacing: -0.025em;
}

.money-flow p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.money-flow > i {
  color: var(--signal-dark);
  font-size: 22px;
  font-style: normal;
}

.pricing-ledger {
  margin-top: clamp(74px, 8vw, 126px);
}

.pricing-columns,
.pricing-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(135px, 0.48fr) minmax(155px, 0.58fr) minmax(170px, 0.7fr) minmax(145px, 0.48fr);
  gap: clamp(16px, 2.4vw, 40px);
}

.pricing-columns {
  min-height: 42px;
  align-items: start;
  color: rgba(11, 18, 23, 0.42);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pricing-row {
  position: relative;
  min-height: 184px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.pricing-row:last-child {
  border-bottom: 1px solid var(--line);
}

.pricing-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.46);
}

.pricing-row-featured {
  padding-right: 18px;
  padding-left: 18px;
  background: var(--paper);
  box-shadow: inset 5px 0 0 var(--signal);
}

.pricing-row-featured::after {
  position: absolute;
  top: 0;
  right: 18px;
  padding: 6px 10px;
  content: "START HERE";
  color: var(--ink);
  background: var(--signal);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pricing-name {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.pricing-name > span,
.pricing-price small {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pricing-name > span {
  padding-top: 8px;
  color: var(--signal-dark);
}

.pricing-name h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.pricing-name p,
.pricing-includes p,
.pricing-support p {
  margin: 0;
  color: var(--ink-soft);
}

.pricing-name p {
  max-width: 240px;
  margin-top: 10px;
  font-size: 12px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.pricing-price strong {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.85;
}

.pricing-price small {
  margin-top: 14px;
  color: rgba(11, 18, 23, 0.45);
}

.pricing-includes p {
  max-width: 260px;
  margin-top: 8px;
  font-size: 12px;
}

.pricing-includes strong,
.pricing-support strong {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.pricing-support p {
  margin-top: 8px;
  font-size: 12px;
}

.pricing-checkout {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.pricing-checkout:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

.pricing-row-featured .pricing-checkout {
  border-color: var(--signal);
  background: var(--signal);
}

.usage-pricing {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(620px, 1.44fr);
  gap: clamp(48px, 7vw, 110px);
  margin-top: clamp(90px, 10vw, 150px);
}

.usage-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 62px);
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.usage-heading > p:last-child {
  max-width: 350px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.usage-table {
  border-bottom: 1px solid var(--line);
}

.usage-row {
  display: grid;
  min-height: 68px;
  grid-template-columns: minmax(210px, 1fr) minmax(145px, 0.72fr) repeat(3, minmax(70px, 0.34fr));
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.usage-row-head {
  min-height: 42px;
  color: rgba(11, 18, 23, 0.42);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.usage-row strong {
  font-family: var(--display);
  font-size: 13px;
}

.usage-row > span:not([role="columnheader"]) {
  color: var(--ink-soft);
  font-size: 12px;
}

.usage-row b {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.pricing-answers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(76px, 8vw, 120px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-answers > div {
  min-height: 170px;
  padding: 30px clamp(18px, 3vw, 44px) 30px 0;
}

.pricing-answers > div + div {
  padding-left: clamp(18px, 3vw, 44px);
  border-left: 1px solid var(--line);
}

.pricing-answers strong {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.pricing-answers p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.pricing-footnote {
  max-width: 980px;
  margin: 32px 0 0;
  color: rgba(11, 18, 23, 0.55);
  font-size: 12px;
}

.final-section {
  padding: clamp(110px, 13vw, 210px) var(--gutter);
  color: var(--white);
  background: var(--ink);
}

.final-section h2 {
  max-width: 1250px;
  font-size: clamp(56px, 7.6vw, 130px);
}

.final-section h2 span {
  color: rgba(255, 255, 255, 0.3);
}

.footer {
  display: grid;
  min-height: 170px;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: var(--ink);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.footer > div {
  display: flex;
  gap: 24px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reveal {
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}

.docs-page {
  background: var(--mist);
}

.checkout-page {
  min-height: 100svh;
  color: var(--white);
  background: var(--ink);
}

.checkout-message {
  min-height: calc(100svh - var(--header-height));
  padding: clamp(120px, 16vw, 240px) var(--gutter) 100px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
}

.checkout-message h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 10vw, 150px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.85;
  text-transform: uppercase;
}

.checkout-message > p:nth-of-type(2) {
  max-width: 680px;
  margin: 40px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.checkout-message code {
  color: var(--signal);
}

.checkout-message > div {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.checkout-shell {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
}

.checkout-summary {
  padding: clamp(80px, 10vw, 160px) var(--gutter);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.checkout-summary h1,
.welcome-shell h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 8vw, 126px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

.checkout-summary > p:nth-of-type(2),
.welcome-shell > p:nth-of-type(2) {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
}

.checkout-summary dl {
  max-width: 680px;
  margin: 54px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.checkout-summary dl div {
  display: grid;
  min-height: 58px;
  grid-template-columns: 0.65fr 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.checkout-summary dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.checkout-summary dd {
  margin: 0;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-form {
  width: min(calc(100% - 64px), 620px);
  align-self: center;
  justify-self: center;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--signal);
}

.checkout-form label:not(fieldset label) {
  display: grid;
  min-height: 74px;
  grid-template-columns: 150px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.checkout-form label > span,
.checkout-form legend {
  padding-left: 20px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form label:not(fieldset label) input {
  width: 100%;
  height: 74px;
  padding: 0 20px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
}

.checkout-form fieldset {
  display: grid;
  min-height: 88px;
  grid-template-columns: 150px 1fr 1fr;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.checkout-form legend {
  display: contents;
}

.checkout-form fieldset label {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-left: 1px solid var(--line);
  font-size: 12px;
}

.checkout-form label.legal-consent {
  display: flex;
  min-height: 0;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px 0;
  border-bottom: 0;
  cursor: pointer;
}

.checkout-form label.legal-consent > input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid var(--ink);
  accent-color: var(--signal);
}

.checkout-form label.legal-consent > span {
  padding: 0;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-form .legal-consent a {
  color: var(--signal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-form .button {
  width: calc(100% - 40px);
  margin: 26px 20px 0;
}

.checkout-status {
  min-height: 52px;
  margin: 18px 20px 24px;
  color: var(--ink-soft);
  font-size: 11px;
}

.welcome-shell {
  min-height: calc(100svh - var(--header-height));
  padding: clamp(100px, 12vw, 180px) var(--gutter);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
}

.welcome-shell > .button,
.welcome-shell > .text-link {
  margin-top: 38px;
}

.credential-panel {
  max-width: 820px;
  margin-top: 42px;
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--signal);
}

.credential-panel pre {
  overflow: auto;
  margin: 18px 0;
  padding: 18px;
  background: var(--mist);
}

.credential-panel p {
  margin: 18px 0 0;
  font-size: 12px;
}

.docs-topbar {
  position: relative;
  color: var(--white);
  background: var(--ink);
}

.docs-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
}

.docs-nav {
  position: sticky;
  top: 0;
  display: flex;
  height: 100svh;
  align-self: start;
  flex-direction: column;
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.docs-nav p {
  margin: 0 0 34px;
  color: var(--signal-dark);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.docs-nav a {
  padding: 11px 0;
  color: var(--ink-soft);
  font-size: 13px;
  transition: color 160ms ease, transform 160ms ease;
}

.docs-nav a:hover {
  color: var(--signal-dark);
  transform: translateX(4px);
}

.docs-content {
  width: min(100%, 1120px);
  padding: 0 clamp(32px, 7vw, 110px) 140px;
}

.docs-hero {
  padding: clamp(80px, 10vw, 150px) 0 110px;
}

.docs-hero h1 {
  max-width: 920px;
  font-size: clamp(68px, 10vw, 150px);
}

.docs-hero > p:nth-of-type(2) {
  max-width: 650px;
  margin: 36px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.endpoint-strip {
  display: grid;
  max-width: 760px;
  min-height: 60px;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  margin-top: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.endpoint-strip > span,
.endpoint-strip button {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.endpoint-strip > span {
  padding-left: 18px;
  color: var(--signal-dark);
}

.endpoint-strip code {
  padding: 0 18px;
  border-left: 1px solid var(--line);
  font-size: 13px;
}

.endpoint-strip button,
.code-block button {
  height: 100%;
  padding: 0 18px;
  border: 0;
  border-left: 1px solid var(--line);
  cursor: pointer;
  color: var(--ink);
  background: transparent;
}

.endpoint-strip button:hover,
.code-block button:hover {
  color: var(--white);
  background: var(--signal-dark);
}

.docs-section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.docs-heading {
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: start;
}

.docs-heading > span {
  padding-top: 9px;
  color: var(--signal-dark);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
}

.docs-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.docs-section > p {
  max-width: 760px;
  margin: 26px 0 0 55px;
  color: var(--ink-soft);
  font-size: 16px;
}

.code-block {
  margin: 38px 0 34px 55px;
  color: #cce7d4;
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--steel);
}

.code-block > div {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding-left: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.code-block button {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.14);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.code-block pre {
  overflow: auto;
  margin: 0;
  padding: 22px;
  font-size: 12px;
  line-height: 1.65;
  white-space: pre;
}

.tool-line {
  display: grid;
  min-height: 58px;
  grid-template-columns: minmax(150px, 0.33fr) 1fr;
  align-items: center;
  margin-left: 55px;
  border-top: 1px solid var(--line);
}

.tool-line:last-child {
  border-bottom: 1px solid var(--line);
}

.tool-line code {
  color: var(--signal-dark);
  font-weight: 700;
}

.tool-line span {
  color: var(--ink-soft);
  font-size: 14px;
}

.contract-list {
  margin: 38px 0 0 55px;
  padding: 0;
  list-style: none;
  counter-reset: contract;
}

.contract-list li {
  display: grid;
  min-height: 74px;
  grid-template-columns: 0.34fr 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  counter-increment: contract;
}

.contract-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.contract-list b {
  font-family: var(--display);
  font-size: 16px;
}

.contract-list b::before {
  margin-right: 14px;
  color: var(--signal-dark);
  content: "0" counter(contract);
  font-size: 10px;
}

.contract-list span {
  color: var(--ink-soft);
  font-size: 14px;
}

.docs-actions {
  margin: 38px 0 0 55px;
  border-bottom: 1px solid var(--line);
}

.docs-actions > div {
  display: grid;
  min-height: 74px;
  grid-template-columns: minmax(190px, 0.38fr) 1fr auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.docs-actions code {
  color: var(--signal-dark);
  font-weight: 700;
}

.docs-actions span {
  color: var(--ink-soft);
  font-size: 13px;
}

.docs-actions i {
  font-family: var(--display);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.warning-band {
  display: grid;
  min-height: 88px;
  grid-template-columns: 0.4fr 1fr;
  align-items: center;
  margin: 38px 0 0 55px;
  padding: 0 24px;
  color: var(--white);
  background: var(--signal-dark);
}

.warning-band b {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.warning-band span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.discovery-links {
  margin: 38px 0 0 55px;
}

.discovery-links a {
  display: grid;
  min-height: 84px;
  grid-template-columns: minmax(170px, 0.3fr) 1fr auto;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
  transition: padding-left 180ms ease, color 180ms ease;
}

.discovery-links a:last-child {
  border-bottom: 1px solid var(--line);
}

.discovery-links a:hover {
  padding-left: 10px;
  color: var(--signal-dark);
}

.discovery-links b {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
}

.discovery-links span {
  color: var(--ink-soft);
  font-size: 13px;
}

.discovery-links i {
  font-family: var(--display);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.docs-note {
  padding-left: 18px;
  border-left: 2px solid var(--signal);
}

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

.legal-topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  color: var(--white);
  background: rgba(11, 18, 23, 0.97);
  backdrop-filter: blur(14px);
}

.legal-topbar > .text-link {
  justify-self: end;
}

.legal-topnav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 40px);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-topnav a {
  position: relative;
  color: rgba(255, 255, 255, 0.56);
}

.legal-topnav a:hover,
.legal-topnav a[aria-current="page"] {
  color: var(--white);
}

.legal-topnav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 3px;
  background: var(--signal);
  content: "";
}

.legal-shell {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(330px, 37vw) minmax(0, 1fr);
  padding-top: var(--header-height);
}

.legal-rail {
  position: sticky;
  top: var(--header-height);
  display: flex;
  height: calc(100svh - var(--header-height));
  flex-direction: column;
  padding: clamp(48px, 6vw, 92px) var(--gutter) 36px;
  overflow-y: auto;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--ink);
  background-size: 42px 42px;
}

.legal-rail::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 30%;
  background: var(--signal);
  content: "";
}

.legal-rail h1 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.86;
  text-transform: uppercase;
}

.legal-version {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.legal-index {
  display: grid;
  margin-top: clamp(30px, 5vh, 62px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.legal-index a {
  display: grid;
  min-height: 38px;
  grid-template-columns: 34px 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.63);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 150ms ease, padding-left 150ms ease;
}

.legal-index a:hover {
  padding-left: 6px;
  color: var(--signal);
}

.legal-index a span {
  color: var(--signal);
}

.legal-operator {
  margin-top: auto;
  padding-top: 30px;
}

.legal-operator > span {
  display: block;
  color: var(--signal);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.legal-operator strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-operator p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  line-height: 1.5;
}

.legal-document {
  min-width: 0;
  padding: 0 clamp(30px, 6vw, 104px);
}

.legal-document a {
  color: var(--signal-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-lede {
  padding: clamp(76px, 10vw, 150px) 0 clamp(72px, 8vw, 120px);
  border-bottom: 4px solid var(--ink);
}

.legal-lede h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(58px, 7.2vw, 126px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

.legal-lede h2 span {
  color: var(--steel);
}

.legal-lede > p:last-child {
  max-width: 790px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.responsibility-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  margin: 0 clamp(-104px, -6vw, -30px);
  color: var(--white);
  background: var(--ink);
}

.responsibility-strip > div {
  min-height: 190px;
  padding: 32px clamp(24px, 3vw, 46px);
}

.responsibility-strip span {
  color: var(--signal);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.responsibility-strip strong {
  display: block;
  margin-top: 28px;
  font-family: var(--display);
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.22;
  text-transform: uppercase;
}

.responsibility-strip i {
  display: grid;
  width: 34px;
  place-items: center;
  color: var(--signal);
  font-style: normal;
}

.legal-section {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 46px);
  padding: clamp(62px, 8vw, 112px) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.legal-number {
  padding-top: 8px;
  color: var(--signal);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.legal-section h3 {
  max-width: 850px;
  margin: 0 0 32px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li {
  max-width: 850px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
}

.legal-section p {
  margin: 0 0 20px;
}

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

.legal-section ul {
  max-width: 850px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.legal-section li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-top: 1px solid var(--line);
}

.legal-section li:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-section li::before {
  position: absolute;
  top: 22px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: var(--signal);
  content: "";
}

.legal-boundary,
.legal-warning {
  max-width: 850px;
  margin: 34px 0;
  padding: 28px 30px;
  border-left: 7px solid var(--signal);
  background: var(--mist);
}

.legal-boundary > span,
.legal-warning > span {
  display: block;
  color: var(--signal-dark);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.legal-boundary strong,
.legal-warning strong {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.22;
  text-transform: uppercase;
}

.legal-boundary p {
  margin: 14px 0 0;
  font-size: 13px;
}

.legal-warning-dark {
  color: var(--white);
  background: var(--ink);
}

.legal-warning-dark strong {
  color: var(--white);
}

.legal-table {
  max-width: 900px;
  margin: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-table > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.legal-table strong {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.legal-table p {
  margin: 0;
  font-size: 13px;
}

.legal-footer {
  display: grid;
  min-height: 140px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-footer p {
  margin: 0;
  color: var(--steel);
}

.legal-footer a {
  color: var(--ink);
  text-decoration: none;
}

.footer > div {
  max-width: 860px;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 10px;
}

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

@keyframes board-in {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes case-route-flow {
  to { stroke-dashoffset: -44; }
}

@keyframes case-live {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@keyframes case-node-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 92, 53, 0.28); }
  100% { box-shadow: 0 0 0 13px rgba(255, 92, 53, 0); }
}

@keyframes case-card-in {
  from { opacity: 0; transform: translateY(12px); }
}

@keyframes case-timeline {
  to { transform: scaleX(1); }
}

@keyframes scroll-cue {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

@media (max-width: 1080px) {
  .legal-topnav {
    display: none;
  }

  .checkout-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  }

  .hero {
    grid-template-columns: minmax(300px, 0.9fr) minmax(410px, 1.1fr);
  }

  .hero::before {
    left: 43%;
  }

  .case-showcase {
    width: 100%;
  }

  .playground-section {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 46px;
  }

  .console label {
    grid-template-columns: 105px 1fr;
  }

  .console-sandbox {
    grid-template-columns: 105px 1fr;
  }

  .pricing-columns {
    display: none;
  }

  .pricing-row {
    grid-template-columns: minmax(260px, 1fr) minmax(150px, auto);
    gap: 24px 42px;
    padding: 34px 0;
  }

  .pricing-row-featured,
  .pricing-row:hover {
    padding-right: 18px;
    padding-left: 18px;
  }

  .pricing-includes,
  .pricing-support {
    align-self: start;
  }

  .pricing-checkout {
    grid-column: 1 / -1;
    width: min(100%, 320px);
  }

  .usage-pricing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .nav {
    display: none;
  }

  .header-status span:last-child {
    display: none;
  }

  .hero {
    display: block;
    height: auto;
    min-height: 1180px;
    padding-top: 130px;
  }

  .hero::before {
    top: 510px;
    left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(58px, 15vw, 96px);
  }

  .case-showcase {
    width: min(100%, 650px);
    margin: 64px auto 0;
  }

  .case-stage {
    height: 430px;
  }

  .scroll-cue {
    display: none;
  }

  .actions-section,
  .workflow-section,
  .playground-section,
  .pricing-intro {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .workflow-sticky {
    position: static;
  }

  .action-ledger li {
    grid-template-columns: 38px minmax(150px, 0.7fr) 1fr;
  }

  .action-ledger li > i {
    display: none;
  }

  .playground-section {
    gap: 70px;
  }

  .pricing-columns {
    display: none;
  }

  .pricing-row {
    grid-template-columns: 1fr auto;
    gap: 24px 40px;
    padding: 32px 0;
  }

  .pricing-row-featured,
  .pricing-row:hover {
    padding-right: 18px;
    padding-left: 18px;
  }

  .money-flow {
    grid-template-columns: 1fr 1fr;
    gap: 26px 40px;
  }

  .money-flow > i {
    display: none;
  }

  .pricing-answers {
    grid-template-columns: 1fr;
  }

  .pricing-answers > div {
    min-height: 0;
  }

  .pricing-answers > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .console {
    box-shadow: 14px 14px 0 var(--steel);
  }

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

  .footer > div {
    justify-content: flex-start;
  }

  .legal-shell {
    display: block;
  }

  .legal-rail {
    position: relative;
    top: auto;
    height: auto;
    min-height: 660px;
  }

  .legal-operator {
    margin-top: 60px;
  }

  .legal-lede h2 {
    font-size: clamp(58px, 12vw, 92px);
  }

  .docs-topbar .docs-status {
    display: none;
  }

  .docs-shell {
    display: block;
  }

  .docs-nav {
    display: none;
  }

  .docs-content {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .checkout-shell {
    display: block;
  }

  .checkout-summary {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .checkout-form {
    margin: 70px auto;
  }
}

@media (max-width: 560px) {
  .topbar,
  .docs-topbar,
  .legal-topbar {
    padding: 0 20px;
  }

  .docs-topbar .text-link {
    font-size: 9px;
  }

  .checkout-summary,
  .welcome-shell {
    padding-right: 20px;
    padding-left: 20px;
  }

  .checkout-summary h1,
  .welcome-shell h1 {
    font-size: 58px;
  }

  .checkout-form {
    width: calc(100% - 40px);
  }

  .checkout-form label:not(fieldset label),
  .checkout-form fieldset {
    display: block;
    padding: 14px 0;
  }

  .checkout-form label:not(fieldset label) input {
    height: 52px;
    margin-top: 8px;
    border-left: 0;
  }

  .checkout-form fieldset label {
    min-height: 44px;
    border-left: 0;
  }

  .checkout-form label.legal-consent {
    padding: 18px 20px 0;
  }

  .hero {
    min-height: 1120px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero::before {
    top: 475px;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 78px);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 15px;
  }

  .hero-actions,
  .checkout-message > div,
  .final-section > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-showcase {
    width: 108%;
    margin-left: -4%;
  }

  .case-toolbar {
    padding: 0 2px;
  }

  .case-toolbar span:last-child {
    display: none;
  }

  .case-tabs button {
    min-width: 0;
    padding: 0 9px;
  }

  .case-pause {
    padding-left: 10px;
  }

  .case-stage {
    height: 420px;
  }

  .case-goal {
    width: 108px;
    min-height: 74px;
    padding: 10px;
  }

  .case-goal strong {
    font-size: 11px;
  }

  .case-card {
    width: clamp(124px, 38vw, 148px);
    min-height: 76px;
  }

  .case-card-a { left: 24%; }
  .case-card-b { right: 0; }
  .case-card-c { right: 1%; }
  .case-card-d { right: 8%; }
  .case-card-e { left: 18%; }

  .case-card code {
    font-size: 8px;
  }

  .case-caption {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
  }

  .case-caption p {
    max-width: none;
    font-size: 9px;
    text-align: left;
  }

  .actions-section,
  .workflow-section,
  .playground-section,
  .pricing-section,
  .final-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .actions-section h2,
  .workflow-section h2,
  .playground-section h2,
  .pricing-section h2 {
    font-size: 50px;
  }

  .pricing-intro {
    gap: 38px;
  }

  .pricing-copy > p {
    font-size: 15px;
  }

  .billing-cycle {
    width: 100%;
  }

  .billing-cycle button {
    flex: 1;
  }

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

  .money-flow > div {
    min-height: 0;
    padding: 10px 0;
  }

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

  .pricing-row-featured::after {
    right: 0;
  }

  .pricing-includes,
  .pricing-support {
    grid-column: 1;
  }

  .pricing-checkout {
    grid-column: 1;
    width: 100%;
  }

  .usage-table {
    overflow-x: auto;
  }

  .usage-row {
    min-width: 680px;
  }

  .pricing-footnote {
    text-align: left;
  }

  .action-ledger li {
    min-height: 128px;
    grid-template-columns: 32px 1fr;
  }

  .action-ledger li p {
    grid-column: 2;
    padding-bottom: 16px;
  }

  .console label {
    display: block;
    padding: 0;
  }

  .console-sandbox {
    display: block;
    padding: 0;
  }

  .console-sandbox > span {
    display: block;
    padding: 12px 16px 6px;
  }

  .console-sandbox > strong {
    min-height: 48px;
    padding: 0 16px;
    border-left: 0;
  }

  .console label > span {
    display: block;
    padding: 12px 16px 6px;
  }

  .console input,
  .console select,
  .console textarea {
    border-left: 0;
  }

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

  .console-actions > span {
    margin-left: 0;
  }

  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer > div {
    flex-wrap: wrap;
  }

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

  .legal-topbar > .text-link {
    font-size: 9px;
  }

  .legal-rail {
    min-height: 590px;
    padding: 58px 20px 30px;
  }

  .legal-rail h1 {
    font-size: 60px;
  }

  .legal-document {
    padding-right: 20px;
    padding-left: 20px;
  }

  .legal-lede {
    padding: 72px 0;
  }

  .legal-lede h2 {
    font-size: 52px;
  }

  .responsibility-strip {
    grid-template-columns: 1fr;
    margin-right: -20px;
    margin-left: -20px;
  }

  .responsibility-strip > div {
    min-height: 0;
    padding: 28px 20px 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .responsibility-strip strong {
    margin-top: 14px;
  }

  .responsibility-strip i {
    display: none;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 66px 0;
  }

  .legal-number {
    padding-top: 0;
  }

  .legal-section h3 {
    margin-bottom: 26px;
    font-size: 38px;
  }

  .legal-boundary,
  .legal-warning {
    padding: 24px 20px;
  }

  .legal-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-footer {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 8px;
  }

  .docs-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .docs-hero h1 {
    font-size: 64px;
  }

  .endpoint-strip {
    grid-template-columns: 82px 1fr auto;
  }

  .endpoint-strip code {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
  }

  .endpoint-strip button {
    padding: 0 10px;
  }

  .docs-heading {
    grid-template-columns: 34px 1fr;
  }

  .docs-heading h2 {
    font-size: 39px;
  }

  .docs-section > p,
  .code-block,
  .tool-line,
  .contract-list,
  .docs-actions,
  .warning-band,
  .discovery-links {
    margin-left: 34px;
  }

  .tool-line,
  .contract-list li,
  .docs-actions > div,
  .warning-band,
  .discovery-links a {
    grid-template-columns: 1fr;
    gap: 6px;
    align-content: center;
    padding: 14px 0;
  }

  .warning-band {
    padding: 18px;
  }

  .discovery-links a i,
  .docs-actions i {
    display: none;
  }
}

@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;
  }

  .js .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
