@font-face {
  font-family: "Geist";
  src: url("/assets/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOMImpna-5600437a.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg-a01a272b.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg-fd5c36dd.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #030303;
  --panel: #0a0a0a;
  --panel-2: #10110d;
  --white: #fff;
  --lime: #efffbe;
  --muted: #999;
  --dim: #626262;
  --line: #2b2b2b;
  --lime-line: rgba(239, 255, 190, 0.24);
  color-scheme: dark;
  font-family: "Geist", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(rgba(239, 255, 190, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 255, 190, 0.018) 1px, transparent 1px),
    var(--black);
  background-size: 64px 64px;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--lime);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  min-height: 72px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 3, 0.9);
  backdrop-filter: blur(16px);
}

.site-header,
.docs-hero,
.docs-shell,
.docs-footer {
  width: min(calc(100% - 48px), 1200px);
  margin-inline: auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  width: 106px;
  margin-left: 28px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.current {
  color: var(--white);
}

.site-nav a.current::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 4px 0 var(--lime);
  content: "";
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-right: 28px;
}

.header-button {
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  padding: 0 18px;
  border: 1px solid var(--white);
  color: var(--black);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-button:hover {
  border-color: var(--lime);
  color: var(--black);
  background: var(--lime);
}

.header-button.dark {
  color: var(--white);
  background: var(--black);
}

.docs-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 46%, rgba(239, 255, 190, 0.1), transparent 26%),
    repeating-linear-gradient(90deg, transparent 0 15px, rgba(239, 255, 190, 0.075) 15px 16px);
  mask-image: linear-gradient(120deg, transparent 4%, #000 35%, #000 74%, transparent 96%);
  opacity: 0.65;
}

.hero-grid::before,
.hero-grid::after {
  position: absolute;
  border: 1px solid var(--lime-line);
  border-radius: 50%;
  content: "";
}

.hero-grid::before {
  width: 580px;
  height: 580px;
  top: -180px;
  right: -90px;
  box-shadow: 0 0 0 64px rgba(239, 255, 190, 0.025), 0 0 0 128px rgba(239, 255, 190, 0.012);
}

.hero-grid::after {
  width: 320px;
  height: 320px;
  right: 105px;
  bottom: -190px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  justify-content: center;
  padding: 100px 7.5%;
}

.eyebrow,
.section-index,
.sidebar-label,
.card-kicker {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
  color: var(--lime);
  font-size: 11px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.docs-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero-copy {
  max-width: 690px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-meta {
  display: grid;
  width: min(100%, 820px);
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-meta div {
  display: flex;
  min-height: 82px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 3, 0.68);
}

.hero-meta span {
  color: var(--dim);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta strong {
  font-size: 13px;
  font-weight: 400;
}

.status-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
}

.status-live i,
.sidebar-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

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

.docs-sidebar {
  position: sticky;
  top: 72px;
  min-height: calc(100vh - 72px);
  padding: 44px 24px;
  border-right: 1px solid var(--line);
}

.sidebar-label {
  margin: 0 0 18px;
  color: var(--dim);
  font-size: 10px;
}

.section-nav {
  display: flex;
  flex-direction: column;
}

.section-nav a {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #767676;
  font-size: 13px;
  text-decoration: none;
  transition: color 150ms ease, padding 150ms ease;
}

.section-nav a span {
  color: #404040;
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.section-nav a:hover,
.section-nav a.active {
  padding-left: 7px;
  color: var(--white);
}

.section-nav a.active span {
  color: var(--lime);
}

.sidebar-status {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 38px;
  padding: 16px;
  border: 1px solid var(--lime-line);
  background: rgba(239, 255, 190, 0.025);
}

.sidebar-status > span {
  color: var(--dim);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-status strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 400;
}

.sidebar-status small {
  color: #666;
  font-size: 11px;
  line-height: 1.45;
}

.docs-content {
  min-width: 0;
}

.doc-section {
  padding: 82px clamp(32px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 72px;
}

.section-index {
  margin: 0 0 22px;
  color: var(--lime);
  font-size: 10px;
}

.doc-section h2 {
  max-width: 760px;
  margin: 0 0 25px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1;
}

.doc-section > p:not(.section-index),
.doc-section li p,
.info-card p,
.model-card p,
.roadmap-item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.doc-section .lead {
  max-width: 760px;
  color: #d9d9d9;
  font-size: 21px;
  line-height: 1.55;
}

.callout {
  display: flex;
  gap: 18px;
  margin-top: 38px;
  padding: 24px;
  border: 1px solid var(--lime-line);
  background: rgba(239, 255, 190, 0.035);
}

.callout-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  font-size: 21px;
}

.callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 13px;
  text-transform: uppercase;
}

.callout p {
  margin: 0;
  color: #aaa;
  line-height: 1.6;
}

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  margin: 38px 0;
}

.flow > b {
  display: grid;
  width: 28px;
  place-items: center;
  color: var(--lime);
  font-weight: 400;
}

.flow-node {
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.flow-node span,
.model-card > span {
  color: var(--lime);
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.flow-node strong {
  display: block;
  margin-top: 28px;
  font-size: 14px;
}

.flow-node small {
  display: block;
  margin-top: 8px;
  color: #6c6c6c;
  font-size: 11px;
  line-height: 1.5;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.info-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.info-card.lime {
  background: linear-gradient(140deg, rgba(239, 255, 190, 0.065), transparent 70%), var(--panel);
}

.card-kicker {
  color: var(--lime);
  font-size: 9px;
}

.info-card h3 {
  margin: 50px 0 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.info-card p {
  margin: 0;
  font-size: 14px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.model-card {
  position: relative;
  min-height: 230px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(255, 255, 255, 0.018) 4px 5px),
    var(--panel);
}

.model-card::after {
  position: absolute;
  width: 160px;
  height: 160px;
  right: -85px;
  bottom: -85px;
  border: 1px solid var(--lime-line);
  border-radius: 50%;
  content: "";
}

.model-card h3 {
  max-width: 250px;
  margin: 50px 0 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.model-card p {
  max-width: 330px;
  margin: 0;
  font-size: 13px;
}

.model-card i {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--lime);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-style: normal;
}

.note {
  margin-top: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--lime);
  font-size: 13px !important;
}

.step-list {
  padding: 0;
  margin: 40px 0 0;
  list-style: none;
}

.step-list li {
  display: grid;
  min-height: 122px;
  grid-template-columns: 70px 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
}

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

.step-list > li > span {
  color: var(--lime);
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

.step-list h3 {
  margin: 0 0 7px;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.step-list p {
  margin: 0;
  font-size: 14px !important;
}

.definition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.definition-grid > div {
  min-height: 130px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.definition-grid span {
  color: var(--lime);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.definition-grid p {
  margin: 22px 0 0;
  color: #858585;
  font-size: 13px;
  line-height: 1.5;
}

.metrics-table {
  margin-top: 36px;
  border: 1px solid var(--line);
}

.table-row {
  display: grid;
  min-height: 62px;
  grid-template-columns: 1fr 2fr 0.7fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row > * {
  padding: 15px 18px;
}

.table-row strong {
  font-size: 13px;
  font-weight: 400;
}

.table-row span {
  color: #858585;
  font-size: 13px;
}

.table-row em {
  color: var(--lime);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
}

.table-head {
  min-height: 44px;
  color: #666;
  background: var(--panel);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reward-formula {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 34px 0;
  padding: 28px;
  border: 1px solid var(--lime-line);
  background: var(--lime);
  color: var(--black);
}

.reward-formula span {
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.reward-formula strong {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(19px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  margin: 28px 0 0;
  background: var(--line);
  list-style: none;
}

.check-list li {
  padding: 18px 20px;
  color: #aaa;
  background: var(--panel);
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

.check-list li::before {
  margin-right: 10px;
  color: var(--lime);
  content: "✓";
}

.watermark-diagram {
  position: relative;
  height: 330px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--panel);
  background-size: 52px 52px;
}

.watermark-diagram svg {
  position: absolute;
  right: 4%;
  bottom: 28px;
  left: 5%;
  width: 91%;
}

.curve {
  fill: none;
  stroke: var(--lime);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.area {
  fill: url("#none");
  opacity: 0.12;
  stroke: none;
}

.watermark-line {
  position: absolute;
  z-index: 2;
  top: 96px;
  right: 0;
  left: 0;
  border-top: 1px dashed rgba(239, 255, 190, 0.55);
}

.watermark-line span {
  position: absolute;
  top: -22px;
  right: 18px;
  color: var(--lime);
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.axis-label {
  position: absolute;
  top: 16px;
  left: 18px;
  color: #656565;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.diagram-label {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.diagram-label.loss {
  left: 23%;
  color: #777;
}

.diagram-label.gain {
  right: 5%;
  color: var(--lime);
}

.rule {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  margin-top: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.rule span {
  padding: 19px;
  border-right: 1px solid var(--line);
  color: var(--lime);
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.rule code {
  overflow: auto;
  padding: 19px;
  color: #aaa;
  font-size: 12px;
}

.wallet-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.wallet-steps > div {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-right: 0;
  background: var(--panel);
}

.wallet-steps > div:last-child {
  border-right: 1px solid var(--line);
}

.wallet-steps span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.wallet-steps strong {
  display: block;
  margin-top: 34px;
  font-size: 13px;
}

.wallet-steps p {
  margin: 9px 0 0;
  color: #717171;
  font-size: 11px;
  line-height: 1.5;
}

.wallet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.wallet-list span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: #858585;
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.inline-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 60px;
  margin-top: 30px;
  padding: 0 18px;
  color: var(--black);
  background: var(--lime);
  font-size: 13px;
  text-decoration: none;
}

.inline-cta span {
  font-size: 18px;
}

.code-list {
  margin-top: 38px;
  border: 1px solid var(--line);
}

.code-list > div {
  display: grid;
  min-height: 58px;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.code-list > div:last-child {
  border-bottom: 0;
}

.code-list span {
  padding: 18px;
  color: #686868;
  font-size: 11px;
}

.code-list code,
.code-list a {
  overflow: hidden;
  padding: 18px;
  color: #bbb;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.code-list button,
.contract button {
  min-height: 32px;
  margin-right: 12px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: #999;
  background: transparent;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  cursor: pointer;
}

.code-list button:hover,
.contract button:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.subheading {
  margin: 40px 0 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.contract {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--lime-line);
  background: rgba(239, 255, 190, 0.035);
}

.contract code {
  overflow: hidden;
  color: var(--lime);
  font-family: ui-monospace, monospace;
  font-size: 12px;
  text-overflow: ellipsis;
}

.roadmap {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.roadmap-item {
  display: grid;
  min-height: 126px;
  grid-template-columns: 90px 1fr 1.7fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.roadmap-item > span {
  color: #696969;
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.roadmap-item.complete > span {
  color: var(--lime);
}

.roadmap-item h3 {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 500;
}

.roadmap-item p {
  margin: 0;
  font-size: 13px;
}

.end-card {
  position: relative;
  margin-top: 78px;
  padding: clamp(32px, 6vw, 64px);
  overflow: hidden;
  border: 1px solid var(--lime-line);
  background:
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(239, 255, 190, 0.045) 14px 15px),
    var(--panel-2);
}

.end-card::after {
  position: absolute;
  width: 320px;
  height: 320px;
  right: -150px;
  bottom: -180px;
  border: 1px solid var(--lime-line);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(239, 255, 190, 0.02);
  content: "";
}

.end-card h2 {
  max-width: 620px;
  margin-bottom: 18px;
}

.end-card > p:not(.eyebrow) {
  max-width: 590px;
}

.end-card > div {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.docs-footer {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  color: #666;
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.docs-footer .brand {
  margin: 0;
}

.docs-footer a:last-child {
  color: #888;
  text-decoration: none;
}

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

  .site-nav {
    display: none;
  }

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

  .flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .flow > b {
    display: none;
  }

  .wallet-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wallet-steps > div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .wallet-steps > div:nth-child(n + 3) {
    border-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header,
  .docs-hero,
  .docs-shell,
  .docs-footer {
    width: 100%;
    border-right: 0;
    border-left: 0;
  }

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

  .brand {
    width: 90px;
    margin-left: 16px;
  }

  .header-actions {
    gap: 7px;
    margin-right: 12px;
  }

  .header-button {
    min-height: 36px;
    padding: 0 11px;
    font-size: 10px;
  }

  .docs-hero,
  .hero-content {
    min-height: 590px;
  }

  .hero-content {
    padding: 78px 22px 54px;
  }

  .docs-hero h1 {
    font-size: clamp(47px, 14vw, 68px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 38px;
  }

  .docs-shell {
    display: block;
  }

  .docs-sidebar {
    position: sticky;
    z-index: 30;
    top: 64px;
    min-height: 0;
    padding: 0;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(3, 3, 3, 0.96);
    scrollbar-width: none;
  }

  .docs-sidebar::-webkit-scrollbar {
    display: none;
  }

  .sidebar-label,
  .sidebar-status {
    display: none;
  }

  .section-nav {
    width: max-content;
    flex-direction: row;
  }

  .section-nav a {
    min-height: 48px;
    padding: 0 16px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    white-space: nowrap;
  }

  .section-nav a:hover,
  .section-nav a.active {
    padding-right: 16px;
    padding-left: 16px;
    color: var(--lime);
  }

  .doc-section {
    padding: 64px 22px;
    scroll-margin-top: 112px;
  }

  .doc-section h2 {
    font-size: 42px;
  }

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

  .flow,
  .model-grid,
  .two-column,
  .definition-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .table-row > * {
    padding: 5px 16px;
  }

  .table-head {
    display: none;
  }

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

  .wallet-steps > div {
    min-height: 150px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .wallet-steps > div:last-child {
    border-bottom: 1px solid var(--line);
  }

  .code-list > div {
    grid-template-columns: 1fr auto;
    padding: 12px 0;
  }

  .code-list span {
    grid-column: 1 / -1;
    padding: 4px 14px;
  }

  .code-list code,
  .code-list a {
    padding: 8px 14px;
  }

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

  .contract code {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .contract button {
    align-self: flex-start;
  }

  .roadmap-item {
    grid-template-columns: 70px 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .roadmap-item p {
    grid-column: 2;
  }

  .docs-footer {
    min-height: 140px;
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 22px;
  }
}

@media (max-width: 390px) {
  .header-actions .header-button:first-child {
    display: none;
  }
}

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

  * {
    transition: none !important;
  }
}

.callout-mark .brand-glyph {
  display: block;
  width: 78%;
  height: auto;
  margin: auto;
}


.callout-mark {
  border: 1px solid rgba(239, 255, 190, 0.35);
  background: #0b0c09;
}

.site-header .brand,
.docs-footer .brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}
