:root {
  color-scheme: dark;
  --ink: #070a08;
  --ink-soft: #0c120e;
  --panel: #101712;
  --panel-2: #141d17;
  --paper: #eef0e7;
  --paper-dim: #a9b0a6;
  --signal: #d8ff3e;
  --signal-soft: rgba(216, 255, 62, 0.16);
  --hazard: #ff6433;
  --cyan: #5ce5d5;
  --line: rgba(238, 240, 231, 0.16);
  --line-strong: rgba(238, 240, 231, 0.34);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", "Cascadia Code", "Roboto Mono", Consolas, monospace;
  --page: min(1500px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 4%, rgba(92, 229, 213, 0.055), transparent 26rem),
    var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: repeating-linear-gradient(0deg, transparent 0 2px, rgba(238, 240, 231, 0.32) 2px 3px);
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--signal);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(238, 240, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 240, 231, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.cursor-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(520px circle at 76% 22%, rgba(216, 255, 62, 0.07), transparent 72%);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 82px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line-strong);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 6px);
  gap: 2px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
}

.brand-mark i {
  display: block;
  background: var(--signal);
}

.brand-mark i:nth-child(2),
.brand-mark i:nth-child(3) {
  opacity: 0.28;
}

.brand-slash {
  padding: 0 0.3em;
  color: var(--signal);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a,
.footer-links a {
  position: relative;
  color: var(--paper-dim);
  transition: color 160ms ease;
}

.primary-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.footer-links a:hover {
  color: var(--paper);
}

.primary-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-status {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px var(--signal-soft), 0 0 18px rgba(216, 255, 62, 0.55);
}

.status-dot--pending {
  background: #ffd84a;
  box-shadow: 0 0 0 4px rgba(255, 216, 74, 0.14), 0 0 18px rgba(255, 216, 74, 0.45);
}

.status-dot--preview {
  background: var(--hazard);
  box-shadow: 0 0 0 4px rgba(255, 100, 51, 0.14), 0 0 18px rgba(255, 100, 51, 0.4);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(350px, 0.7fr);
  gap: clamp(36px, 7vw, 120px);
  align-items: center;
  width: var(--page);
  min-height: calc(100svh - 82px);
  margin: 0 auto;
  padding: 72px 0 76px;
}

.overline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 32px;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.overline::after {
  width: 42px;
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.hero h1,
.section-intro h2,
.proof h2,
.integrate h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(68px, 9.5vw, 154px);
  line-height: 0.78;
}

.hero h1 > span {
  display: block;
}

.hero-accent {
  width: max-content;
  color: var(--signal);
  transform: translateX(clamp(28px, 5vw, 82px));
}

.hero-lede {
  max-width: 690px;
  margin: 40px 0 0;
  color: var(--paper-dim);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 210px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

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

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(238, 240, 231, 0.025);
}

.button--ghost:hover {
  border-color: var(--paper);
  background: rgba(238, 240, 231, 0.07);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 800px;
  margin: 52px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 22px 0 0;
}

.hero-facts li + li {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.hero-facts span {
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts strong {
  font-size: 14px;
  font-weight: 650;
}

.signal-console {
  position: relative;
  width: min(100%, 470px);
  justify-self: end;
  padding: 20px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(155deg, rgba(20, 29, 23, 0.94), rgba(7, 10, 8, 0.96));
  box-shadow: 28px 28px 0 rgba(216, 255, 62, 0.055);
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
}

.signal-console::before {
  position: absolute;
  top: -1px;
  right: 0;
  width: 46px;
  height: 1px;
  content: "";
  background: var(--signal);
  transform: rotate(45deg) translate(6px, 15px);
}

.console-chrome,
.console-footer,
.code-panel__meta,
.json-card__header,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--signal);
}

.console-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.radar {
  position: relative;
  display: grid;
  place-items: center;
  width: min(280px, 76%);
  aspect-ratio: 1;
  margin: 34px auto 28px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), var(--line) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(transparent calc(50% - 0.5px), var(--line) 50%, transparent calc(50% + 0.5px)),
    radial-gradient(circle, rgba(216, 255, 62, 0.1), transparent 60%);
}

.radar-ring {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.radar-ring--one { inset: 16%; }
.radar-ring--two { inset: 31%; }
.radar-ring--three { inset: 43%; }

.radar-sweep {
  position: absolute;
  inset: 50% 50% 0 0;
  background: conic-gradient(from 270deg at 100% 0, rgba(216, 255, 62, 0.38), transparent 38deg);
  transform-origin: 100% 0;
  animation: sweep 5s linear infinite;
}

.radar-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--signal);
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 900;
  transform: rotate(45deg);
}

.radar-core span {
  transform: rotate(-45deg);
}

.radar-hit {
  position: absolute;
  z-index: 3;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hazard);
  box-shadow: 0 0 0 5px rgba(255, 100, 51, 0.12), 0 0 14px var(--hazard);
  animation: ping 2.2s ease-in-out infinite;
}

.radar-hit--one { top: 25%; left: 62%; }
.radar-hit--two { right: 25%; bottom: 24%; animation-delay: -1.1s; }

.threat-card {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(238, 240, 231, 0.035);
}

.threat-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.threat-heading > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.data-label {
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.threat-heading strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.severity {
  padding: 5px 7px;
  color: var(--hazard);
  border: 1px solid var(--hazard);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
}

.meter {
  height: 4px;
  margin: 18px 0;
  overflow: hidden;
  background: rgba(238, 240, 231, 0.09);
}

.meter span {
  display: block;
  width: 94.6%;
  height: 100%;
  background: linear-gradient(90deg, var(--signal), var(--hazard));
  transform-origin: left;
  animation: load-meter 1.2s cubic-bezier(.2,.8,.2,1) both;
}

.threat-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.threat-stats div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.threat-stats div + div {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.threat-stats dt,
.threat-stats dd {
  margin: 0;
  font-family: var(--mono);
}

.threat-stats dt {
  color: var(--paper-dim);
  font-size: 8px;
}

.threat-stats dd {
  font-size: 11px;
  font-weight: 800;
}

.console-footer {
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.console-footer i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--signal);
}

.signal-marquee {
  overflow: hidden;
  color: var(--ink);
  background: var(--signal);
  border-block: 1px solid var(--signal);
  transform: rotate(-1deg) scale(1.02);
}

.signal-marquee > div {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 54px;
  animation: marquee 22s linear infinite;
}

.signal-marquee span,
.signal-marquee b {
  padding-left: 34px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.signal-marquee b {
  font-size: 18px;
}

.section-shell {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(110px, 12vw, 190px) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 72px;
}

.section-intro .overline {
  grid-column: 1 / -1;
  margin-bottom: -30px;
}

.section-intro h2,
.proof h2,
.integrate h2 {
  font-size: clamp(52px, 7.5vw, 112px);
  line-height: 0.84;
}

.section-intro h2 em,
.proof h2 em,
.integrate h2 em {
  color: var(--signal);
  font-style: normal;
}

.section-intro > p:last-child,
.proof-lede,
.integrate > p:not(.overline) {
  max-width: 520px;
  margin: 0;
  color: var(--paper-dim);
  font-size: 17px;
  line-height: 1.6;
}

.endpoint-workbench {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  border: 1px solid var(--line-strong);
  background: var(--ink-soft);
}

.endpoint-tabs {
  border-right: 1px solid var(--line-strong);
}

.endpoint-tab {
  display: grid;
  grid-template-columns: 42px 1fr auto 22px;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 0 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.endpoint-tab:last-child {
  border-bottom: 0;
}

.endpoint-tab:hover {
  background: rgba(238, 240, 231, 0.035);
}

.endpoint-tab.is-active {
  color: var(--ink);
  background: var(--signal);
}

.endpoint-index,
.endpoint-price {
  font-family: var(--mono);
  font-size: 9px;
}

.endpoint-index {
  opacity: 0.58;
}

.endpoint-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.endpoint-price {
  white-space: nowrap;
}

.endpoint-arrow {
  font-size: 17px;
  transform: translate(-5px, 5px);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.endpoint-tab.is-active .endpoint-arrow,
.endpoint-tab:hover .endpoint-arrow {
  transform: translate(0, 0);
  opacity: 1;
}

.code-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(26px, 4vw, 58px);
  background:
    linear-gradient(rgba(238, 240, 231, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 240, 231, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

.code-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.code-panel__top > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.method {
  padding: 6px 8px;
  color: var(--ink);
  background: var(--signal);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
}

.code-panel__top code {
  overflow: hidden;
  font-family: var(--mono);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  flex: none;
  padding: 8px 10px;
  color: var(--paper-dim);
  border: 1px solid var(--line);
  background: rgba(7, 10, 8, 0.7);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
}

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

.code-panel > p {
  max-width: 610px;
  min-height: 48px;
  margin: 28px 0;
  color: var(--paper-dim);
  font-size: 14px;
  line-height: 1.6;
}

.code-panel pre,
.json-card pre {
  margin: 0;
  overflow: auto;
  font-family: var(--mono);
  scrollbar-color: var(--line-strong) transparent;
}

.code-panel pre {
  min-height: 285px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(7, 10, 8, 0.88);
  font-size: 12px;
  line-height: 1.75;
}

.token-dim { color: #839087; }
.token-accent { color: var(--signal); }
.token-key { color: var(--cyan); }
.token-string { color: var(--signal); }
.token-number { color: #ffc857; }
.token-alert { color: var(--hazard); }

.code-panel__meta {
  margin-top: auto;
  padding-top: 18px;
}

.code-panel__meta span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.code-panel__meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
}

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

.section-intro--wide {
  display: block;
}

.section-intro--wide .overline {
  margin-bottom: 32px;
}

.protocol-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  list-style: none;
}

.protocol-steps li {
  position: relative;
  min-height: 430px;
  padding: 26px;
  overflow: hidden;
}

.protocol-steps li + li {
  border-left: 1px solid var(--line-strong);
}

.step-number {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.step-glyph {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 54px auto 44px;
  color: var(--signal);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 900;
  box-shadow: inset 0 0 0 18px rgba(238, 240, 231, 0.015), 0 0 0 18px rgba(238, 240, 231, 0.015);
}

.step-glyph--coin {
  color: var(--ink);
  border: 0;
  border-radius: 0;
  background: var(--signal);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transform: scale(0.82);
  box-shadow: 0 0 0 18px rgba(216, 255, 62, 0.08);
}

.step-glyph--arrow {
  font-size: 70px;
  border-color: var(--hazard);
  color: var(--hazard);
}

.protocol-steps h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.protocol-steps p {
  max-width: 370px;
  margin: 0;
  color: var(--paper-dim);
  font-size: 14px;
  line-height: 1.65;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.proof .overline {
  margin-bottom: 34px;
}

.proof-lede {
  margin-top: 32px;
}

.proof-list {
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.proof-list > li > span {
  padding-top: 3px;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 9px;
}

.proof-list strong {
  font-size: 14px;
  text-transform: uppercase;
}

.proof-list p {
  margin: 6px 0 0;
  color: var(--paper-dim);
  font-size: 13px;
  line-height: 1.55;
}

.json-card {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  box-shadow: -24px 24px 0 rgba(92, 229, 213, 0.055);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.json-card__header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.json-card__header span:last-child {
  color: var(--signal);
}

.json-card pre {
  padding: clamp(26px, 4vw, 48px) 8px 52px;
  font-size: clamp(11px, 1.1vw, 14px);
  line-height: 1.9;
}

.json-card__stamp {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--hazard);
  border: 2px solid var(--hazard);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  transform: rotate(-11deg);
}

.integrate {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-inline: 24px;
  overflow: hidden;
  color: var(--ink);
  background: var(--signal);
  text-align: center;
}

.integrate .overline,
.integrate .overline span {
  position: relative;
  z-index: 2;
  color: var(--ink);
}

.integrate .overline::after {
  background: rgba(7, 10, 8, 0.3);
}

.integrate h2,
.integrate > p:not(.overline),
.integrate-actions {
  position: relative;
  z-index: 2;
}

.integrate h2 em {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.integrate > p:not(.overline) {
  margin-top: 30px;
  color: rgba(7, 10, 8, 0.68);
}

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

.integrate .button--signal:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button--ghost-light {
  color: var(--ink);
  border-color: rgba(7, 10, 8, 0.4);
  background: rgba(7, 10, 8, 0.03);
}

.button--ghost-light:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(7, 10, 8, 0.08);
}

.integrate-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(82vw, 1100px);
  aspect-ratio: 1.9;
  border: 1px solid rgba(7, 10, 8, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.integrate-orbit::before,
.integrate-orbit::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px solid rgba(7, 10, 8, 0.12);
  border-radius: 50%;
}

.integrate-orbit::after {
  inset: 25%;
}

.integrate-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--signal);
}

.integrate-orbit span:nth-child(1) { top: 8%; left: 27%; }
.integrate-orbit span:nth-child(2) { right: 10%; bottom: 26%; }
.integrate-orbit span:nth-child(3) { bottom: 4%; left: 39%; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  width: var(--page);
  margin: 0 auto;
  padding: 66px 0 28px;
}

.site-footer > p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 13px;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 16px 28px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.footer-status .status-dot {
  margin-top: 4px;
}

.footer-status div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-status strong {
  font-size: 12px;
  text-transform: uppercase;
}

.footer-status div span {
  color: var(--paper-dim);
  font-size: 11px;
  line-height: 1.45;
}

.footer-bottom {
  grid-column: 1 / -1;
  gap: 20px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom code {
  color: var(--signal);
  font: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

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

@keyframes sweep {
  to { transform: rotate(360deg); }
}

@keyframes ping {
  0%, 100% { opacity: 0.42; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes load-meter {
  from { transform: scaleX(0); }
}

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

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

  .hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(68px, 9vw, 110px);
  }

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

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

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

  .primary-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .signal-console {
    width: min(100%, 560px);
    justify-self: stretch;
  }

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

  .section-intro .overline {
    margin-bottom: -20px;
  }

  .endpoint-workbench {
    grid-template-columns: 1fr;
  }

  .endpoint-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .endpoint-tab {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    min-height: 112px;
  }

  .endpoint-tab + .endpoint-tab {
    border-left: 1px solid var(--line);
  }

  .endpoint-index,
  .endpoint-arrow {
    display: none;
  }

  .protocol-steps {
    grid-template-columns: 1fr;
  }

  .protocol-steps li {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 40px;
    min-height: 280px;
  }

  .protocol-steps li + li {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .step-number {
    grid-column: 1 / -1;
  }

  .step-glyph {
    grid-row: 2 / 4;
    margin: 42px 0 0;
  }

  .protocol-steps h3 {
    align-self: end;
    margin-top: 42px;
  }

  .proof {
    gap: 70px;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 28px);
  }

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

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

  .hero {
    min-height: auto;
    padding: 64px 0 80px;
  }

  .hero h1 {
    font-size: clamp(55px, 18vw, 82px);
  }

  .hero-accent {
    transform: translateX(20px);
  }

  .hero-lede {
    margin-top: 30px;
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

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

  .hero-facts li,
  .hero-facts li + li {
    display: grid;
    grid-template-columns: 70px 1fr;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .hero-facts li span:last-child {
    grid-column: 2;
  }

  .signal-console {
    padding: 16px;
    box-shadow: 14px 14px 0 rgba(216, 255, 62, 0.055);
  }

  .radar {
    width: 70%;
  }

  .section-shell {
    padding: 100px 0;
  }

  .section-intro {
    gap: 34px;
    margin-bottom: 48px;
  }

  .section-intro .overline {
    margin-bottom: 0;
  }

  .section-intro h2,
  .proof h2,
  .integrate h2 {
    font-size: clamp(46px, 15vw, 70px);
  }

  .endpoint-tab {
    min-height: 96px;
    padding: 0 16px;
  }

  .code-panel {
    padding: 22px 16px;
  }

  .code-panel__top {
    align-items: flex-start;
  }

  .code-panel__top > div {
    flex-direction: column;
    align-items: flex-start;
  }

  .code-panel pre {
    min-height: 320px;
    padding: 18px;
    font-size: 10px;
  }

  .protocol-steps li {
    display: block;
    min-height: 0;
    padding: 28px 4px 44px;
  }

  .step-glyph {
    width: 118px;
    height: 118px;
    margin: 40px 18px 38px;
  }

  .protocol-steps h3 {
    margin-top: 0;
  }

  .json-card {
    padding: 16px;
    box-shadow: -12px 12px 0 rgba(92, 229, 213, 0.055);
  }

  .json-card pre {
    padding: 24px 0 70px;
    font-size: 9.5px;
  }

  .integrate {
    padding-inline: 14px;
  }

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

  .footer-bottom {
    grid-column: 1;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

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