@font-face {
  font-family: QuickTxn;
  src: local("Arial");
  font-display: swap;
}
:root {
  --ink: #101512;
  --paper: #f6f6ee;
  --lime: #d1ef75;
  --muted: #a8b2a7;
  --line: #344139;
  --radius: 6px;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: QuickTxn, "Helvetica Neue", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 5px;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
header,
footer {
  max-width: 1512px;
  margin: auto;
  padding: 30px 5%;
  display: flex;
  align-items: center;
  gap: 28px;
}
header {
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 27px;
  letter-spacing: -1.3px;
  font-weight: 700;
  text-decoration: none;
}
.brand-dot {
  color: var(--lime);
}
.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 35px;
  font-size: 37px;
  color: var(--lime);
  line-height: 1;
}
.brand-mark span {
  position: absolute;
  right: -5px;
  top: -5px;
  font-size: 19px;
  background: var(--ink);
}
header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}
header nav a {
  text-decoration: none;
}
header nav a:hover {
  color: var(--lime);
}
.nav-cta {
  border: 1px solid #76816d;
  border-radius: var(--radius);
  padding: 10px 16px;
}
.nav-cta span {
  margin-left: 15px;
}
.skip {
  position: absolute;
  left: 16px;
  top: -100px;
  padding: 12px;
  background: var(--lime);
  color: var(--ink);
  z-index: 20;
}
.skip:focus {
  top: 12px;
}
.hero {
  max-width: 1512px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4%;
  padding: 85px 5% 78px;
  align-items: center;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin: 0 0 24px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero .eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(48px, 5.9vw, 86px);
  letter-spacing: -4.5px;
  font-weight: 500;
  line-height: 1.04;
  margin-bottom: 26px;
}
h1 em {
  font-style: normal;
  color: var(--lime);
}
.hero-description {
  font-size: 18px;
  line-height: 1.65;
  max-width: 530px;
  color: #c0c8bf;
}
.actions {
  display: flex;
  gap: 12px;
  margin-top: 31px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 15px 21px;
  font-weight: 600;
  font-size: 14px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button.primary {
  background: var(--lime);
  color: var(--ink);
}
.button.primary:hover {
  background: #e0ff86;
}
.button.secondary {
  border: 1px solid #53604e;
}
.hero-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin: 20px 0 0;
}
.network-art {
  height: 515px;
  position: relative;
  overflow: hidden;
  border: 1px solid #364633;
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 50% 50%, #34402780, transparent 65%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 31px,
      #4c5a3e24 32px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 31px,
      #4c5a3e24 32px
    ),
    #171e16;
}
.art-top,
.art-bottom {
  position: absolute;
  left: 23px;
  right: 23px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: #b1bda5;
  z-index: 2;
}
.art-top {
  top: 22px;
}
.art-bottom {
  bottom: 20px;
  border-top: 1px solid #47543b;
  padding-top: 13px;
}
.orbit {
  border: 1px solid #718b4e66;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);
}
.orbit-one {
  width: 72%;
  height: 73%;
}
.orbit-two {
  width: 42%;
  height: 73%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.orbit-three {
  width: 80%;
  height: 36%;
  transform: translate(-50%, -50%) rotate(-25deg);
}
.network-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.network-center > span {
  display: block;
  font-size: 88px;
  color: var(--lime);
  font-weight: 600;
  letter-spacing: -10px;
  line-height: 1;
}
.network-center small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1px;
  color: #bdcba9;
  white-space: nowrap;
}
.map-node {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  background: #1a2218;
  border: 1px solid #53613f;
  border-radius: 4px;
  padding: 5px 10px;
  color: #d9e3ce;
}
.node-fra {
  left: 58%;
  top: 16%;
}
.node-ams {
  left: 31%;
  top: 21%;
}
.node-lon {
  left: 12%;
  top: 35%;
}
.node-tyo {
  right: 9%;
  top: 35%;
}
.node-sgp {
  right: 12%;
  bottom: 28%;
}
.node-nyc {
  left: 14%;
  bottom: 33%;
}
.node-lax {
  left: 39%;
  bottom: 17%;
}
.node-ore {
  left: 12%;
  top: 50%;
}
.node-col {
  right: 17%;
  bottom: 43%;
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.node-col i {
  display: inline-block;
  background: var(--ink);
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.chain-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 25px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  max-width: 1512px;
  margin: auto;
}
.chain-strip > span {
  font: 10px var(--mono);
  letter-spacing: 1px;
  color: var(--muted);
}
.chain-strip strong {
  font-size: 21px;
  font-weight: 500;
}
.chain-strip small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}
.chain-strip a {
  font-size: 12px;
  color: var(--lime);
}
.section {
  max-width: 1512px;
  margin: auto;
  padding: 88px 5%;
}
h2 {
  font-size: clamp(35px, 4vw, 53px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 40px;
}
h3 {
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 58px;
}
.benefits article {
  border-top: 1px solid var(--line);
  padding-top: 21px;
}
.ordinal {
  font: 11px var(--mono);
  color: var(--lime);
}
.benefits h3 {
  font-size: 22px;
  margin: 24px 0 15px;
  font-weight: 500;
}
.benefits p {
  font-size: 15px;
  color: var(--muted);
  max-width: 340px;
}
.network-section {
  background: #192019;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  margin-bottom: 45px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 365px;
  color: #b3bfb0;
  font-size: 15px;
  margin-bottom: 0;
}
.region-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.region-card {
  padding: 22px;
  background: #202a1d;
  border: 1px solid #3b4932;
  border-radius: 6px;
}
.region-card > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.region-code {
  color: var(--lime);
  font: 13px var(--mono);
  letter-spacing: 1px;
}
.status {
  display: inline-block;
  font: 10px var(--mono);
  border: 1px solid #738365;
  padding: 3px 6px;
  border-radius: 3px;
  color: #d4ddca;
  white-space: nowrap;
}
.status.existing,
.status.live {
  color: var(--lime);
  border-color: #829955;
}
.region-card h3 {
  font-size: 22px;
  margin: 23px 0 4px;
  font-weight: 500;
}
.region-card p {
  font-size: 12px;
  color: #a6b19f;
  margin: 0;
}
.network-note {
  margin: 26px 0 0;
  font-size: 12px;
  color: #b7c2ae;
  max-width: 870px;
}
.network-note a {
  color: var(--lime);
}
.integration {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}
.integration h2 {
  margin-bottom: 22px;
}
.integration > div > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 350px;
  font-size: 15px;
}
.text-link {
  color: var(--lime);
  font-size: 14px;
}
.code {
  border: 1px solid #485440;
  border-radius: 7px;
  background: #0d120e;
  overflow: hidden;
  margin: 22px 0;
}
.code-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 17px;
  border-bottom: 1px solid #34402f;
  color: #b8c5ad;
  font: 10px var(--mono);
  letter-spacing: 0.4px;
  gap: 12px;
}
.code button {
  background: transparent;
  border: 1px solid #5c6a4f;
  color: #d4e6ba;
  border-radius: 4px;
  font: 10px var(--mono);
  padding: 5px 9px;
  cursor: pointer;
}
.code pre {
  padding: 24px 19px;
  overflow: auto;
  margin: 0;
  color: #d1efab;
  font: 11px/1.8 var(--mono);
  tab-size: 2;
}
.code code {
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
}
.access-panel {
  border-top: 1px solid var(--line);
  text-align: center;
  padding-top: 95px;
  padding-bottom: 90px;
  background: radial-gradient(
    ellipse at center bottom,
    #3b4a2440,
    transparent 65%
  );
}
.access-panel h2 {
  font-size: clamp(44px, 5.5vw, 74px);
  margin-bottom: 25px;
  letter-spacing: -3px;
}
.access-panel h2 span {
  color: var(--lime);
}
.access-panel > p:not(.eyebrow) {
  max-width: 460px;
  margin: 0 auto 28px;
  color: #b1bdaa;
  font-size: 15px;
}
.access-panel .access-note {
  font-size: 11px !important;
  margin: 20px auto 0 !important;
}
footer {
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
footer .brand {
  color: var(--paper);
  font-size: 24px;
}
footer p {
  margin: 0;
  flex: 1;
}
footer > span {
  font: 10px var(--mono);
}
code {
  font-family: var(--mono);
  font-size: 0.87em;
  overflow-wrap: anywhere;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  text-align: left;
  margin: 24px 0;
}
th,
td {
  padding: 15px 13px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
td small {
  display: block;
  font-size: 11px;
  margin-top: 8px;
  color: var(--muted);
  min-width: 180px;
}
.table-scroll {
  overflow-x: auto;
}
.docs-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  max-width: 1300px;
  margin: auto;
  gap: 65px;
  padding: 55px 5% 75px;
}
.sidebar {
  position: sticky;
  top: 30px;
  align-self: start;
}
.sidebar label {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-bottom: 7px;
}
.sidebar input {
  width: 100%;
  background: #20291f;
  color: var(--paper);
  border: 1px solid #52614a;
  border-radius: 5px;
  padding: 12px;
  font-size: 13px;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 25px;
}
.sidebar nav a {
  text-decoration: none;
  padding: 9px 12px;
  font-size: 13px;
  color: #b9c5b2;
  border-left: 2px solid transparent;
}
.sidebar nav a:hover {
  background: #253021;
}
.sidebar nav a[aria-current] {
  color: var(--lime);
  background: #253021;
  border-left-color: var(--lime);
}
.sidebar-support {
  font-size: 11px;
  display: block;
  margin: 28px 12px;
  color: var(--muted);
}
.search-results {
  border: 1px solid #71805c;
  background: #20291f;
  padding: 13px;
  font-size: 12px;
  margin-top: 8px;
}
.search-results a {
  display: block;
  padding: 8px;
}
.doc-content {
  min-width: 0;
  max-width: 800px;
}
.doc-content h1 {
  font-size: 47px;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 25px;
}
.doc-content h2 {
  font-size: 26px;
  letter-spacing: -0.7px;
  line-height: 1.2;
  margin: 46px 0 19px;
}
.doc-content p,
.doc-content li,
.doc-content dd {
  font-size: 15px;
  color: #c2cbbd;
  line-height: 1.8;
}
.doc-content li {
  margin: 10px 0;
}
.doc-content li::marker {
  color: var(--lime);
}
.doc-content .lead {
  font-size: 19px;
  color: #d2ddc9;
  line-height: 1.6;
}
.doc-content a {
  color: var(--lime);
}
.doc-content p code,
.doc-content li code {
  background: #283323;
  border: 1px solid #3d4b33;
  padding: 2px 4px;
  border-radius: 3px;
  color: #e0ebd6;
}
.notice {
  border: 1px solid #657a46;
  border-left: 3px solid var(--lime);
  padding: 20px 24px;
  background: #26311e;
  margin: 28px 0;
}
.notice strong {
  color: var(--lime);
  font-size: 14px;
}
.notice p {
  font-size: 13px;
  margin: 9px 0 0;
  color: #d4dfca;
}
.link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0;
}
.link-grid > a {
  border: 1px solid var(--line);
  border-radius: 5px;
  text-decoration: none;
  padding: 20px;
  font-size: 15px;
}
.link-grid > a:hover {
  background: #26311e;
}
.link-grid span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.doc-content dt {
  font-weight: 600;
  margin-top: 23px;
}
.doc-content dd {
  margin: 8px 0 22px;
}
.doc-bottom {
  border-top: 1px solid var(--line);
  margin-top: 50px;
  padding-top: 24px;
  font-size: 11px;
  color: var(--muted);
}
@media (min-width: 900px) {
  .hero-copy {
    animation: appear 0.7s ease both;
  }
  .network-art {
    animation: appear 0.9s 0.12s ease both;
  }
  @keyframes appear {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
@media (max-width: 1050px) {
  header nav {
    gap: 18px;
  }
  .hero {
    gap: 30px;
  }
  .network-art {
    height: 450px;
  }
  h1 {
    letter-spacing: -3px;
  }
  .chain-strip {
    gap: 20px;
  }
  .chain-strip > span {
    max-width: 95px;
  }
  .chain-strip a {
    max-width: 110px;
  }
  .integration {
    gap: 32px;
  }
  .docs-layout {
    gap: 35px;
    grid-template-columns: 220px minmax(0, 1fr);
  }
}
@media (max-width: 760px) {
  header {
    padding: 20px 6%;
    gap: 12px;
  }
  .brand {
    font-size: 24px;
  }
  header nav {
    gap: 14px;
    font-size: 12px;
  }
  header nav > a:not(.nav-cta) {
    display: none;
  }
  .nav-cta {
    padding: 8px 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 6%;
    gap: 40px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.8px;
  }
  h1 {
    font-size: 58px;
    letter-spacing: -3px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 440px;
  }
  .button {
    padding: 14px 16px;
    font-size: 13px;
    gap: 15px;
  }
  .network-art {
    height: 380px;
    max-width: 520px;
    width: 100%;
    margin: auto;
  }
  .network-center > span {
    font-size: 70px;
  }
  .chain-strip {
    padding: 23px 6%;
    flex-wrap: wrap;
    gap: 21px;
  }
  .chain-strip > span {
    max-width: none;
    width: 100%;
    font-size: 9px;
  }
  .chain-strip strong {
    font-size: 19px;
  }
  .chain-strip a {
    max-width: none;
    width: 100%;
    font-size: 11px;
  }
  .section {
    padding: 56px 6%;
  }
  h2 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }
  .benefits {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }
  .benefits article {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 0 12px;
  }
  .benefits h3 {
    margin: 0 0 14px;
    font-size: 21px;
  }
  .benefits p {
    grid-column: 2;
    max-width: none;
    font-size: 14px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 23px;
    font-size: 14px;
  }
  .region-cards {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .region-card {
    padding: 17px 13px;
  }
  .region-code {
    font-size: 11px;
  }
  .status {
    font-size: 8px;
    padding: 3px 4px;
  }
  .region-card h3 {
    font-size: 19px;
  }
  .region-card p {
    font-size: 10px;
  }
  .network-note {
    font-size: 11px;
  }
  .integration {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .code pre {
    font-size: 10px;
    padding: 17px 13px;
  }
  .access-panel h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  footer {
    padding: 28px 6%;
    gap: 18px;
  }
  footer p {
    flex-basis: 50%;
    font-size: 11px;
  }
  footer > span {
    font-size: 9px;
  }
  .docs-layout {
    display: block;
    padding: 30px 6%;
  }
  .sidebar {
    position: static;
    margin-bottom: 36px;
  }
  .sidebar .eyebrow {
    display: none;
  }
  .sidebar nav {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 9px;
    gap: 3px;
    margin-top: 15px;
  }
  .sidebar nav a {
    white-space: nowrap;
    border-left: 0;
    border-bottom: 2px solid transparent;
    padding: 8px 10px;
    font-size: 12px;
  }
  .sidebar nav a[aria-current] {
    border-left: 0;
    border-bottom-color: var(--lime);
  }
  .sidebar-support {
    display: none;
  }
  .doc-content h1 {
    font-size: 39px;
    letter-spacing: -1.8px;
  }
  .doc-content .lead {
    font-size: 17px;
  }
  .doc-content p,
  .doc-content li,
  .doc-content dd {
    font-size: 14px;
  }
  .doc-content h2 {
    font-size: 25px;
  }
  .doc-content table {
    display: block;
    overflow-x: auto;
    font-size: 12px;
  }
  .doc-content th,
  .doc-content td {
    min-width: 95px;
    padding: 12px 10px;
  }
  .link-grid {
    grid-template-columns: 1fr;
  }
  .notice {
    padding: 17px;
  }
  .code-bar {
    padding: 10px 12px;
    font-size: 9px;
  }
  .network-art .art-top,
  .network-art .art-bottom {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
