:root {
    --wb-ink: #111d31;
    --wb-text: #33435d;
    --wb-muted: #68758a;
    --wb-line: #dce4ef;
    --wb-soft: #f4f7fb;
    --wb-surface: #ffffff;
    --wb-blue: #0878e8;
    --wb-blue-dark: #075db6;
    --wb-blue-soft: #eaf4ff;
    --wb-cyan: #15a4c7;
    --wb-yellow: #f6c344;
    --wb-green: #168a58;
    --wb-red: #d33c45;
    --wb-orange: #bc6c12;
    --wb-header-height: 96px;
    --wb-header-compact-height: 68px;
    --wb-active-header-height: var(--wb-header-height);
    --wb-radius: 8px;
    --wb-shadow: 0 18px 44px rgba(17, 29, 49, 0.09);
    --wb-content: min(1180px, calc(100vw - 40px));
}

:root.wb-header-is-compact {
    --wb-active-header-height: var(--wb-header-compact-height);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--wb-text);
    background: var(--wb-surface);
    font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
    overflow: hidden;
}

.wb-sr-only { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }

a {
    color: var(--wb-blue-dark);
    text-decoration: none;
}

a:hover {
    color: var(--wb-blue);
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

img {
    display: block;
    max-width: 100%;
}

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

h1,
h2,
h3,
h4 {
    color: var(--wb-ink);
    font-weight: 720;
    line-height: 1.22;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 34px;
}

h3 {
    font-size: 21px;
}

.wb-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    transform: translateY(-150%);
    padding: 10px 14px;
    color: #fff;
    background: var(--wb-ink);
    border-radius: 4px;
}

.wb-skip-link:focus {
    transform: none;
}

.wb-site-header {
    position: sticky;
    top: 0;
    z-index: 140;
    height: var(--wb-header-height);
    background: rgba(255, 255, 255, .99);
    border-bottom: 1px solid rgba(220, 228, 239, 0.85);
    transition: height 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wb-menu-backdrop {
    display: none;
}

.wb-header-inner {
    width: var(--wb-content);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 205px minmax(440px, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.wb-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--wb-muted);
    line-height: 1;
}

.wb-brand img {
    width: 168px;
    height: auto;
    transition: width 180ms ease;
}

.wb-brand span {
    max-height: 14px;
    margin-top: 9px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 160ms ease, margin 160ms ease, opacity 120ms ease, transform 160ms ease;
}

.wb-primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 100%;
    gap: 4px;
}

.wb-mobile-nav-actions {
    display: none;
}

.wb-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    color: #344761;
    font-size: 15px;
    font-weight: 650;
    white-space: nowrap;
    transition: color 150ms ease, padding 180ms ease;
}

.wb-nav-link::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 16px;
    left: 15px;
    height: 2px;
    background: var(--wb-blue);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: right 180ms ease, bottom 180ms ease, left 180ms ease, transform 160ms ease;
}

.wb-nav-link:hover,
.wb-nav-link.is-active {
    color: var(--wb-blue-dark);
}

.wb-nav-link:hover::after,
.wb-nav-link.is-active::after {
    transform: scaleX(1);
}

.wb-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
}

.wb-header-actions .wb-button {
    min-height: 44px;
    padding-right: 18px;
    padding-left: 18px;
    transition: min-height 180ms ease, padding 180ms ease, color 150ms ease, background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.wb-language-switch {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 3px;
    background: var(--wb-soft);
    border: 1px solid var(--wb-line);
    border-radius: 6px;
}

.wb-language-switch a {
    display: inline-grid;
    min-width: 38px;
    height: 30px;
    padding: 0 7px;
    place-items: center;
    color: var(--wb-muted);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

@media (min-width: 901px) {
    .wb-site-header.is-compact {
        height: var(--wb-header-compact-height);
        background: rgba(255, 255, 255, .94);
        border-bottom-color: rgba(197, 211, 228, .9);
        box-shadow: 0 8px 24px rgba(17, 29, 49, .08);
        backdrop-filter: blur(16px) saturate(1.15);
    }

    .wb-site-header.is-compact .wb-brand img {
        width: 136px;
    }

    .wb-site-header.is-compact .wb-brand span {
        max-height: 0;
        margin-top: 0;
        opacity: 0;
        transform: translateY(-4px);
    }

    .wb-site-header.is-compact .wb-nav-link {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 14px;
    }

    .wb-site-header.is-compact .wb-nav-link::after {
        right: 12px;
        bottom: 8px;
        left: 12px;
    }

    .wb-site-header.is-compact .wb-header-actions .wb-button {
        min-height: 38px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .wb-site-header.is-compact .wb-language-switch {
        height: 34px;
    }

    .wb-site-header.is-compact .wb-language-switch a {
        height: 26px;
    }
}

.wb-language-switch a.is-active {
    color: var(--wb-blue-dark);
    background: #fff;
    box-shadow: 0 1px 4px rgba(17, 29, 49, 0.1);
}

.wb-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    color: var(--wb-ink);
    background: #fff;
    border: 1px solid var(--wb-line);
    border-radius: 6px;
    cursor: pointer;
}

.wb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 17px;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 3px solid rgba(8, 120, 232, 0.38);
    outline-offset: 3px;
}

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

.wb-button:disabled,
.wb-button[aria-disabled="true"] {
    color: #8794a7;
    background: #e8edf3;
    border-color: #d8e0ea;
    box-shadow: none;
    cursor: not-allowed;
    opacity: .78;
    transform: none;
}

.wb-button:disabled:hover,
.wb-button[aria-disabled="true"]:hover {
    color: #8794a7;
    background: #e8edf3;
    border-color: #d8e0ea;
    transform: none;
}

.wb-button-primary {
    color: #fff;
    background: var(--wb-blue);
    border-color: var(--wb-blue);
}

.wb-button-primary:hover {
    color: #fff;
    background: var(--wb-blue-dark);
    border-color: var(--wb-blue-dark);
}

.wb-button-secondary {
    color: var(--wb-blue-dark);
    background: #fff;
    border-color: #b9cee7;
}

.wb-button-secondary:hover {
    color: var(--wb-blue-dark);
    background: var(--wb-blue-soft);
    border-color: #91b7e2;
}

.wb-button-dark {
    color: #fff;
    background: var(--wb-ink);
}

.wb-button-dark:hover {
    color: #fff;
    background: #263650;
}

.wb-button-link {
    min-height: auto;
    padding: 0;
    color: var(--wb-blue-dark);
}

.wb-button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.wb-contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 390px);
}

.wb-contact-actions .wb-button {
    width: 100%;
    white-space: nowrap;
}

.wb-container {
    width: var(--wb-content);
    margin: 0 auto;
}

.wb-section {
    padding: 84px 0;
}

.wb-section-compact-top {
    padding-top: 0;
}

.wb-section-soft {
    background: var(--wb-soft);
}

.wb-section-dark {
    color: #d8e3f1;
    background: var(--wb-ink);
}

.wb-section-heading {
    max-width: 740px;
    margin-bottom: 38px;
}

.wb-section-heading.is-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.wb-section-heading h2 {
    margin-bottom: 14px;
}

.wb-section-heading p {
    margin-bottom: 0;
    color: var(--wb-muted);
    font-size: 18px;
}

.wb-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    gap: 8px;
    color: var(--wb-blue-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.wb-eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--wb-yellow);
}

.wb-hero {
    position: relative;
    min-height: min(680px, calc(100vh - var(--wb-header-height)));
    overflow: hidden;
    background: #eef7ff url('/static/images/weavebit-network-hero.jpg') center / cover no-repeat;
}

.wb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.64);
}

.wb-hero-inner {
    position: relative;
    z-index: 1;
    width: var(--wb-content);
    min-height: inherit;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 70px 0 88px;
}

.wb-hero-copy {
    width: min(760px, 68%);
}

.wb-hero h1 {
    max-width: 740px;
    margin-bottom: 22px;
    font-size: 52px;
}

.wb-hero h1 > span {
    display: block;
}

.wb-hero-brand {
    margin-bottom: 4px;
    color: var(--wb-blue-dark);
}

.wb-hero-lead {
    max-width: 650px;
    margin-bottom: 30px;
    color: #3e506b;
    font-size: 19px;
}

.wb-hero-proof {
    display: flex;
    flex-wrap: wrap;
    margin-top: 28px;
    gap: 16px 24px;
}

.wb-hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a5a71;
    font-size: 14px;
    font-weight: 650;
}

.wb-hero-proof i {
    color: var(--wb-green);
}

.wb-capability-strip {
    position: relative;
    z-index: 2;
    width: var(--wb-content);
    margin: -54px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #fff;
    border: 1px solid var(--wb-line);
    border-radius: var(--wb-radius);
    box-shadow: var(--wb-shadow);
}

.wb-capability-stat {
    min-height: 156px;
    padding: 26px 24px;
    border-right: 1px solid var(--wb-line);
}

.wb-capability-stat:last-child {
    border-right: 0;
}

.wb-capability-stat strong {
    display: block;
    margin-bottom: 10px;
    color: var(--wb-ink);
    font-size: 19px;
    line-height: 1.4;
}

.wb-capability-stat.is-metric strong {
    font-size: 28px;
}

.wb-capability-stat span {
    display: block;
    color: var(--wb-muted);
    font-size: 13px;
    line-height: 1.6;
}

.wb-capability-stat span + span {
    margin-top: 3px;
}

.wb-grid {
    display: grid;
    gap: 18px;
}

.wb-grid > * {
    min-width: 0;
}

.wb-align-start {
    align-items: start;
}

.wb-align-center {
    align-items: center;
}

.wb-space-top-sm {
    margin-top: 18px;
}

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

.wb-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wb-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wb-card {
    background: #fff;
    border: 1px solid var(--wb-line);
    border-radius: var(--wb-radius);
}

.wb-feature-card {
    min-height: 100%;
    padding: 28px;
}

.wb-feature-card h3 {
    margin-bottom: 10px;
}

.wb-feature-card p {
    margin-bottom: 0;
    color: var(--wb-muted);
}

.wb-entry-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.wb-entry-card > .wb-status {
    align-self: flex-start;
}

.wb-entry-card > p {
    flex: 1 1 auto;
}

.wb-entry-card > .wb-divider {
    width: 100%;
}

.wb-feature-compact {
    min-height: 0;
    padding: 0 0 27px;
}

.wb-icon-offset {
    margin-top: 18px;
}

.wb-icon-box {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: var(--wb-blue-dark);
    background: var(--wb-blue-soft);
    border-radius: 7px;
    place-items: center;
    font-size: 19px;
}

.wb-step-number {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
    color: #fff;
    background: var(--wb-ink);
    border-radius: 50%;
    place-items: center;
    font-size: 14px;
    font-weight: 800;
}

.wb-product-band {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
    border: 1px solid var(--wb-line);
    border-radius: var(--wb-radius);
    overflow: hidden;
}

.wb-product-band-copy {
    padding: 44px;
    background: #fff;
}

.wb-product-band-copy p {
    color: var(--wb-muted);
}

.wb-result-board {
    padding: 32px;
    color: #e1ecf8;
    background: #15243a;
}

.wb-result-board-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wb-result-board-header strong {
    color: #fff;
}

.wb-example-label {
    margin-left: 8px;
    padding: 3px 7px;
    color: #a9bad0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 650;
    vertical-align: middle;
}

.wb-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 7px;
    background: #4bd29b;
    border-radius: 50%;
}

.wb-result-row {
    display: grid;
    grid-template-columns: minmax(145px, 1.4fr) minmax(90px, 0.7fr) minmax(100px, 0.9fr);
    align-items: center;
    min-height: 52px;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

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

.wb-result-row-heading {
    color: #91a2b8;
    font-size: 12px;
}

.wb-status {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 27px;
    padding: 0 9px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 750;
}

.wb-status-ok {
    color: #0b7546;
    background: #e9fbf2;
    border-color: #b9efd1;
}

.wb-status-primary {
    color: #0562bd;
    background: #edf6ff;
    border-color: #bddcff;
}

.wb-status-warning {
    color: #99520a;
    background: #fff7df;
    border-color: #f4d984;
}

.wb-status-danger {
    color: #b4232f;
    background: #fff2f3;
    border-color: #f2bec3;
}

.wb-check-code {
    display: block;
    margin-top: 7px;
    color: #7c8899;
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 11px;
    overflow-wrap: anywhere;
}

.wb-check-comparison .wb-table {
    min-width: 840px;
}

.wb-table-method {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
}

.wb-table-method .wb-icon-box {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    margin: 0;
}

.wb-table-method strong,
.wb-table-method code {
    display: block;
}

.wb-table-method code {
    margin-top: 4px;
    color: var(--wb-muted);
    font-size: .76rem;
}

.wb-scenario-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
}

.wb-scenario-main {
    padding: 24px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    flex: 1 1 auto;
}

.wb-scenario-main .wb-icon-box {
    margin: 0;
}

.wb-scenario-copy {
    min-width: 0;
}

.wb-scenario-copy > p {
    margin-bottom: 14px;
}

.wb-scenario-card h3 {
    margin: 0 0 8px;
}

.wb-check-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 18px 24px 20px;
    flex: 0 0 auto;
    background: #fbfcfe;
    border-top: 1px solid var(--wb-line);
}

.wb-check-facts > div {
    min-width: 0;
    padding-right: 12px;
}

.wb-check-facts > div + div {
    padding-left: 12px;
    border-left: 1px solid var(--wb-line);
}

.wb-check-facts dt {
    margin-bottom: 5px;
    color: var(--wb-muted);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wb-check-facts dd {
    min-height: 68px;
    margin: 0;
    color: var(--wb-ink);
    font-size: 15px;
    line-height: 1.5;
    line-break: strict;
    text-wrap: pretty;
}

.wb-api-primary {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--wb-line);
    border-left: 5px solid var(--wb-blue);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--wb-shadow);
}

.wb-api-primary.is-sync {
    border-left-color: var(--wb-green);
}

.wb-api-primary-copy {
    padding: 34px;
}

.wb-api-primary-copy h2 {
    margin: 16px 0 10px;
    font-size: 2rem;
}

.wb-api-primary-copy dl {
    margin: 26px 0;
}

.wb-api-primary-copy dl > div {
    padding: 12px 0;
    border-top: 1px solid var(--wb-line);
}

.wb-api-primary-copy dt {
    color: var(--wb-muted);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wb-api-primary-copy dd {
    margin: 5px 0 0;
    line-height: 1.55;
}

.wb-api-code-stack {
    display: grid;
    align-content: center;
    gap: 18px;
    min-width: 0;
    padding: 30px;
    background: #0d1729;
    color: #dce9f8;
}

.wb-api-code-stack > div {
    min-width: 0;
}

.wb-api-code-stack > div > span {
    display: block;
    margin-bottom: 8px;
    color: #8eb3dc;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wb-api-code-stack pre {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: auto;
    color: #e7f4ff;
    font-size: .78rem;
    line-height: 1.55;
    white-space: pre;
}

.wb-api-modes {
    align-items: stretch;
}

.wb-api-mode-card {
    padding: 28px;
    display: flex;
    min-width: 0;
    flex-direction: column;
    border-top: 4px solid var(--wb-blue);
    box-shadow: 0 10px 28px rgba(17, 29, 49, .055);
}

.wb-api-mode-card.is-primary {
    border-top-color: var(--wb-blue);
    box-shadow: 0 14px 34px rgba(8, 120, 232, .1);
}

.wb-api-mode-card.is-sync {
    border-top-color: var(--wb-green);
}

.wb-api-mode-heading {
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
}

.wb-api-mode-heading .wb-icon-box {
    margin: 0;
}

.wb-api-mode-heading h3 {
    margin: 9px 0 0;
    font-size: 22px;
    line-height: 1.35;
}

.wb-api-mode-card > p {
    margin: 0;
    color: var(--wb-muted);
}

.wb-api-mode-facts {
    margin: 22px 0;
    border-top: 1px solid var(--wb-line);
}

.wb-api-mode-facts > div {
    padding: 12px 0;
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 14px;
    border-bottom: 1px solid var(--wb-line);
}

.wb-api-mode-facts dt {
    color: var(--wb-muted);
    font-size: 12px;
    font-weight: 700;
}

.wb-api-mode-facts dd {
    margin: 0;
    color: var(--wb-ink);
    line-height: 1.5;
}

.wb-api-mode-card > .wb-button-row {
    margin-top: auto;
}

@media (min-width: 901px) {
    .wb-api-mode-heading {
        min-height: 112px;
    }

    .wb-api-mode-card > p {
        min-height: 106px;
    }

    .wb-api-mode-facts > div {
        min-height: 78px;
        align-content: start;
    }
}

.wb-api-flow-section {
    overflow: hidden;
}

.wb-api-subheading {
    margin: 26px 0 8px;
    font-size: 1rem;
}

.wb-api-use-case-list {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.wb-api-use-case-list li {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    border-bottom: 1px solid var(--wb-line);
}

.wb-api-use-case-list li:first-child {
    border-top: 1px solid var(--wb-line);
}

.wb-api-use-case-list li strong,
.wb-api-use-case-list li span {
    display: block;
}

.wb-api-use-case-list li span {
    color: var(--wb-muted);
    line-height: 1.5;
}

.wb-api-boundary {
    padding: 2px 0 2px 16px;
    color: #4b5e76;
    border-left: 3px solid #9bcab5;
    font-size: .84rem;
    line-height: 1.65;
}

.wb-api-shared {
    display: grid;
    grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 70px;
}

.wb-api-shared .wb-eyebrow {
    color: #83c2ff;
}

.wb-api-shared h2 {
    margin-bottom: 14px;
    color: #fff;
}

.wb-api-shared p {
    margin: 0;
    color: #b7c6d8;
}

.wb-api-shared-facts {
    margin: 0;
}

.wb-api-shared-facts > div {
    padding: 15px 0;
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.wb-api-shared-facts > div:first-child {
    padding-top: 0;
}

.wb-api-shared-facts > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.wb-api-shared-facts dt {
    color: #fff;
    font-weight: 750;
}

.wb-api-shared-facts dd {
    margin: 0;
    color: #b7c6d8;
    line-height: 1.6;
}

#main-content,
main :where(section[id], article[id], h2[id], h3[id], h4[id]) {
    scroll-margin-top: calc(var(--wb-active-header-height) + 20px);
}

.wb-onboarding-checklist {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wb-onboarding-checklist li {
    position: relative;
    min-width: 0;
    padding: 0 22px;
}

.wb-onboarding-checklist li:first-child {
    padding-left: 0;
}

.wb-onboarding-checklist li:last-child {
    padding-right: 0;
}

.wb-onboarding-checklist li + li::before {
    position: absolute;
    top: 19px;
    left: -12px;
    width: 24px;
    height: 1px;
    background: #b9c9da;
    content: "";
}

.wb-onboarding-checklist li > span {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    color: #fff;
    background: var(--wb-blue);
    border-radius: 50%;
    font-weight: 800;
    place-items: center;
}

.wb-onboarding-checklist h3 {
    margin-bottom: 7px;
    font-size: 1rem;
}

.wb-onboarding-checklist p {
    margin: 0;
    color: var(--wb-muted);
    font-size: .84rem;
}

.wb-page-hero {
    padding: 54px 0 44px;
    background: #f3f8fe;
    border-bottom: 1px solid var(--wb-line);
}

.wb-page-hero-inner {
    width: var(--wb-content);
    margin: 0 auto;
}

.wb-page-hero h1 {
    max-width: 840px;
    margin-bottom: 16px;
}

.wb-page-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--wb-muted);
    font-size: 19px;
}

.wb-callout {
    padding: 24px 26px;
    color: #314967;
    background: #f0f7ff;
    border: 1px solid #cce1f7;
    border-left: 4px solid var(--wb-blue);
    border-radius: var(--wb-radius);
}

.wb-list-clean {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wb-list-clean li {
    position: relative;
    padding: 9px 0 9px 25px;
}

.wb-list-clean li::before {
    content: "\f00c";
    position: absolute;
    top: 11px;
    left: 0;
    color: var(--wb-green);
    font-family: "Font Awesome 7 Free";
    font-size: 13px;
    font-weight: 900;
}

.wb-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border: 1px solid var(--wb-line);
    border-radius: var(--wb-radius);
}

.wb-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.wb-table-compact {
    min-width: 480px;
}

.wb-table th,
.wb-table td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid var(--wb-line);
}

.wb-table th {
    color: #59677b;
    background: #f7f9fc;
    font-size: 13px;
    font-weight: 750;
}

.wb-table tr:last-child td {
    border-bottom: 0;
}

.wb-table td strong {
    color: var(--wb-ink);
}

.wb-price {
    color: var(--wb-ink);
    font-family: "Cascadia Code", Consolas, monospace;
    font-weight: 750;
}

@media (max-width: 640px) {
    .wb-responsive-table-wrap {
        overflow: visible;
        background: transparent;
        border: 0;
    }

    .wb-responsive-table {
        min-width: 0;
        border-collapse: separate;
    }

    .wb-check-comparison,
    .wb-check-comparison .wb-responsive-check-table {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .wb-check-comparison .wb-responsive-check-table {
        table-layout: fixed;
    }

    .wb-responsive-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        clip-path: inset(50%);
        white-space: nowrap;
        border: 0;
    }

    .wb-responsive-table tbody {
        display: grid;
        gap: 12px;
    }

    .wb-responsive-table tr {
        display: grid;
        min-width: 0;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--wb-line);
        border-radius: 6px;
    }

    .wb-responsive-table td {
        display: grid;
        grid-template-columns: minmax(84px, .34fr) minmax(0, 1fr);
        gap: 12px;
        min-width: 0;
        padding: 10px 14px;
        align-items: start;
        border-bottom: 1px solid var(--wb-line);
        overflow-wrap: anywhere;
    }

    .wb-responsive-table td::before {
        content: attr(data-label);
        color: var(--wb-muted);
        font-size: 12px;
        font-weight: 750;
    }

    .wb-responsive-table td:first-child {
        display: block;
        padding: 14px;
        background: #f7f9fc;
    }

    .wb-responsive-table td:first-child::before {
        display: none;
    }

    .wb-responsive-table td:last-child {
        border-bottom: 0;
    }

    .wb-responsive-check-table .wb-table-method {
        width: 100%;
        min-width: 0;
        align-items: flex-start;
    }

    .wb-responsive-check-table .wb-table-method > div {
        min-width: 0;
    }

    .wb-responsive-check-table .wb-table-method code {
        overflow-wrap: anywhere;
    }

    .wb-responsive-price-table tr {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .wb-responsive-price-table td:first-child {
        grid-column: 1;
        grid-row: 1;
        border-bottom: 1px solid var(--wb-line);
    }

    .wb-responsive-price-table .wb-price {
        display: flex;
        grid-column: 2;
        grid-row: 1;
        align-items: flex-end;
        justify-content: center;
        flex-direction: column;
        gap: 3px;
        padding: 14px;
        border-bottom: 1px solid var(--wb-line);
        white-space: nowrap;
    }

    .wb-responsive-price-table .wb-price::before {
        font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
        font-size: 11px;
    }

    .wb-responsive-price-table td:nth-child(3) {
        grid-column: 1 / -1;
    }

    .wb-responsive-node-table td:first-child strong {
        font-size: 16px;
    }

    .wb-table-swipe-hint {
        display: none;
    }
}

.wb-form-field {
    display: grid;
    gap: 8px;
}

.wb-form-field[hidden] {
    display: none !important;
}

.wb-form-field label {
    color: var(--wb-ink);
    font-size: 14px;
    font-weight: 700;
}

.wb-input,
.wb-select,
.wb-textarea {
    width: 100%;
    color: var(--wb-ink);
    background: #fff;
    border: 1px solid #cbd7e6;
    border-radius: 6px;
    outline: 0;
}

.wb-input,
.wb-select {
    min-height: 46px;
    padding: 0 13px;
}

.wb-select {
    padding-right: 42px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.25 6 6.25l5-5' fill='none' stroke='%2368758a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 14px center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.wb-select:hover {
    border-color: #9db2ca;
}

.wb-select:disabled {
    color: var(--wb-muted);
    background-color: #f8fafc;
    cursor: not-allowed;
}

.wb-select-native-enhanced {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.wb-select-control {
    position: relative;
    width: 100%;
    min-width: 0;
}

.wb-select-trigger {
    position: relative;
    width: 100%;
    min-height: 46px;
    padding: 0 42px 0 13px;
    overflow: hidden;
    color: var(--wb-ink);
    background: #fff;
    border: 1px solid #cbd7e6;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    line-height: 44px;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.wb-select-trigger::after {
    position: absolute;
    top: 50%;
    right: 14px;
    color: var(--wb-muted);
    content: "\f078";
    font-family: "Font Awesome 7 Free";
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    transform: translateY(-50%);
    transition: color 150ms ease, transform 150ms ease;
}

.wb-select-trigger:hover {
    border-color: #9db2ca;
}

.wb-select-control.is-open .wb-select-trigger {
    border-color: var(--wb-blue);
    box-shadow: 0 0 0 3px rgba(8, 120, 232, .12);
}

.wb-select-control.is-open .wb-select-trigger::after {
    color: var(--wb-blue);
    transform: translateY(-50%) rotate(180deg);
}

.wb-select-trigger:disabled {
    color: var(--wb-muted);
    background: #f8fafc;
    cursor: not-allowed;
}

.wb-select-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    z-index: 80;
    max-height: 280px;
    margin: 0;
    padding: 5px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    border: 1px solid #cbd7e6;
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .16);
}

.wb-select-control.is-up .wb-select-menu {
    top: auto;
    bottom: calc(100% + 6px);
}

.wb-select-menu[hidden] {
    display: none;
}

.wb-select-option {
    display: block;
    width: 100%;
    min-height: 38px;
    margin: 1px 0;
    padding: 8px 11px;
    overflow: hidden;
    color: var(--wb-text);
    background: transparent;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    line-height: 22px;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wb-select-option:hover,
.wb-select-option:focus-visible {
    color: var(--wb-blue-dark);
    background: var(--wb-blue-soft);
    outline: 0;
}

.wb-select-option[aria-selected="true"] {
    color: #fff;
    background: var(--wb-blue);
}

.wb-select-option[aria-selected="true"]:hover,
.wb-select-option[aria-selected="true"]:focus-visible {
    color: #fff;
    background: var(--wb-blue-dark);
}

.wb-select-option:disabled {
    color: #98a4b6;
    background: transparent;
    cursor: not-allowed;
}

.wb-textarea {
    min-height: 136px;
    padding: 12px 13px;
    resize: vertical;
}

.wb-input:focus,
.wb-select:focus,
.wb-textarea:focus {
    border-color: var(--wb-blue);
    box-shadow: 0 0 0 3px rgba(8, 120, 232, 0.12);
}

.wb-help-text {
    margin: 0;
    color: var(--wb-muted);
    font-size: 13px;
}

.wb-process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wb-process-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    min-height: 60px;
    gap: 14px;
    border-bottom: 1px solid var(--wb-line);
}

.wb-process-list li span {
    display: grid;
    width: 30px;
    height: 30px;
    color: var(--wb-blue-dark);
    background: var(--wb-blue-soft);
    border-radius: 50%;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
}

.wb-process-list li strong {
    color: var(--wb-ink);
    font-size: 15px;
}

.wb-code-line {
    padding: 13px 14px;
    color: #d8e8f9;
    background: var(--wb-ink);
    border-radius: 6px;
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.wb-calc-formula {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 20px;
    padding: 12px 14px;
    color: var(--wb-muted);
    background: var(--wb-soft);
    border-radius: 5px;
    font-size: .8rem;
}

.wb-calc-formula code {
    color: var(--wb-ink);
    font-weight: 700;
    text-align: right;
    overflow-wrap: anywhere;
}

.wb-table-swipe-hint {
    display: none;
    align-items: center;
    gap: 8px;
    margin: 10px 0 0;
    color: var(--wb-muted);
    font-size: .78rem;
}

.wb-pricing-catalog-group + .wb-pricing-catalog-group {
    margin-top: 46px;
}

.wb-pricing-catalog-group .wb-section-heading {
    margin-bottom: 24px;
}

.wb-price-calculator {
    width: 100%;
    padding: 34px;
    box-shadow: 0 12px 32px rgba(17, 29, 49, .06);
}

.wb-calculator-heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.wb-calculator-heading h2 {
    margin-bottom: 6px;
    font-size: 27px;
}

.wb-calculator-heading p {
    margin: 0;
    color: var(--wb-muted);
    font-size: 14px;
}

.wb-calc-mode-grid,
.wb-calc-input-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.wb-calc-input-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
}

.wb-price-calculator.is-target-only .wb-calc-input-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wb-calculator-channel-note {
    margin: 16px 0 0;
    padding-left: 13px;
    border-left: 3px solid #b8d3ef;
    color: var(--wb-muted);
    font-size: 13px;
    line-height: 1.65;
}

.wb-price-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 16px 0 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--wb-line);
    border-radius: 6px;
}

.wb-price-summary > div {
    min-width: 0;
    padding: 15px 16px;
    border-right: 1px solid var(--wb-line);
}

.wb-price-summary > div:last-child {
    border-right: 0;
}

.wb-price-summary span,
.wb-price-summary strong {
    display: block;
}

.wb-price-summary span {
    margin-bottom: 6px;
    color: var(--wb-muted);
    font-size: 12px;
}

.wb-price-summary strong {
    color: var(--wb-ink);
    font-family: "Cascadia Code", Consolas, monospace;
    font-size: 19px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.wb-price-summary .is-primary {
    background: var(--wb-blue-soft);
}

.wb-price-summary .is-primary strong {
    color: var(--wb-blue-dark);
}

.wb-pricing-billing-section .wb-section-heading {
    margin-bottom: 28px;
}

.wb-billing-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid var(--wb-line);
    border-bottom: 1px solid var(--wb-line);
}

.wb-billing-facts > div {
    min-width: 0;
    padding: 24px;
    border-left: 1px solid var(--wb-line);
}

.wb-billing-facts > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.wb-billing-facts > div:last-child {
    padding-right: 0;
}

.wb-billing-facts dt {
    margin-bottom: 8px;
    color: var(--wb-ink);
    font-size: 14px;
    font-weight: 750;
}

.wb-billing-facts dd {
    margin: 0;
    color: var(--wb-muted);
    font-size: 14px;
    line-height: 1.65;
}

.wb-node-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 18px;
}

.wb-node-map-panel { min-width: 0; overflow: hidden; }
.wb-panel-heading { min-height:90px; padding:20px 24px; display:flex; align-items:center; justify-content:space-between; gap:20px; border-bottom:1px solid var(--wb-line); }
.wb-panel-heading h2 { margin-bottom:4px; font-size:23px; }
.wb-panel-heading p { margin:0; color:var(--wb-muted); font-size:14px; }
.wb-node-map { width:100%; max-width:100%; height:520px; overflow:hidden; contain:layout paint; }
.wb-map-error { height:100%; margin:0; display:grid; place-items:center; color:var(--wb-muted); }
.wb-map-legend { display:flex; flex-wrap:wrap; gap:14px; }
.wb-map-legend span { display:inline-flex; align-items:center; gap:6px; color:var(--wb-muted); font-size:12px; }
.wb-map-legend i { width:9px; height:9px; border-radius:50%; }
.wb-map-legend .is-online { background:#25a36f; }
.wb-map-legend .is-offline { background:#e5a11a; }
.wb-map-legend .is-unknown { background:#8492a6; }

.wb-node-map-controls {
    padding: 16px 24px;
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    background: #fbfcfe;
    border-bottom: 1px solid var(--wb-line);
}

.wb-node-map-controls label {
    color: var(--wb-ink);
    font-size: 13px;
    font-weight: 700;
}

.wb-node-map-controls .wb-select-control {
    width: 100%;
}

.wb-node-detail { padding:26px; }
.wb-node-detail-summary { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:18px; }
.wb-node-detail-summary .wb-eyebrow { margin:0; }
.wb-node-detail-summary .wb-status { flex:0 0 auto; }
.wb-node-detail h2 { margin-bottom:4px; font-size:22px; overflow-wrap:anywhere; }
.wb-node-detail dl { margin:24px 0 0; }
.wb-node-detail dl div { padding:14px 0; border-bottom:1px solid var(--wb-line); }
.wb-node-detail dl div:last-child { border-bottom:0; }
.wb-node-detail dt { color:var(--wb-muted); font-size:12px; font-weight:700; }
.wb-node-detail dd { margin:4px 0 0; color:var(--wb-ink); font-size:14px; font-weight:650; }

.wb-dns-layout { align-items:stretch; }
.wb-turnstile { min-height:72px; margin:20px 0; }
.wb-turnstile[hidden] { display:none; }
.wb-inline-error { margin:0 0 18px; padding:14px; color:#8f2730; background:#fff4f5; border:1px solid #f1c9cd; border-radius:6px; }
.wb-inline-error strong,.wb-inline-error span { display:block; }
.wb-inline-error span { margin-top:4px; font-size:13px; }
.wb-inline-error .wb-button { margin-top:12px; }
.wb-dns-result { position:relative; min-height:360px; padding:36px; display:flex; align-items:flex-start; justify-content:center; flex-direction:column; overflow:hidden; background:#f7faff; transition:background .25s ease,border-color .25s ease,box-shadow .25s ease; }
.wb-dns-result::before { content:""; position:absolute; inset:0 auto 0 0; width:5px; background:#cbd5e1; transition:background .25s ease; }
.wb-dns-result-icon { display:grid; width:54px; height:54px; margin-bottom:24px; color:var(--wb-blue-dark); background:var(--wb-blue-soft); border-radius:50%; place-items:center; font-size:21px; }
.wb-dns-result h2 { margin-bottom:10px; font-size:28px; }
.wb-dns-result p { max-width:560px; margin-bottom:0; color:var(--wb-muted); }
.wb-dns-result-domain { margin-top:18px; padding:8px 12px; color:var(--wb-ink); background:#fff; border:1px solid var(--wb-line); border-radius:5px; font-family:"Cascadia Code",Consolas,monospace; overflow-wrap:anywhere; }
.wb-dns-result[data-state="checking"] { background:linear-gradient(180deg,#f7fbff 0%,#fff 100%); border-color:#bfdbfe; box-shadow:0 18px 40px rgba(15,122,229,.12); }
.wb-dns-result[data-state="checking"]::before { background:#1d4ed8; }
.wb-dns-result[data-state="checking"] .wb-dns-result-icon { color:#1d4ed8; background:#eaf3ff; }
.wb-dns-result[data-state="checking"] h2 { color:#1d4ed8; }
.wb-dns-result[data-state="checking"] p { color:#1e40af; }
.wb-dns-result[data-state="normal"] { background:linear-gradient(180deg,#f3fcf7 0%,#fff 100%); border-color:#86efac; box-shadow:0 18px 40px rgba(22,163,74,.12); }
.wb-dns-result[data-state="normal"]::before { background:#16a34a; }
.wb-dns-result[data-state="normal"] .wb-dns-result-icon { color:#15803d; background:#e9fbf2; }
.wb-dns-result[data-state="normal"] h2 { color:#15803d; }
.wb-dns-result[data-state="normal"] p { color:#166534; }
.wb-dns-result[data-state="polluted"] { background:linear-gradient(180deg,#fff5f5 0%,#fff 100%); border-color:#fca5a5; box-shadow:0 18px 40px rgba(220,38,38,.12); }
.wb-dns-result[data-state="polluted"]::before { background:#dc2626; }
.wb-dns-result[data-state="polluted"] .wb-dns-result-icon { color:#b91c1c; background:#fff2f3; }
.wb-dns-result[data-state="polluted"] h2 { color:#b91c1c; }
.wb-dns-result[data-state="polluted"] p { color:#991b1b; }
.wb-dns-result[data-state="unknown"],
.wb-dns-result[data-state="error"] { background:linear-gradient(180deg,#fffaf0 0%,#fff 100%); border-color:#fcd34d; box-shadow:0 18px 40px rgba(245,158,11,.12); }
.wb-dns-result[data-state="unknown"]::before,
.wb-dns-result[data-state="error"]::before { background:#f59e0b; }
.wb-dns-result[data-state="unknown"] .wb-dns-result-icon,
.wb-dns-result[data-state="error"] .wb-dns-result-icon { color:#b45309; background:#fff7df; }
.wb-dns-result[data-state="unknown"] h2,
.wb-dns-result[data-state="error"] h2 { color:#b45309; }
.wb-dns-result[data-state="unknown"] p,
.wb-dns-result[data-state="error"] p { color:#92400e; }

.wb-about-visual { min-height:360px; padding:48px; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:15px; color:#dbeafe; background:#15243a url('/static/images/weavebit-network-hero.jpg') center/cover no-repeat; text-align:center; }
.wb-about-visual::before { content:""; }
.wb-about-visual i { font-size:54px; color:#fff; text-shadow:0 2px 10px rgba(0,0,0,.35); }
.wb-about-visual strong { color:#fff; font-size:22px; text-shadow:0 2px 10px rgba(0,0,0,.5); }
.wb-about-visual span { padding:6px 10px; color:#fff; background:rgba(13,23,40,.8); border-radius:5px; font-size:13px; }

.wb-blog-search { max-width:720px; margin-top:28px; display:grid; grid-template-columns:1fr auto auto; gap:10px; }
.wb-blog-count { margin-bottom:18px; color:var(--wb-muted); font-size:14px; }
.wb-blog-count strong { color:var(--wb-ink); }
.wb-blog-featured { display:grid; grid-template-columns:minmax(0,1.18fr) minmax(300px,.82fr); min-width:0; margin-bottom:26px; overflow:hidden; color:#fff; background:#102038; border-radius:var(--wb-radius); }
.wb-blog-featured-cover { min-height:360px; overflow:hidden; }
.wb-blog-featured-cover img { width:100%; height:100%; object-fit:cover; }
.wb-blog-featured-body { display:flex; align-items:flex-start; justify-content:center; flex-direction:column; min-width:0; padding:38px; }
.wb-blog-featured .wb-blog-meta { color:#a9bdd5; }
.wb-blog-featured h2 { margin:18px 0 12px; font-size:clamp(1.65rem,3vw,2.35rem); }
.wb-blog-featured h2 a { color:#fff; }
.wb-blog-featured p { color:#c9d7e8; }
.wb-blog-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.wb-blog-card { min-width:0; overflow:hidden; }
.wb-blog-cover { display:block; aspect-ratio:16/9; overflow:hidden; background:var(--wb-soft); }
.wb-blog-cover img { width:100%; height:100%; object-fit:cover; transition:transform 180ms ease; }
.wb-blog-card:hover .wb-blog-cover img { transform:scale(1.025); }
.wb-blog-body { padding:24px; }
.wb-blog-meta { display:flex; flex-wrap:wrap; gap:9px 18px; color:var(--wb-muted); font-size:12px; }
.wb-blog-meta span { display:inline-flex; align-items:center; gap:6px; }
.wb-blog-body h2 { margin:14px 0 10px; font-size:20px; }
.wb-blog-body h2 a { color:var(--wb-ink); }
.wb-blog-body h2 a { display:-webkit-box; min-height:4.5em; overflow:hidden; -webkit-box-orient:vertical; -webkit-line-clamp:3; }
.wb-blog-body p { display:-webkit-box; min-height:6.6em; overflow:hidden; color:var(--wb-muted); font-size:14px; -webkit-box-orient:vertical; -webkit-line-clamp:4; }
.wb-empty-state { min-height:360px; padding:40px; display:flex; align-items:center; justify-content:center; flex-direction:column; text-align:center; background:var(--wb-soft); border:1px solid var(--wb-line); border-radius:var(--wb-radius); }
.wb-empty-state > i { margin-bottom:18px; color:#8ca0b9; font-size:40px; }
.wb-error-code { color:var(--wb-blue); font-size:56px; line-height:1; }
.wb-pagination { margin-top:32px; display:flex; align-items:center; justify-content:center; gap:18px; }
.wb-article-header { padding:54px 0 44px; background:#f3f8fe; }
.wb-article-header h1 { max-width:900px; margin:18px 0 15px; }
.wb-article-header p { max-width:760px; margin:0; color:var(--wb-muted); font-size:18px; }
.wb-article-layout { display:grid; grid-template-columns:minmax(0,872px) 276px; align-items:start; gap:32px; }
.wb-article { overflow:hidden; }
.wb-article-cover { width:100%; max-height:480px; object-fit:cover; }
.wb-prose { width:100%; max-width:840px; margin:0 auto; padding:42px 40px; color:#2f4058; }
.wb-prose h2 { margin:36px 0 14px; font-size:27px; }
.wb-prose h3 { margin:28px 0 12px; }
.wb-prose p,.wb-prose ul,.wb-prose ol { margin-bottom:20px; }
html[lang="zh-CN"] .wb-article .wb-prose > p,
html[lang="zh-CN"] .wb-article .wb-prose > article > p { text-indent:2em; }
html[lang="zh-CN"] .wb-article .wb-prose > p:has(> img:only-child),
html[lang="zh-CN"] .wb-article .wb-prose > article > p:has(> img:only-child) { text-indent:0; }
.wb-prose img { margin:24px auto; border-radius:6px; }
.wb-prose pre { padding:18px; color:#dbeafe; background:var(--wb-ink); border-radius:6px; overflow:auto; }
.wb-prose code { font-family:"Cascadia Code",Consolas,monospace; }
.wb-prose .table-responsive {
    width: 100%;
    max-width: 100%;
    margin: 24px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
}
.wb-prose .table-responsive table {
    width: max-content;
    min-width: 100%;
    margin: 0;
}
.wb-prose table th,
.wb-prose table td {
    min-width: 130px;
    padding: 11px 13px;
    border: 1px solid var(--wb-line);
    text-align: left;
    vertical-align: top;
}
.wb-prose table th {
    color: var(--wb-ink);
    background: var(--wb-soft);
}
.wb-article-toc { position:sticky; top:calc(var(--wb-active-header-height) + 24px); max-height:calc(100vh - var(--wb-active-header-height) - 48px); padding:22px; overflow:auto; }
.wb-article-toc h2 { margin-bottom:12px; font-size:18px; }
.wb-article-toc a { padding:8px 0; display:block; color:var(--wb-muted); border-bottom:1px solid #edf1f6; font-size:13px; line-height:1.4; }
.wb-article-toc a:hover { color:var(--wb-blue-dark); }
.wb-article-toc a[aria-current="location"] { color:var(--wb-blue-dark); font-weight:700; }
.wb-article-toc a.is-subsection { padding-left:14px; font-size:12px; }
.wb-related-bottom { max-width:1180px; margin:54px auto 0; }
.wb-related-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.wb-related-grid a { min-width:0; padding:20px; color:var(--wb-ink); }
.wb-related-grid strong { display:-webkit-box; overflow:hidden; -webkit-box-orient:vertical; -webkit-line-clamp:3; }
.wb-related-grid span { display:block; margin-top:10px; color:var(--wb-muted); font-size:12px; }

@media(max-width:900px){.wb-blog-featured{grid-template-columns:1fr}.wb-blog-featured-cover{min-height:300px;aspect-ratio:16/9}.wb-blog-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.wb-article-layout{grid-template-columns:minmax(0,1fr)}.wb-article-toc{position:static;grid-row:1;max-height:none}.wb-related-grid{grid-template-columns:1fr}}
@media(max-width:620px){.wb-blog-search{grid-template-columns:1fr}.wb-blog-featured-cover{min-height:0}.wb-blog-featured-body{padding:26px}.wb-blog-grid{grid-template-columns:1fr}.wb-prose{padding:24px}.wb-article-header{padding:42px 0 34px}}

.wb-legal-updated { display:block; margin-top:20px; color:var(--wb-muted); font-size:13px; }
.wb-legal-toc { max-width:900px; margin:0 auto 18px; padding:20px 24px; background:#fff; border:1px solid var(--wb-line); border-radius:var(--wb-radius); }
.wb-legal-toc strong { display:block; margin-bottom:10px; font-size:14px; }
.wb-legal-toc div { display:flex; flex-wrap:wrap; gap:8px 18px; }
.wb-legal-toc a { color:var(--wb-muted); font-size:13px; }
.wb-legal-toc a:hover { color:var(--wb-blue-dark); }
.wb-legal-document { max-width:900px; margin:0 auto; padding:46px 54px; }
.wb-legal-document section { padding:24px 0; border-bottom:1px solid var(--wb-line); }
.wb-legal-document section:first-child { padding-top:0; }
.wb-legal-document section:last-child { padding-bottom:0; border-bottom:0; }
.wb-legal-document h2 { margin-bottom:10px; font-size:24px; }
.wb-legal-document p { margin:0; }
@media(max-width:620px){.wb-legal-document{padding:28px 24px}}

@media (max-width: 900px) {
    .wb-node-layout { grid-template-columns: 1fr; }
    .wb-node-detail { display:block; }
    .wb-node-map { height:460px; }

    .wb-billing-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wb-billing-facts > div:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .wb-billing-facts > div:nth-child(even) {
        padding-right: 0;
    }

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

@media (max-width: 900px) {
    .wb-api-primary {
        grid-template-columns: 1fr;
    }

    .wb-api-shared {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .wb-onboarding-checklist {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .wb-onboarding-checklist li,
    .wb-onboarding-checklist li:first-child,
    .wb-onboarding-checklist li:last-child {
        display: grid;
        grid-template-columns: 38px 1fr;
        gap: 16px;
        padding: 0;
    }

    .wb-onboarding-checklist li + li::before {
        top: -18px;
        left: 19px;
        width: 1px;
        height: 18px;
    }

    .wb-onboarding-checklist li > span {
        margin: 0;
    }
}

@media (max-width: 620px) {
    .wb-panel-heading { align-items:flex-start; flex-direction:column; }
    .wb-node-map-controls { grid-template-columns:1fr; gap:8px; padding:14px 18px; }
    .wb-node-map { height:410px; }
    .wb-dns-submit { width:100%; }
}

@media (max-width: 620px) {
    .wb-calc-formula {
        align-items: flex-start;
        flex-direction: column;
    }

    .wb-calc-formula code {
        text-align: left;
    }
}

@media (max-width: 620px) {
    .wb-check-facts {
        grid-template-columns: 1fr;
    }

    .wb-check-facts > div,
    .wb-check-facts > div + div {
        padding: 10px 0;
        border-left: 0;
    }

    .wb-check-facts dd {
        min-height: 0;
    }

    .wb-check-facts > div + div {
        border-top: 1px solid var(--wb-line);
    }

    .wb-api-mode-card {
        padding: 22px;
    }

    .wb-api-mode-facts > div,
    .wb-api-use-case-list li,
    .wb-api-shared-facts > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .wb-api-primary-copy,
    .wb-api-code-stack {
        padding: 24px;
    }
}

.wb-form-panel {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--wb-line);
    border-radius: var(--wb-radius);
}

.wb-cta-band-vertical {
    display: block;
}

.wb-cta-band-vertical p {
    margin-bottom: 22px;
}

.wb-dns-privacy {
    margin-top: 16px;
}

.wb-dns-privacy i {
    margin-right: 7px;
}

.wb-code-reset {
    margin: 0;
}

.wb-divider {
    height: 1px;
    margin: 24px 0;
    background: var(--wb-line);
}

.wb-cta-band {
    padding: 38px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #dfeafb;
    background: var(--wb-ink);
    border-radius: var(--wb-radius);
}

.wb-cta-band h2 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 28px;
}

.wb-cta-band p {
    margin-bottom: 0;
    color: #afbed1;
}

.wb-site-footer {
    padding: 64px 0 26px;
    color: #aebdd0;
    background: #0d1728;
}

.wb-footer-grid {
    width: var(--wb-content);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(250px, 1.6fr) repeat(3, minmax(150px, 0.8fr));
    gap: 48px;
}

.wb-footer-grid h2 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 14px;
}

.wb-footer-grid a {
    display: block;
    width: fit-content;
    margin: 9px 0;
    color: #aebdd0;
    font-size: 14px;
}

.wb-footer-grid a:hover {
    color: #fff;
}

.wb-footer-brand img {
    width: 145px;
    margin-bottom: 18px;
}

.wb-footer-brand p {
    max-width: 370px;
    margin-bottom: 16px;
}

.wb-footer-bottom {
    width: var(--wb-content);
    margin: 40px auto 0;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8190a4;
    font-size: 12px;
}

@media (max-width: 1120px) {
    .wb-header-inner {
        grid-template-columns: 180px 1fr auto;
        gap: 14px;
    }

    .wb-nav-link {
        padding: 0 10px;
        font-size: 14px;
    }

    .wb-nav-link::after {
        right: 10px;
        left: 10px;
    }

    .wb-header-free {
        display: none;
    }
}

@media (max-width: 900px) {
    :root {
        --wb-header-height: 74px;
        --wb-content: min(100% - 30px, 1180px);
    }

    h1,
    .wb-hero h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    .wb-header-inner {
        grid-template-columns: 1fr auto auto;
    }

    .wb-site-header.is-compact {
        height: var(--wb-header-height);
    }

    .wb-brand img {
        width: 146px;
    }

    .wb-brand span {
        display: none;
    }

    .wb-menu-toggle {
        display: inline-grid;
        place-items: center;
        order: 3;
    }

    .wb-primary-nav {
        position: fixed;
        top: var(--wb-header-height);
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 130;
        display: flex;
        width: min(360px, 100%);
        height: auto;
        padding: 22px 20px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 4px;
        background: #fff;
        box-shadow: -18px 0 48px rgba(17, 29, 49, 0.16);
        overflow-y: auto;
        visibility: hidden;
        transform: translateX(100%);
        pointer-events: none;
        transition: transform 180ms ease, visibility 180ms ease;
    }

    .wb-primary-nav.is-open {
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }

    .wb-menu-backdrop:not([hidden]) {
        position: fixed;
        top: var(--wb-header-height);
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 120;
        display: block;
        padding: 0;
        background: rgba(17, 29, 49, 0.34);
        border: 0;
        cursor: default;
    }

    .wb-mobile-nav-actions {
        margin-top: 12px;
        padding-top: 18px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        border-top: 1px solid var(--wb-line);
    }

    .wb-nav-link {
        height: 50px;
        padding: 0 14px;
        border-radius: 6px;
        font-size: 16px;
    }

    .wb-nav-link::after {
        display: none;
    }

    .wb-nav-link.is-active {
        background: var(--wb-blue-soft);
    }

    .wb-header-actions .wb-button {
        display: none;
    }

    .wb-hero-copy {
        width: min(710px, 82%);
    }

    .wb-hero::before { background: rgba(255, 255, 255, 0.72); }

    .wb-capability-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wb-capability-stat:nth-child(2) {
        border-right: 0;
    }

    .wb-capability-stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--wb-line);
    }

    .wb-grid-3,
    .wb-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wb-product-band {
        grid-template-columns: 1fr;
    }

    .wb-grid-stack-tablet {
        grid-template-columns: 1fr;
    }

    .wb-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px;
    }

    .wb-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    :root {
        --wb-content: calc(100% - 24px);
        --wb-header-height: 68px;
    }

    body {
        font-size: 15px;
    }

    h1,
    .wb-hero h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 27px;
    }

    .wb-site-header {
        height: var(--wb-header-height);
    }

    .wb-primary-nav {
        width: 100%;
        padding: 16px 14px 24px;
    }

    .wb-mobile-nav-actions {
        grid-template-columns: 1fr;
    }

    .wb-header-inner {
        grid-template-columns: 1fr auto auto;
    }

    .wb-brand img {
        width: 134px;
    }

    .wb-language-switch a {
        min-width: 34px;
        padding: 0 5px;
    }

    .wb-hero {
        min-height: 610px;
        background-position: 64% center;
    }

    .wb-hero::before {
        background: rgba(255, 255, 255, 0.84);
    }

    .wb-hero-inner {
        align-items: flex-end;
        padding: 70px 0 112px;
    }

    .wb-hero-copy {
        width: 100%;
    }

    .wb-hero-lead,
    .wb-page-hero p,
    .wb-section-heading p {
        font-size: 16px;
    }

    .wb-button-row .wb-button {
        width: 100%;
    }

    .wb-capability-strip,
    .wb-grid-2,
    .wb-grid-3,
    .wb-grid-4 {
        grid-template-columns: 1fr;
    }

    .wb-capability-stat {
        min-height: 88px;
        border-right: 0;
        border-bottom: 1px solid var(--wb-line);
    }

    .wb-capability-stat:last-child {
        border-bottom: 0;
    }

    .wb-section {
        padding: 64px 0;
    }

    .wb-page-hero {
        padding: 42px 0 34px;
    }

    .wb-page-hero h1 {
        font-size: 34px;
    }

    .wb-product-band-copy,
    .wb-result-board,
    .wb-feature-card,
    .wb-form-panel {
        padding: 22px;
    }

    .wb-calc-mode-grid,
    .wb-calc-input-grid,
    .wb-price-summary {
        grid-template-columns: 1fr;
    }

    .wb-price-summary > div {
        border-right: 0;
        border-bottom: 1px solid var(--wb-line);
    }

    .wb-price-summary > div:last-child {
        border-bottom: 0;
    }

    .wb-pricing-catalog-group + .wb-pricing-catalog-group {
        margin-top: 38px;
    }

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

    .wb-billing-facts > div,
    .wb-billing-facts > div:nth-child(odd),
    .wb-billing-facts > div:nth-child(even) {
        padding: 18px 0;
        border-left: 0;
        border-bottom: 1px solid var(--wb-line);
    }

    .wb-billing-facts > div:last-child {
        border-bottom: 0;
    }

    .wb-result-row {
        grid-template-columns: 1fr auto;
    }

    .wb-result-row > :last-child {
        display: none;
    }

    .wb-cta-band {
        padding: 28px 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .wb-contact-actions {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .wb-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 22px;
    }

    .wb-footer-brand {
        grid-column: 1 / -1;
    }

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

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
