:root {
  color-scheme: dark;
  --bg: #10120f;
  --panel: #191c16;
  --line: #33372d;
  --text: #eceee4;
  --dim: #989f8c;
  --lime: #c4ed82;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 35px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 6px;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin: auto;
}
.nav {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand strong {
  font-size: 24px;
  letter-spacing: -1px;
}
.brand-icon {
  background: var(--lime);
  color: var(--bg);
  font-size: 30px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  font-weight: bold;
}
.brand-slash {
  margin: 0 12px;
  color: #626858;
  font-weight: normal;
}
.brand-lab {
  font-size: 18px;
  font-weight: normal;
  letter-spacing: -0.5px;
}
.nav nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: #bec3b4;
}
.nav nav a:hover,
.text-link:hover {
  color: var(--lime);
}
.local {
  font: 10px monospace;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.local i {
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding: 68px 0 64px;
  align-items: center;
}
.eyebrow {
  font: 10px monospace;
  letter-spacing: 1.7px;
  color: #b5bca6;
  margin: 0 0 30px;
}
.tiny-cross {
  color: var(--lime);
  font-size: 18px;
  margin-right: 10px;
  vertical-align: middle;
}
h1 {
  font-size: clamp(56px, 6.5vw, 91px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -5px;
  margin: 0 0 26px;
  position: relative;
}
.serif {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: normal;
  color: var(--lime);
  letter-spacing: -4px;
}
.muted {
  color: #878e7c;
}
.hero-star {
  color: var(--lime);
  font-size: 86px;
  margin-left: 30px;
  font-family: Arial;
}
.intro {
  color: #a9b09e;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.5px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}
.button {
  border: 0;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  gap: 38px;
  font-size: 13px;
  font-weight: 600;
}
.primary {
  background: var(--lime);
  color: #19210f;
}
.primary:hover {
  background: #d8faa5;
}
.text-link {
  font-size: 13px;
}
.text-link span {
  margin-left: 12px;
}
.micro {
  font: 8px monospace;
  letter-spacing: 1.2px;
  color: #89927a;
  margin-top: 29px;
}
.art {
  margin: 0;
  border: 1px solid var(--line);
  background: #161912;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.art-top {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  font: 8px monospace;
  letter-spacing: 1px;
  color: #a5ad96;
}
.art svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 535px;
}
.art figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 20px;
  font-size: 10px;
  color: #b5bca6;
}
.art-coordinate {
  font: 7px monospace;
  align-self: center;
}
.protocol-strip {
  border-block: 1px solid var(--line);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 85px;
}
.strip-inner > span {
  font: 9px monospace;
  color: #929c83;
}
.strip-inner > span:last-child {
  font-family: inherit;
}
.strip-inner strong {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.strip-inner b {
  color: var(--lime);
  padding: 0 17px;
  font-weight: 400;
}
.section {
  padding: 92px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 35px;
  align-items: start;
  margin-bottom: 40px;
}
.section-heading .eyebrow {
  padding-top: 9px;
}
h2 {
  font-size: 40px;
  letter-spacing: -1.7px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.section-heading > p:last-child {
  font-size: 12px;
  line-height: 1.9;
  color: var(--dim);
  margin-top: 9px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.cap-grid article {
  padding: 27px 29px 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 225px;
}
.card-index {
  font: 10px monospace;
  color: var(--dim);
  display: flex;
  justify-content: space-between;
}
.card-index span {
  font-size: 19px;
  color: #b6beaa;
}
.cap-grid h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 24px 0 13px;
}
.cap-grid p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--dim);
  max-width: 285px;
  margin: 0 0 23px;
}
.cap-grid code {
  font-size: 10px;
  color: #bec9af;
  overflow-wrap: anywhere;
}
.human-card {
  background: #c4ed82;
  color: #182111;
  position: relative;
}
.human-card p {
  color: #435133;
}
.human-card a {
  font-size: 12px;
  border-bottom: 1px solid #6b8151;
  padding-bottom: 5px;
}
.human-symbol {
  float: right;
  font-size: 44px;
  line-height: 1;
}
.connect-section {
  background: #171a14;
  border-block: 1px solid var(--line);
  padding: 80px 0;
}
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 100px;
}
.connect-copy {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.9;
  max-width: 310px;
  margin: 24px 0 30px;
}
.tabs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.tabs button {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 20px 6px;
  color: #919b82;
  font: 12px monospace;
  display: flex;
  justify-content: space-between;
}
.tabs button[aria-selected="true"] {
  color: var(--lime);
}
.tabs button span {
  font-size: 18px;
}
.terminal {
  border: 1px solid #3b4132;
  min-width: 0;
  background: #0d100b;
  align-self: start;
}
.terminal-bar {
  padding: 16px 19px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font: 9px monospace;
  color: #9aa78a;
}
.terminal-bar i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #56634a;
  border-radius: 50%;
  margin-right: 5px;
}
.terminal-bar button {
  border: 0;
  background: none;
  color: #c3ccb7;
  font-size: 10px;
}
.terminal-body {
  padding: 26px;
}
.comment {
  font: 11px monospace;
  color: #78886b;
  margin: 0 0 20px;
}
pre {
  font: 12px/1.9 monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0;
  color: #c9deae;
}
.terminal-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 25px 0 18px;
}
.terminal-actions .button {
  font-size: 11px;
  padding: 12px 15px;
  gap: 20px;
}
.terminal-actions a {
  font-size: 10px;
  color: #acb99a;
}
.terminal-body > p:not(.comment) {
  font-size: 10px;
  line-height: 1.7;
  color: #919d84;
}
.response-head {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding: 18px 0 12px;
  display: flex;
  justify-content: space-between;
  font: 9px monospace;
  color: #9bab89;
}
.response {
  max-height: 260px;
  overflow: auto;
  min-height: 67px;
  color: #aab99a;
  font-size: 11px;
}
.closing {
  padding: 85px 0;
}
.closing > div:not(.resource-links) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing p:not(.eyebrow) {
  font-size: 14px;
  line-height: 2;
  color: var(--dim);
  max-width: 390px;
}
.resource-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}
.resource-links a {
  padding: 20px 0;
  border-block: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.resource-links span {
  color: var(--lime);
}
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
footer .brand strong {
  font-size: 18px;
}
footer .brand-lab {
  font-size: 11px;
  margin-left: 10px;
}
footer > span {
  font-size: 10px;
  color: #a0a891;
}
footer > span:last-child {
  font: 8px monospace;
  letter-spacing: 1px;
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 80px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero {
    gap: 24px;
  }
  h1 {
    font-size: 65px;
  }
  .hero-star {
    font-size: 60px;
  }
  .art-coordinate {
    display: none;
  }
  .connect-grid {
    gap: 40px;
  }
  .section-heading {
    grid-template-columns: 0.7fr 1fr;
  }
  .section-heading > p:last-child {
    grid-column: 2;
  }
  .strip-inner > span:last-child {
    display: none;
  }
  .cap-grid article {
    padding: 22px;
  }
  .brand-lab {
    font-size: 15px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .nav {
    height: 80px;
  }
  .nav nav {
    gap: 18px;
    font-size: 11px;
  }
  .nav nav a:last-child {
    display: none;
  }
  .nav .local {
    display: none;
  }
  .brand strong {
    font-size: 20px;
  }
  .brand-icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
  }
  .brand-slash {
    margin-inline: 7px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 38px 0;
    gap: 35px;
  }
  h1 {
    font-size: 70px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .hero .eyebrow {
    margin-bottom: 25px;
  }
  .intro {
    font-size: 13px;
  }
  .art {
    max-width: 100%;
  }
  .art svg {
    max-height: 430px;
  }
  .micro {
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .strip-inner {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding-block: 22px;
  }
  .strip-inner strong {
    font-size: 19px;
  }
  .strip-inner b {
    padding: 0 12px;
  }
  .section {
    padding: 50px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading .eyebrow {
    margin-bottom: 18px;
  }
  h2 {
    font-size: 34px;
  }
  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cap-grid article {
    padding: 19px 15px;
    min-height: 225px;
  }
  .cap-grid h3 {
    font-size: 17px;
  }
  .cap-grid p {
    font-size: 11px;
  }
  .cap-grid code {
    font-size: 9px;
  }
  .human-symbol {
    font-size: 30px;
  }
  .connect-section {
    padding: 48px 0;
  }
  .connect-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tabs {
    flex-direction: row;
  }
  .tabs button {
    flex: 1;
    font-size: 10px;
    gap: 10px;
  }
  .terminal-body {
    padding: 19px;
  }
  .terminal-bar {
    padding: 15px;
  }
  .terminal-actions {
    gap: 15px;
  }
  .closing {
    padding: 50px 0;
  }
  .closing > div:not(.resource-links) {
    display: block;
  }
  .resource-links {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 25px;
  }
  .resource-links a {
    border-top: 0;
  }
  footer {
    flex-wrap: wrap;
  }
  footer > span:nth-child(2) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Readable service disclosures and the existing company mark. */
.legal-footer {
  display: block;
  padding-top: 36px;
  padding-bottom: 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 17px;
}
.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #fff;
  flex-shrink: 0;
}
.footer-brand strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
}
.footer-brand > span > span {
  display: block;
  margin-top: 8px;
  color: #b4bda9;
  font-size: 12px;
}
.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 12px;
}
.footer-policies a {
  padding-block: 10px;
  border-bottom: 1px solid #515b44;
}
.footer-policies a:hover {
  color: var(--lime);
}
.footer-disclosures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
  padding-block: 28px;
  border-block: 1px solid var(--line);
}
.footer-disclosures h3 {
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 12px;
  color: #d6ddcd;
}
.footer-disclosures p {
  font-size: 12px;
  line-height: 1.95;
  color: #afb8a3;
  margin: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 20px;
}
.footer-bottom p {
  font-size: 11px;
  line-height: 1.8;
  color: #aeb8a1;
  margin: 0;
}
@media (max-width: 800px) {
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .footer-disclosures {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-policies {
    gap: 18px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav .language-switch {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  padding: 4px;
  font-size: 11px;
}
.nav .language-switch a {
  display: block;
  padding: 8px 10px;
  color: #a9b49b;
}
.nav .language-switch a[aria-current="page"] {
  background: var(--lime);
  color: #15200d;
}
html[lang="en"] h1 {
  font-size: clamp(54px, 5.8vw, 82px);
  letter-spacing: -4px;
  line-height: 1.08;
}
html[lang="en"] h1 .serif {
  letter-spacing: -3px;
}
html[lang="en"] .section-heading h2 {
  font-size: 36px;
}
html[lang="en"] .connect-grid h2 {
  font-size: 37px;
}
html[lang="en"] .actions {
  gap: 20px;
}
html[lang="en"] .actions .button {
  gap: 20px;
}
@media (max-width: 1000px) {
  .nav-tools {
    gap: 12px;
  }
  .nav-tools .local {
    display: none;
  }
}
@media (max-width: 700px) {
  .nav {
    flex-wrap: wrap;
    height: auto;
    min-height: 108px;
    padding-block: 16px;
    gap: 16px;
  }
  .nav > nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }
  .nav .language-switch a:last-child {
    display: block;
  }
  .nav .language-switch {
    gap: 0;
  }
  .nav-tools {
    margin-left: auto;
  }
  html[lang="en"] h1 {
    font-size: 58px;
    letter-spacing: -3px;
  }
  html[lang="en"] .actions {
    gap: 16px;
  }
  html[lang="en"] .actions .text-link {
    font-size: 12px;
  }
  .terminal-actions {
    flex-wrap: wrap;
  }
}

.brand-logo {
  width: 39px;
  height: 39px;
  display: block;
  flex-shrink: 0;
  border-radius: 6px;
}
@media (max-width: 700px) {
  .brand-logo {
    width: 30px;
    height: 30px;
    border-radius: 5px;
  }
}
