:root {
    --nlb-body-bg: #0f172a;
    --nlb-navbar-bg: rgba(15, 23, 42, 0.65);
    --nlb-navbar-bg-scrolled: rgba(15, 23, 42, 0.42);
    --nlb-menu-text: #cbd5f5;
    --nlb-menu-hover: #22c55e;
    --nlb-accent-start: #22c55e;
    --nlb-accent-end: #4ade80;
    --nlb-accent-text: #022c22;
    --nlb-banner-bg-start: #020617;
    --nlb-banner-bg-end: #065f46;
    --nlb-banner-border: #22c55e;
    --nlb-banner-title: #4ade80;
    --nlb-badge-bg: #22c55e;
    --nlb-badge-text: #022c22;
    --nlb-banner-height: 120px;
    --nlb-banner-padding-y: 20px;
    --nlb-banner-padding-x: 40px;
    --nlb-banner-radius: 20px;
    --nlb-banner-wrapper-max: 900px;
    --nlb-content-wrapper-max: 1240px;
    --nlb-banner-logo-size: 58px;
    --nlb-banner-logo-sink-percent: 0;
    --nlb-banner-mobile-logo-top-overflow-percent: 50;
    --nlb-banner-mobile-logo-right-overflow-percent: 20;
    --nlb-page-bg-start: #060c1a;
    --nlb-page-bg-mid: #0a1730;
    --nlb-page-bg-end: #052338;
    --nlb-page-spot-1: rgba(74, 222, 128, 0.24);
    --nlb-page-spot-2: rgba(34, 197, 94, 0.2);
    --nlb-page-spot-3: rgba(56, 189, 248, 0.18);
}

body {
    margin: 0;
    background-color: var(--nlb-body-bg);
    background-image:
        radial-gradient(1200px 700px at 8% 0%, var(--nlb-page-spot-1), transparent 72%),
        radial-gradient(980px 620px at 92% 12%, var(--nlb-page-spot-3), transparent 70%),
        radial-gradient(1100px 680px at 50% 90%, var(--nlb-page-spot-2), transparent 74%),
        linear-gradient(160deg, var(--nlb-page-bg-start), var(--nlb-page-bg-mid) 52%, var(--nlb-page-bg-end));
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

body.nlb-mode-light {
    --nlb-body-bg: #e8f0ff;
    --nlb-navbar-bg: rgba(248, 252, 255, 0.92);
    --nlb-navbar-bg-scrolled: rgba(240, 247, 255, 0.82);
    --nlb-menu-text: #1f2937;
    --nlb-menu-hover: #15803d;
    --nlb-accent-start: #16a34a;
    --nlb-accent-end: #86efac;
    --nlb-accent-text: #052e16;
    --nlb-banner-bg-start: #eff6ff;
    --nlb-banner-bg-end: #dcfce7;
    --nlb-banner-border: #16a34a;
    --nlb-banner-title: #166534;
    --nlb-badge-bg: #22c55e;
    --nlb-badge-text: #052e16;
    --nlb-page-bg-start: #f8fbff;
    --nlb-page-bg-mid: #eef6ff;
    --nlb-page-bg-end: #e1efff;
    --nlb-page-spot-1: rgba(74, 222, 128, 0.2);
    --nlb-page-spot-2: rgba(16, 185, 129, 0.14);
    --nlb-page-spot-3: rgba(125, 211, 252, 0.22);
    color: #0f172a;
}

body.nlb-mode-night {
    --nlb-body-bg: #02050f;
    --nlb-navbar-bg: rgba(2, 6, 23, 0.78);
    --nlb-navbar-bg-scrolled: rgba(2, 6, 23, 0.56);
    --nlb-menu-text: #dbeafe;
    --nlb-menu-hover: #34d399;
    --nlb-accent-start: #0ea5e9;
    --nlb-accent-end: #22d3ee;
    --nlb-accent-text: #082f49;
    --nlb-banner-bg-start: #020617;
    --nlb-banner-bg-end: #12284a;
    --nlb-banner-border: #0ea5e9;
    --nlb-banner-title: #7dd3fc;
    --nlb-badge-bg: #22d3ee;
    --nlb-badge-text: #082f49;
    --nlb-page-bg-start: #01030b;
    --nlb-page-bg-mid: #071229;
    --nlb-page-bg-end: #081935;
    --nlb-page-spot-1: rgba(34, 211, 238, 0.17);
    --nlb-page-spot-2: rgba(45, 212, 191, 0.14);
    --nlb-page-spot-3: rgba(59, 130, 246, 0.16);
}

html {
    scrollbar-gutter: stable;
}

.wrapper {
    width: 95%;
    margin: 60px auto;
}

.wrapper--banner {
    max-width: var(--nlb-banner-wrapper-max);
    margin: 60px auto 0;
}

.wrapper--content {
    max-width: var(--nlb-content-wrapper-max);
}

.nlb-main {
    position: relative;
    isolation: isolate;
}

.nlb-main::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(760px 340px at 50% 140px, var(--nlb-page-spot-1), transparent 72%),
        radial-gradient(820px 360px at 84% 720px, var(--nlb-page-spot-3), transparent 72%),
        radial-gradient(820px 360px at 16% 1280px, var(--nlb-page-spot-2), transparent 74%);
}

.nlb-main > * {
    position: relative;
    z-index: 1;
}

.banner {
    position: relative;
    min-height: var(--nlb-banner-height);
    height: auto;
    padding: var(--nlb-banner-padding-y) var(--nlb-banner-padding-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid var(--nlb-banner-border);
    border-radius: var(--nlb-banner-radius);
    background: linear-gradient(135deg, var(--nlb-banner-bg-start), var(--nlb-banner-bg-end));
    color: white;
    overflow: hidden;
}

.left {
    z-index: 2;
    margin-top: 12px;
}

.left h1 {
    font-size: clamp(20px, 1.5vw, 26px);
    margin: 0;
    line-height: 1.2;
}

.left p {
    font-size: clamp(13px, 1.05vw, 15px);
    line-height: 1.45;
    margin: 6px 0 0;
}

#bannerNote {
    margin: 4px 0 0;
}

.left > :last-child {
    margin-bottom: 0;
}

.product {
    position: relative;
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 25px;
    border: none;
    background: linear-gradient(135deg, var(--nlb-accent-start), var(--nlb-accent-end));
    color: var(--nlb-accent-text);
    cursor: pointer;
}

.badge {
    position: absolute;
    top: -2px;
    left: 40px;
    background: var(--nlb-badge-bg);
    color: var(--nlb-badge-text);
    border: 2px solid var(--nlb-badge-bg);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
}

.stripe {
    position: absolute;
    width: 120px;
    height: 240%;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(25deg);
    top: -70%;
    left: -180px;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.27), transparent);
    left: -100px;
    top: -40px;
}

.product {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    position: relative;
}

#bannerLogo {
    position: absolute;
    left: 68%;
    transform: translateX(-50%);
    width: var(--nlb-banner-logo-size);
    height: var(--nlb-banner-logo-size);
    object-fit: contain;
    z-index: 2;
    opacity: 0;
    bottom: -70px;
    pointer-events: none;
}

#bannerTitle {
    color: var(--nlb-banner-title);
    font-weight: bold;
}

.navbar {
    position: relative;
    z-index: 1000;
    width: 100%;
    margin: 0;
    background: var(--nlb-navbar-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

.navbar.is-sticky {
    position: fixed;
    top: var(--wp-admin--admin-bar--height, 0px);
    left: 0;
    right: 0;
}

.navbar.is-sticky.has-scroll-bg-shift.is-scrolled {
    background: var(--nlb-navbar-bg-scrolled);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.nav-title {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.nav-center {
    display: flex;
    gap: 24px;
}

.nav-center .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.nav-center .primary-menu > li {
    position: relative;
}

.nav-center .primary-menu a {
    text-decoration: none;
    color: var(--nlb-menu-text);
    font-size: 14px;
    transition: 0.2s;
}

.nav-center .primary-menu a:hover,
.nav-center .primary-menu a:focus-visible {
    color: var(--nlb-menu-hover);
}

.nav-center .primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1200;
}

.nav-center .primary-menu li:hover > .sub-menu,
.nav-center .primary-menu li:focus-within > .sub-menu {
    display: block;
}

.nav-center .primary-menu .sub-menu li {
    margin-bottom: 6px;
}

.nav-center .primary-menu .sub-menu li:last-child {
    margin-bottom: 0;
}

.nav-center .primary-menu .sub-menu a {
    display: block;
    font-size: 13px;
    padding: 3px 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nlb-mode-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(2, 6, 23, 0.38);
    backdrop-filter: blur(5px);
}

.nlb-mode-switch--mobile {
    margin-top: 4px;
    align-self: flex-start;
}

.nlb-mode-btn {
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(15, 23, 42, 0.5);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nlb-mode-btn:hover,
.nlb-mode-btn:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.7);
}

.nlb-mode-btn.is-active {
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.3);
    background: rgba(15, 23, 42, 0.82);
}

.nlb-mode-icon {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: block;
}

.nlb-mode-icon--original {
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: linear-gradient(115deg, #1e293b 49%, #111827 51%);
}

.nlb-mode-icon--light {
    border: 1px solid #facc15;
    background: #fef9c3;
}

.nlb-mode-icon--light::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
}

.nlb-mode-icon--night {
    border: 1px solid rgba(186, 230, 253, 0.9);
    background: #020617;
}

.nlb-mode-icon--night::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #bae6fd;
}

body.nlb-mode-light .navbar {
    border-bottom-color: rgba(15, 23, 42, 0.12);
}

body.nlb-mode-light .nav-title,
body.nlb-mode-light .menu-toggle {
    color: #0f172a;
}

body.nlb-mode-light .mobile-menu {
    background: rgba(248, 252, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.12);
}

body.nlb-mode-light .nlb-mode-switch {
    border-color: rgba(15, 23, 42, 0.16);
    background: rgba(248, 252, 255, 0.86);
}

body.nlb-mode-light .nlb-mode-btn {
    border-color: rgba(15, 23, 42, 0.26);
    background: rgba(255, 255, 255, 0.84);
}

body.nlb-mode-light .nlb-mode-btn.is-active {
    border-color: rgba(15, 23, 42, 0.48);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18);
}

body.nlb-mode-light .banner {
    color: #0f172a;
}

body.nlb-mode-light #bannerSubtitle,
body.nlb-mode-light #bannerNote {
    color: #1f2937;
}

body.nlb-mode-light .nav-center .primary-menu .sub-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(15, 23, 42, 0.14);
}

body.nlb-mode-light .nav-center .primary-menu .sub-menu a {
    color: #1f2937;
}

body.nlb-mode-light .mobile-menu a,
body.nlb-mode-light .mobile-menu-list a {
    color: #1f2937;
}

body.nlb-mode-light .nlb-plugin-section {
    color: #0f172a;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(236, 246, 255, 0.84));
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

body.nlb-mode-light .nlb-plugin-section::before {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.16) 0%, transparent 72%);
}

body.nlb-mode-light .nlb-plugin-section:nth-of-type(even)::before {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.14) 0%, transparent 72%);
}

body.nlb-mode-light .nlb-plugin-section h2 {
    color: #166534;
}

body.nlb-mode-light .nlb-plugin-section h3,
body.nlb-mode-light .nlb-plugin-section h4,
body.nlb-mode-light .nlb-plugin-section h5,
body.nlb-mode-light .nlb-doc-pin-name {
    color: #0f172a;
}

body.nlb-mode-light .nlb-plugin-subtitle,
body.nlb-mode-light .nlb-plugin-card p,
body.nlb-mode-light .nlb-pricing-card li,
body.nlb-mode-light .nlb-faq-answer,
body.nlb-mode-light .nlb-contact-card p,
body.nlb-mode-light .nlb-docs-body p,
body.nlb-mode-light .nlb-docs-body ul,
body.nlb-mode-light .nlb-docs-body ol,
body.nlb-mode-light .nlb-doc-node-copy p,
body.nlb-mode-light .nlb-doc-node-empty,
body.nlb-mode-light .nlb-doc-node-note,
body.nlb-mode-light .nlb-doc-problem-card p,
body.nlb-mode-light .nlb-doc-example-card p {
    color: #334155;
}

body.nlb-mode-light .nlb-plugin-points li,
body.nlb-mode-light .nlb-plugin-card,
body.nlb-mode-light .nlb-feature-icon,
body.nlb-mode-light .nlb-pricing-card,
body.nlb-mode-light .nlb-faq-item,
body.nlb-mode-light .nlb-contact-card,
body.nlb-mode-light .nlb-docs-toc,
body.nlb-mode-light .nlb-docs-list a,
body.nlb-mode-light .nlb-docs-article,
body.nlb-mode-light .nlb-doc-node-card,
body.nlb-mode-light .nlb-doc-node-meta-block,
body.nlb-mode-light .nlb-doc-graph-step,
body.nlb-mode-light .nlb-doc-graph-image,
body.nlb-mode-light .nlb-doc-problem-card,
body.nlb-mode-light .nlb-doc-example-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.1);
}

body.nlb-mode-light .nlb-docs-list a:hover,
body.nlb-mode-light .nlb-docs-list a:focus-visible {
    background: rgba(240, 249, 255, 0.95);
}

body.nlb-mode-light .nlb-doc-type-badge,
body.nlb-mode-light .nlb-plan-chip {
    background: rgba(22, 163, 74, 0.16);
    color: #166534;
}

body.nlb-mode-light .nlb-doc-graph-step {
    color: #0f172a;
}

body.nlb-mode-light .nlb-doc-graph-arrow {
    color: #334155;
}

body.nlb-mode-light .nlb-plugin-ghost-btn {
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.25);
    background: rgba(248, 252, 255, 0.9);
}

body.nlb-mode-light .nlb-contact-native-form label {
    color: #0f172a;
}

body.nlb-mode-light .nlb-contact-native-form input,
body.nlb-mode-light .nlb-contact-native-form textarea {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.22);
}

.download-btn {
    padding: 9px 22px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
    border: none;
    background: linear-gradient(135deg, var(--nlb-accent-start), var(--nlb-accent-end));
    color: var(--nlb-accent-text);
    cursor: pointer;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}

.download-btn:hover {
    transform: scale(1.05);
}

.btn,
.download-btn {
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}

.nav-inner {
    max-width: calc(var(--nlb-content-wrapper-max) + 120px);
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
    background: transparent;
    border: 0;
}

.mobile-menu {
    position: fixed;
    left: 0;
    top: var(--nlb-navbar-height, 60px);
    width: 35%;
    height: calc(100vh - var(--nlb-navbar-height, 60px));
    display: flex;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    padding: 20px;
    gap: 12px;
    border-radius: 0 12px 12px 0;
    transform: translateX(-100%);
    opacity: 1;
    transition: transform 0.35s ease;
    z-index: 999;
}

.mobile-menu-list,
.mobile-menu-list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list .sub-menu {
    padding-left: 14px;
}

.mobile-menu a,
.mobile-menu-list a {
    color: var(--nlb-menu-text);
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    display: block;
}

.mobile-menu a:hover,
.mobile-menu-list a:hover {
    color: var(--nlb-menu-hover);
}

.mobile-menu .download-btn,
.mobile-download-btn {
    margin-top: auto;
    margin-bottom: 45px;
    width: 90%;
}

@media (max-width: 1024px) {
    .nav-inner {
        width: 95%;
    }

    .nav-center .primary-menu {
        gap: 16px;
    }

    .nav-logo {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .nav-inner {
        flex-wrap: wrap;
    }

    .nav-center {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 10px;
        gap: 12px;
    }

    .nav-center.active {
        display: flex;
    }

    .nav-right {
        margin-left: auto;
    }

    .menu-toggle {
        display: block;
        font-size: 22px;
        cursor: pointer;
        color: white;
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-center {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .mobile-menu.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 1024px) {
    .banner {
        position: relative;
    }

    #bannerLogo {
        left: calc(55% + 10px);
    }

    .right {
        margin-left: auto;
    }

    .btn {
        position: relative;
    }
}

@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 15px;
        gap: 10px;
    }

    .left {
        margin-top: 20px;
        max-width: 100%;
    }

    #bannerLogo {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        transform: translate(
            calc(var(--nlb-banner-mobile-logo-right-overflow-percent) * 1%),
            calc(var(--nlb-banner-mobile-logo-top-overflow-percent) * -1%)
        );
        width: calc(var(--nlb-banner-logo-size) * 0.8276);
        height: calc(var(--nlb-banner-logo-size) * 0.8276);
        bottom: auto;
        opacity: 1;
    }

    .right {
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .badge {
        left: 15px;
    }
}

@media (max-width: 480px) {
    #bannerLogo {
        width: calc(var(--nlb-banner-logo-size) * 0.7241);
        height: calc(var(--nlb-banner-logo-size) * 0.7241);
    }

    .title {
        font-size: 15px;
    }

    .desc {
        font-size: 12px;
    }

    .left {
        z-index: 999;
    }
}

@media (max-width: 480px) {
    .nav-title {
        font-size: 15px;
    }

    .download-btn {
        padding: 7px 14px;
        font-size: 12px;
    }

    .title {
        font-size: 16px;
    }

    .desc {
        font-size: 12px;
    }

    .btn {
        font-size: 13px;
        padding: 10px;
    }
}

/* Animation states used by theme.js */
#bannerTitle,
#bannerSubtitle {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

#bannerCta {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#bannerNote {
    opacity: 0;
    transition: opacity 0.25s ease;
}

#bannerBadge {
    left: -80px;
    opacity: 0.5;
    transition: all 0.4s ease;
}

#bannerStripe,
#bannerBgGlow,
#bannerLogo {
    transition: all 0.4s ease;
}

#bannerTitle.is-visible,
#bannerSubtitle.is-visible {
    opacity: 1;
    transform: translateX(0);
}

#bannerCta.is-visible {
    opacity: 1;
    transform: scale(1);
}

#bannerNote.is-visible {
    opacity: 1;
}

#bannerLogo.is-visible {
    opacity: 1;
    bottom: calc(20px - (var(--nlb-banner-logo-size) * var(--nlb-banner-logo-sink-percent) / 100));
}

#bannerStripe.is-visible {
    left: 820px;
}

#bannerBgGlow.is-visible {
    left: 120px;
    opacity: 0.9;
}

#bannerBadge.is-visible {
    left: 40px;
    opacity: 1;
}

/* Plugin landing elements */
.nlb-plugin-sections {
    max-width: var(--nlb-content-wrapper-max);
    width: 95%;
    margin: 40px auto 70px;
}

.nlb-plugin-section {
    position: relative;
    margin-bottom: 22px;
    padding: 30px 28px;
    border: 0;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(7, 15, 33, 0.52), rgba(6, 64, 60, 0.36));
    overflow: hidden;
    isolation: isolate;
    backdrop-filter: blur(5px);
}

.nlb-plugin-section::before {
    content: "";
    position: absolute;
    width: clamp(280px, 36vw, 460px);
    height: clamp(220px, 30vw, 380px);
    left: -14%;
    top: -26%;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, var(--nlb-page-spot-2) 0%, transparent 72%);
    z-index: 0;
}

.nlb-plugin-section:nth-of-type(even)::before {
    left: auto;
    right: -14%;
    background: radial-gradient(circle, var(--nlb-page-spot-3) 0%, transparent 72%);
}

.nlb-plugin-section > * {
    position: relative;
    z-index: 1;
}

.nlb-plugin-section a {
    text-decoration: none;
}

.nlb-plugin-section a:not(.download-btn):not(.btn):not(.nlb-plugin-ghost-btn) {
    color: var(--nlb-accent-end);
}

.nlb-plugin-section a:not(.download-btn):not(.btn):not(.nlb-plugin-ghost-btn):hover,
.nlb-plugin-section a:not(.download-btn):not(.btn):not(.nlb-plugin-ghost-btn):focus-visible {
    color: var(--nlb-accent-start);
    text-decoration: none;
}

.nlb-plugin-section h2 {
    margin: 0 0 10px;
    font-size: 34px;
    color: var(--nlb-banner-title);
    line-height: 1.2;
}

.nlb-plugin-section h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.nlb-plugin-subtitle {
    margin: 0;
    color: var(--nlb-menu-text);
    line-height: 1.6;
}

.nlb-plugin-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    border: 0;
    background: var(--nlb-badge-bg);
    color: var(--nlb-badge-text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.nlb-plugin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.nlb-plugin-btn {
    min-width: 170px;
    text-align: center;
}

.nlb-plugin-section .download-btn,
.nlb-plugin-section .btn,
.nlb-plugin-section .nlb-plugin-ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
}

.nlb-plugin-section .download-btn,
.nlb-plugin-section .btn {
    font-weight: 500;
}

.nlb-plugin-ghost-btn {
    display: inline-block;
    min-width: 170px;
    padding: 9px 22px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.nlb-plugin-hero .nlb-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
    gap: 24px;
    align-items: stretch;
}

.nlb-plugin-hero .nlb-hero-left {
    position: relative;
    z-index: 2;
}

.nlb-plugin-hero {
    padding: 24px 24px;
}

.nlb-plugin-hero .nlb-hero-visuals {
    --nlb-hero-visual-height: clamp(170px, 20vw, 250px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    height: var(--nlb-hero-visual-height);
    align-self: stretch;
    align-items: stretch;
}

.nlb-plugin-hero .nlb-hero-shot {
    width: fit-content;
    max-width: 100%;
    max-height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(2, 6, 23, 0.62);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.4);
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
}

.nlb-plugin-hero .nlb-hero-shot img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(var(--nlb-hero-visual-height) - 16px);
    object-fit: contain;
}

.nlb-plugin-hero .nlb-hero-shot--graph {
    place-self: start center;
    align-items: flex-start;
}

.nlb-plugin-hero .nlb-hero-shot--result {
    place-self: end center;
    align-items: flex-end;
}

.nlb-plugin-hero .nlb-hero-shot-placeholder {
    width: 100%;
    height: 100%;
    min-height: 120px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    color: var(--nlb-menu-text);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.62), rgba(2, 6, 23, 0.75));
}

.nlb-plugin-points {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.nlb-plugin-points li {
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(12, 23, 44, 0.4);
    border: 0;
    font-size: 13px;
}

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

.nlb-plugin-card {
    padding: 16px;
    border: 0;
    border-radius: 14px;
    background: rgba(12, 23, 44, 0.44);
}

.nlb-plugin-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--nlb-menu-text);
}

.nlb-feature-item .nlb-feature-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.nlb-feature-item .nlb-feature-head h3 {
    margin-bottom: 4px;
}

.nlb-feature-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 0;
    background: rgba(15, 30, 56, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nlb-feature-icon img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.nlb-plugin-pricing-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.nlb-pricing-card {
    padding: 18px 16px;
    border-radius: 14px;
    border: 0;
    background: rgba(11, 22, 42, 0.46);
}

.nlb-pricing-card.is-featured {
    box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.22), 0 10px 24px rgba(34, 197, 94, 0.18);
}

.nlb-plan-chip {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.25);
    color: var(--nlb-accent-end);
    font-size: 11px;
    font-weight: 700;
}

.nlb-plan-price {
    margin: 0 0 12px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.nlb-plan-currency,
.nlb-plan-period {
    color: var(--nlb-menu-text);
    font-size: 13px;
}

.nlb-plan-value {
    font-size: 36px;
    line-height: 1;
    font-weight: 800;
}

.nlb-pricing-card ul {
    margin: 0 0 16px;
    padding-left: 18px;
}

.nlb-pricing-card li {
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--nlb-menu-text);
}

.nlb-plan-btn {
    width: 100%;
}

.nlb-faq-list {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.nlb-faq-item {
    border-radius: 12px;
    border: 0;
    background: rgba(11, 22, 42, 0.46);
    padding: 0 12px;
}

.nlb-faq-item summary {
    cursor: pointer;
    padding: 12px 0;
    font-weight: 700;
}

.nlb-faq-answer {
    padding: 0 0 12px;
    color: var(--nlb-menu-text);
    line-height: 1.55;
}

.nlb-plugin-docs .nlb-docs-layout {
    margin-top: 16px;
    display: grid;
    grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.nlb-docs-toc {
    padding: 14px 12px;
    border-radius: 12px;
    border: 0;
    background: rgba(11, 22, 42, 0.46);
    position: sticky;
    top: calc(var(--nlb-navbar-height, 60px) + 16px);
}

.nlb-docs-toc h3 {
    margin: 0 0 10px;
    font-size: 15px;
}

.nlb-docs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.nlb-docs-list a {
    display: block;
    padding: 8px 10px;
    border-radius: 9px;
    background: rgba(2, 6, 23, 0.52);
    color: var(--nlb-menu-text);
    font-size: 13px;
    text-decoration: none;
}

.nlb-docs-list a:hover,
.nlb-docs-list a:focus-visible {
    color: var(--nlb-menu-hover);
    background: rgba(2, 6, 23, 0.72);
}

.nlb-docs-content {
    display: grid;
    gap: 10px;
}

.nlb-docs-article {
    padding: 14px 14px 12px;
    border-radius: 12px;
    border: 0;
    background: rgba(11, 22, 42, 0.46);
}

.nlb-docs-article h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.nlb-docs-body p {
    margin: 0 0 10px;
    color: var(--nlb-menu-text);
    line-height: 1.6;
}

.nlb-docs-body p:last-child {
    margin-bottom: 0;
}

.nlb-docs-body ul,
.nlb-docs-body ol {
    margin: 0 0 10px;
    padding-left: 20px;
    color: var(--nlb-menu-text);
}

.nlb-docs-body li {
    margin-bottom: 5px;
    line-height: 1.55;
}

.nlb-doc-node-groups {
    display: grid;
    gap: 12px;
}

.nlb-doc-node-group h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--nlb-banner-title);
}

.nlb-doc-node-cards {
    display: grid;
    gap: 10px;
}

.nlb-doc-node-card {
    padding: 12px;
    border-radius: 12px;
    border: 0;
    background: rgba(2, 6, 23, 0.46);
}

.nlb-doc-node-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
}

.nlb-doc-node-copy h5 {
    margin: 0;
    font-size: 15px;
}

.nlb-doc-node-copy p {
    margin: 6px 0 0;
    color: var(--nlb-menu-text);
    line-height: 1.55;
}

.nlb-doc-node-image {
    width: 108px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(2, 6, 23, 0.72);
}

.nlb-doc-node-image img {
    width: 100%;
    height: auto;
    display: block;
}

.nlb-doc-node-meta {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.nlb-doc-node-meta-block {
    border-radius: 10px;
    background: rgba(11, 22, 42, 0.42);
    padding: 10px;
}

.nlb-doc-node-meta-block strong {
    display: block;
    margin: 0 0 8px;
    font-size: 13px;
}

.nlb-doc-pin-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.nlb-doc-pin-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.nlb-doc-pin-name {
    font-weight: 700;
    font-size: 13px;
}

.nlb-doc-type-badges {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px;
}

.nlb-doc-type-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.2);
    color: var(--nlb-accent-end);
    font-size: 11px;
    font-weight: 700;
}

.nlb-doc-node-empty,
.nlb-doc-node-note {
    margin: 0;
    color: var(--nlb-menu-text);
    font-size: 13px;
}

.nlb-doc-node-note {
    margin-top: 8px;
}

.nlb-doc-graph-flow {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.nlb-doc-graph-step {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(2, 6, 23, 0.62);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.nlb-doc-graph-arrow {
    color: var(--nlb-menu-text);
    font-size: 16px;
    line-height: 1;
}

.nlb-doc-graph-image {
    margin-top: 14px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(2, 6, 23, 0.72);
}

.nlb-doc-graph-image img {
    width: 100%;
    height: auto;
    display: block;
}

.nlb-doc-problem-list,
.nlb-doc-example-list {
    display: grid;
    gap: 10px;
}

.nlb-doc-problem-card,
.nlb-doc-example-card {
    padding: 12px;
    border-radius: 12px;
    border: 0;
    background: rgba(2, 6, 23, 0.46);
}

.nlb-doc-problem-card h4,
.nlb-doc-example-card h4 {
    margin: 0 0 7px;
    font-size: 15px;
}

.nlb-doc-problem-card p,
.nlb-doc-example-card p {
    margin: 0 0 8px;
    color: var(--nlb-menu-text);
    line-height: 1.55;
}

.nlb-doc-problem-card p:last-child,
.nlb-doc-example-card p:last-child {
    margin-bottom: 0;
}

.nlb-doc-example-actions {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nlb-doc-preset-btn,
.nlb-doc-demo-btn {
    min-width: 160px;
}

.nlb-contact-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 12px;
}

.nlb-contact-card {
    padding: 16px;
    border-radius: 14px;
    border: 0;
    background: rgba(11, 22, 42, 0.46);
}

.nlb-contact-card p {
    margin: 0 0 8px;
    color: var(--nlb-menu-text);
}

.nlb-contact-form code {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.75);
    color: #ffffff;
    font-size: 12px;
}

.nlb-contact-native-form {
    display: grid;
    gap: 10px;
}

.nlb-contact-native-form .nlb-form-field {
    margin: 0;
}

.nlb-contact-native-form label {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.nlb-contact-native-form input,
.nlb-contact-native-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(2, 6, 23, 0.55);
    color: #ffffff;
    box-sizing: border-box;
}

.nlb-contact-native-form textarea {
    resize: vertical;
    min-height: 110px;
}

.nlb-contact-native-form .nlb-plugin-btn {
    width: 100%;
    margin-top: 2px;
}

.nlb-form-notice {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
}

.nlb-form-notice.is-success {
    border: 1px solid rgba(74, 222, 128, 0.5);
    background: rgba(34, 197, 94, 0.15);
    color: #bbf7d0;
}

.nlb-form-notice.is-error {
    border: 1px solid rgba(248, 113, 113, 0.45);
    background: rgba(239, 68, 68, 0.14);
    color: #fecaca;
}

.nlb-plugin-cta {
    text-align: center;
}

.nlb-plugin-cta .nlb-plugin-btn {
    margin-top: 16px;
}

@media (max-width: 1024px) {
    .nlb-plugin-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nlb-plugin-hero .nlb-hero-layout {
        grid-template-columns: 1fr;
    }

    .nlb-plugin-hero .nlb-hero-visuals {
        --nlb-hero-visual-height: clamp(160px, 24vw, 220px);
    }

    .nlb-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nlb-plugin-section {
        padding: 20px 16px;
    }

    .nlb-plugin-section h2 {
        font-size: 28px;
    }

    .nlb-plugin-points,
    .nlb-plugin-grid,
    .nlb-plugin-pricing-grid {
        grid-template-columns: 1fr;
    }

    .nlb-plugin-docs .nlb-docs-layout {
        grid-template-columns: 1fr;
    }

    .nlb-docs-toc {
        position: static;
    }

    .nlb-doc-node-head {
        grid-template-columns: 1fr;
    }

    .nlb-doc-node-image {
        width: 100%;
        max-width: 220px;
    }

    .nlb-doc-example-actions {
        flex-direction: column;
    }

    .nlb-doc-preset-btn,
    .nlb-doc-demo-btn {
        width: 100%;
    }

    .nlb-plugin-btn,
    .nlb-plugin-ghost-btn {
        width: 100%;
    }

    .nlb-plugin-hero .nlb-hero-shot,
    .nlb-plugin-hero .nlb-hero-shot--result {
        width: 100%;
        max-height: none;
    }

    .nlb-plugin-hero .nlb-hero-visuals {
        grid-template-columns: 1fr;
        --nlb-hero-visual-height: auto;
        height: auto;
        row-gap: 10px;
    }

    .nlb-plugin-hero .nlb-hero-shot img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: none;
        object-fit: contain;
    }

    .nlb-plugin-hero .nlb-hero-shot--result {
        place-self: start stretch;
        align-items: flex-start;
    }
}
