:root {
    --paper: #f6f7f1;
    --paper-2: #edf0e7;
    --white: #fcfdf9;
    --ink: #17221c;
    --ink-soft: #314238;
    --muted: #6c7971;
    --line: #d8ded4;
    --line-dark: #bdcabe;
    --green: #176b49;
    --green-dark: #0d4a32;
    --green-light: #d9e9da;
    --lime: #b8d769;
    --orange: #b8663e;
    --shadow: 0 18px 48px rgba(23, 34, 28, .08);
    --radius: 7px;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Noto Sans SC", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: .3;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0, transparent 720px);
}

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

button,
input,
select {
    font: inherit;
}

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

:focus-visible {
    outline: 3px solid rgba(23, 107, 73, .35);
    outline-offset: 3px;
}

code,
pre,
.eyebrow,
.method,
.console-label,
.console-live,
.console-foot,
.result-status,
.copy-button,
.docs-chips,
.status-list,
.doc-table,
.footer-brand {
    font-family: "DM Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.page-shell {
    overflow: visible;
}

.site-header {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--line);
    background: rgba(246, 247, 241, .92);
}

.header-inner {
    display: flex;
    align-items: center;
    width: min(1180px, calc(100% - 48px));
    min-height: 76px;
    margin: 0 auto;
    gap: 32px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .05em;
}

.brand em,
.footer-brand span {
    color: var(--green);
    font-style: normal;
}

.brand-mark {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid var(--green);
    color: var(--green);
    font-family: "DM Mono", monospace;
    font-size: 20px;
    line-height: 1;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

nav a {
    position: relative;
    padding: 25px 0 23px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    transition: color .2s ease;
}

nav a::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--green);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

nav a:hover,
nav a.active {
    color: var(--ink);
}

nav a:hover::after,
nav a.active::after {
    transform: scaleX(1);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid var(--green);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    transition: background .2s ease, color .2s ease;
}

.header-cta:hover {
    color: var(--white);
    background: var(--green);
}

main {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
    align-items: center;
    gap: clamp(48px, 8vw, 108px);
    min-height: 620px;
    padding: 90px 0 80px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 22px;
    color: var(--green);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .13em;
    line-height: 1.2;
}

.pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px var(--green-light);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Manrope", "Noto Sans SC", sans-serif;
    letter-spacing: 0;
}

h1 {
    max-width: 650px;
    margin-bottom: 25px;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
}

h1 span,
h2 span {
    color: var(--green);
}

h1 span {
    display: block;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 3.3vw, 46px);
    font-weight: 800;
    line-height: 1.18;
}

h2 em {
    color: var(--green);
    font-style: normal;
}

h3 {
    font-size: 19px;
    line-height: 1.3;
}

.hero-lede {
    max-width: 500px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--green);
    box-shadow: 0 8px 18px rgba(23, 107, 73, .17);
}

.button-primary:hover {
    background: var(--green-dark);
}

.button-quiet {
    border-color: var(--line-dark);
    color: var(--ink-soft);
    background: transparent;
}

.button-quiet:hover {
    border-color: var(--green);
    color: var(--green-dark);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 31px;
    color: var(--muted);
    font-size: 12px;
}

.meta-check {
    display: inline-grid;
    width: 17px;
    height: 17px;
    margin-right: 5px;
    place-items: center;
    border-radius: 50%;
    color: var(--green-dark);
    background: var(--green-light);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
}

.hero-console {
    overflow: hidden;
    border: 1px solid #293a30;
    border-radius: var(--radius);
    color: #e5eee5;
    background: #15221b;
    box-shadow: 14px 18px 0 #dce5d8, var(--shadow);
}

.console-top {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 21px;
    border-bottom: 1px solid #2c3c32;
    gap: 14px;
}

.console-dots {
    display: flex;
    gap: 6px;
}

.console-dots i {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #607168;
}

.console-dots i:first-child {
    background: #d4825d;
}

.console-label {
    margin-left: 8px;
    color: #a7b6a8;
    font-size: 11px;
}

.console-live {
    margin-left: auto;
    color: #b8d769;
    font-size: 10px;
    letter-spacing: .12em;
}

.console-body {
    min-height: 300px;
    padding: 27px 27px 21px;
}

.console-comment {
    margin-bottom: 22px;
    color: #718277;
    font-family: "DM Mono", monospace;
    font-size: 11px;
}

.console-line {
    overflow: hidden;
    white-space: nowrap;
    color: #cad8ca;
    font-family: "DM Mono", monospace;
    font-size: 12px;
}

.syntax-key {
    color: #b8d769;
}

.syntax-cmd {
    color: #f2c78d;
}

.syntax-url {
    color: #8fbfd1;
}

.console-divider {
    height: 1px;
    margin: 22px 0;
    background: #2c3c32;
}

.console-json {
    color: #c9d8c9;
    font-family: "DM Mono", monospace;
    font-size: 12px;
    line-height: 2;
}

.console-json b {
    color: #b8d769;
    font-weight: 500;
}

.console-json em {
    color: #f2c78d;
    font-style: normal;
}

.console-json strong {
    color: #8fbfd1;
    font-weight: 400;
}

.indent {
    display: inline-block;
    padding-left: 20px;
}

.indent.double {
    padding-left: 40px;
}

.console-foot {
    display: flex;
    justify-content: space-between;
    padding: 13px 21px;
    border-top: 1px solid #2c3c32;
    color: #87988a;
    font-size: 10px;
}

.console-foot span:first-child {
    color: #b8d769;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-strip > div {
    display: flex;
    flex-direction: column;
    min-height: 106px;
    justify-content: center;
    padding: 18px 25px;
    border-right: 1px solid var(--line);
}

.trust-strip > div:last-child {
    border-right: 0;
}

.trust-strip strong {
    color: var(--green);
    font-family: "Manrope", sans-serif;
    font-size: 29px;
    font-weight: 800;
    line-height: 1.1;
}

.trust-strip span {
    color: var(--muted);
    font-size: 12px;
}

.trust-strip .small-unit {
    margin-left: 2px;
    color: var(--green);
    font-family: "DM Mono", monospace;
    font-size: 13px;
}

.section {
    padding: 125px 0 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 42px;
}

.section-heading .eyebrow {
    margin-bottom: 16px;
}

.section-heading > p {
    max-width: 390px;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.endpoint-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.endpoint-card {
    min-width: 0;
    padding: 25px 22px 21px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(252, 253, 249, .74);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.endpoint-card:hover {
    border-color: var(--line-dark);
    box-shadow: 0 12px 26px rgba(23, 34, 28, .07);
    transform: translateY(-4px);
}

.endpoint-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 21px;
}

.endpoint-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    color: var(--green);
    font-family: "DM Mono", monospace;
    font-size: 19px;
}

.method {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 3px 8px;
    border: 1px solid var(--line-dark);
    border-radius: 3px;
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1;
}

.method-post {
    border-color: #e0bfad;
    color: var(--orange);
    background: #fff7f1;
}

.endpoint-card h3 {
    margin-bottom: 8px;
}

.endpoint-card > p {
    min-height: 70px;
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.endpoint-path {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.endpoint-path code {
    overflow: hidden;
    color: var(--green-dark);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.try-link,
.text-link {
    flex: 0 0 auto;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
}

.try-link:hover,
.text-link:hover {
    color: var(--green-dark);
}

.mini-response {
    overflow: hidden;
    min-height: 95px;
    margin: 16px 0 0;
    color: #52665a;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    line-height: 1.75;
    white-space: pre-wrap;
}

.tester-section {
    padding-top: 138px;
}

.tester {
    display: grid;
    grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
    min-height: 382px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.tester-controls {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 28px;
    border-right: 1px solid var(--line);
}

.tester-controls label {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.tester-controls select,
.tester-controls input {
    width: 100%;
    min-height: 44px;
    margin-bottom: 19px;
    padding: 9px 11px;
    border: 1px solid var(--line-dark);
    border-radius: 3px;
    color: var(--ink);
    outline: 0;
    background: var(--paper);
    font-size: 13px;
}

.tester-controls select:focus,
.tester-controls input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-light);
}

.hash-fields[hidden] {
    display: none;
}

.hash-fields {
    display: contents;
}

.tester-controls .button {
    width: 100%;
    margin-top: auto;
}

.run-icon {
    font-size: 10px;
}

.tester-note {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.tester-result {
    min-width: 0;
    padding: 24px 27px;
    background: #16221b;
}

.result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #2b3a31;
}

.result-status {
    color: #aebcaf;
    font-size: 11px;
}

.result-status.success {
    color: var(--lime);
}

.result-status.error {
    color: #e1a17f;
}

.copy-button,
.copy-snippet {
    border: 1px solid #4b5e50;
    border-radius: 3px;
    cursor: pointer;
    color: #afc0b0;
    background: transparent;
    font-size: 10px;
    transition: color .2s ease, border-color .2s ease;
}

.copy-button {
    min-height: 28px;
    padding: 4px 9px;
}

.copy-button:hover:not(:disabled),
.copy-snippet:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.copy-button:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.tester-result pre {
    overflow: auto;
    max-height: 282px;
    margin: 19px 0 0;
    color: #c9d9ca;
    font-family: "DM Mono", monospace;
    font-size: 12px;
    line-height: 1.8;
    white-space: pre-wrap;
    word-break: break-word;
}

.quickstart-section {
    padding-top: 130px;
}

.quickstart-grid {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: clamp(45px, 8vw, 110px);
}

.section-copy {
    max-width: 420px;
    margin: 0 0 21px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.code-block {
    overflow: hidden;
    border: 1px solid #2b3a31;
    border-radius: var(--radius);
    color: #d6e0d5;
    background: #16221b;
    box-shadow: 12px 13px 0 #dce5d8;
}

.code-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 19px;
    border-bottom: 1px solid #2b3a31;
    color: #9aaa9a;
    font-family: "DM Mono", monospace;
    font-size: 10px;
}

.copy-snippet {
    min-height: 27px;
    padding: 4px 8px;
}

.code-block pre {
    overflow-x: auto;
    margin: 0;
    padding: 24px 25px 28px;
    font-family: "DM Mono", monospace;
    font-size: 12px;
    line-height: 2;
    white-space: pre;
}

.code-muted {
    color: #718277;
}

.code-string {
    color: #f2c78d;
}

.faq-section {
    padding-bottom: 135px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.faq-grid article {
    min-height: 215px;
    padding: 26px 23px;
    border-top: 2px solid var(--green);
    background: rgba(252, 253, 249, .58);
}

.faq-number {
    display: block;
    margin-bottom: 30px;
    color: var(--green);
    font-family: "DM Mono", monospace;
    font-size: 11px;
}

.faq-grid h3 {
    margin-bottom: 10px;
    font-size: 17px;
}

.faq-grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--paper-2);
}

.footer-inner {
    display: flex;
    align-items: center;
    width: min(1180px, calc(100% - 48px));
    min-height: 108px;
    margin: 0 auto;
    gap: 23px;
}

.footer-inner p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.footer-brand {
    flex: 0 0 auto;
    font-size: 13px;
}

.footer-brand span {
    margin-left: -7px;
}

.icp {
    margin-left: auto;
    color: var(--muted);
    font-family: "DM Mono", monospace;
    font-size: 11px;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 3px;
    transition: color .2s ease, text-decoration-color .2s ease;
}

.icp:hover {
    color: var(--green);
    text-decoration-color: var(--green);
}

/* Documentation */
.docs-hero {
    max-width: 820px;
    padding: 91px 0 68px;
}

.docs-hero h1 {
    margin-bottom: 20px;
}

.docs-hero > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 27px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

.docs-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.docs-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    gap: 7px;
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--muted);
    font-size: 10px;
}

.docs-chips code {
    color: var(--green-dark);
}

.docs-layout {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: clamp(36px, 7vw, 95px);
    padding-bottom: 130px;
}

.docs-nav {
    position: sticky;
    top: 30px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 5px;
}

.docs-nav a {
    padding: 9px 12px;
    border-left: 2px solid transparent;
    color: var(--muted);
    font-size: 12px;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.docs-nav a:hover {
    border-color: var(--green);
    color: var(--green-dark);
    background: var(--green-light);
}

.doc-section {
    scroll-margin-top: 30px;
    padding: 0 0 65px;
    border-bottom: 1px solid var(--line);
}

.doc-section + .doc-section {
    padding-top: 65px;
}

.doc-section:last-child {
    border-bottom: 0;
}

.doc-section > .eyebrow {
    margin-bottom: 15px;
}

.doc-section h2 {
    margin-bottom: 16px;
    font-size: 29px;
}

.doc-section > p {
    max-width: 700px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.doc-section code {
    color: var(--green-dark);
    font-size: .9em;
}

.doc-title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
}

.doc-title h2 {
    margin: 0;
}

.note-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
    padding: 17px 18px;
    border-left: 3px solid var(--green);
    background: var(--green-light);
}

.note-box strong {
    color: var(--green-dark);
    font-size: 12px;
}

.note-box code {
    overflow-wrap: anywhere;
    color: var(--ink-soft);
}

.doc-table {
    margin: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.doc-table > div {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 15px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
}

.doc-table > div:last-child {
    border-bottom: 0;
}

.doc-table span {
    color: var(--muted);
}

.doc-table b {
    margin-left: 5px;
    color: var(--orange);
    font-size: 9px;
    font-weight: 500;
}

.doc-code {
    overflow-x: auto;
    margin: 0;
    padding: 17px 19px;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--ink-soft);
    background: var(--paper-2);
    font-family: "DM Mono", monospace;
    font-size: 11px;
    line-height: 1.8;
    white-space: pre;
}

.status-list {
    margin: 23px 0;
    border-top: 1px solid var(--line);
}

.status-list > div {
    display: grid;
    grid-template-columns: 52px 225px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 45px;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
}

.status-list b {
    color: var(--green);
    font-weight: 500;
}

.status-list span {
    color: var(--ink-soft);
}

.status-list em {
    color: var(--muted);
    font-family: "Noto Sans SC", sans-serif;
    font-style: normal;
}

.error-content {
    min-height: 570px;
    padding: 150px 0 100px;
}

.error-content h1 {
    max-width: 700px;
}

.error-content > p:not(.eyebrow) {
    margin-bottom: 28px;
    color: var(--muted);
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
        gap: 45px;
        padding-top: 73px;
    }

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

    .endpoint-card > p {
        min-height: auto;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .section-heading > p {
        max-width: 560px;
    }
}

@media (max-width: 760px) {
    body::before {
        opacity: .2;
        background-size: 48px 48px;
    }

    .header-inner,
    main,
    .footer-inner {
        width: min(100% - 36px, 600px);
    }

    .header-inner {
        min-height: 67px;
        gap: 15px;
    }

    nav {
        gap: 15px;
    }

    nav a {
        padding: 21px 0 20px;
        font-size: 11px;
    }

    nav a:last-child {
        display: none;
    }

    .header-cta {
        padding: 8px 10px;
        font-size: 10px;
    }

    .hero {
        display: block;
        min-height: 0;
        padding: 67px 0 63px;
    }

    h1 {
        font-size: clamp(40px, 11vw, 58px);
    }

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

    .hero-console {
        margin: 51px 8px 0 0;
        box-shadow: 8px 10px 0 #dce5d8, var(--shadow);
    }

    .console-body {
        min-height: 270px;
        padding: 23px 19px 17px;
    }

    .console-line {
        overflow-x: auto;
        padding-bottom: 3px;
    }

    .console-foot {
        padding-right: 16px;
        padding-left: 16px;
        font-size: 9px;
    }

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

    .trust-strip > div {
        min-height: 91px;
        padding: 15px 17px;
    }

    .trust-strip > div:nth-child(2) {
        border-right: 0;
    }

    .trust-strip > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding-top: 88px;
    }

    .section-heading {
        margin-bottom: 29px;
    }

    h2 {
        font-size: 32px;
    }

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

    .endpoint-card {
        padding: 22px 19px 19px;
    }

    .mini-response {
        min-height: 76px;
    }

    .tester-section,
    .quickstart-section {
        padding-top: 97px;
    }

    .tester {
        display: block;
    }

    .tester-controls {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .tester-result {
        min-height: 270px;
    }

    .quickstart-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .code-block {
        box-shadow: 7px 8px 0 #dce5d8;
    }

    .faq-section {
        padding-bottom: 94px;
    }

    .faq-grid article {
        min-height: 0;
    }

    .footer-inner {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 10px 18px;
        padding: 24px 0;
    }

    .footer-inner p {
        flex: 1 1 100%;
        order: 3;
    }

    .icp {
        margin-left: auto;
    }

    /* Docs */
    .docs-hero {
        padding: 65px 0 51px;
    }

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

    .docs-layout {
        display: block;
        padding-bottom: 90px;
    }

    .docs-nav {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        margin-bottom: 45px;
        padding: 0 0 9px;
        border-bottom: 1px solid var(--line);
        white-space: nowrap;
    }

    .docs-nav a {
        border: 0;
        border-bottom: 2px solid transparent;
    }

    .docs-nav a:hover {
        border-color: var(--green);
    }

    .doc-section {
        padding-bottom: 48px;
    }

    .doc-section + .doc-section {
        padding-top: 48px;
    }

    .doc-table > div {
        grid-template-columns: 105px minmax(0, 1fr);
    }

    .status-list > div {
        grid-template-columns: 43px minmax(0, 1fr);
        gap: 7px 11px;
        padding: 9px 0;
    }

    .status-list em {
        grid-column: 2;
        font-size: 11px;
    }

    .error-content {
        min-height: 500px;
        padding-top: 100px;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
