:root {
    --nb-font-body: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --nb-font-display: "Sora", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --nb-navy-950: #06101d;
    --nb-navy-900: #081827;
    --nb-navy-850: #0b2035;
    --nb-navy-800: #0d2a45;
    --nb-blue: #2f7cff;
    --nb-cyan: #19d3ff;
    --nb-purple: #7c3cff;
    --nb-green: #22c59f;
    --nb-gold: #ffb22e;
    --nb-ink: #101827;
    --nb-muted: #64748b;
    --nb-soft: #f4f8fd;
    --nb-card: #ffffff;
    --nb-border: rgba(15, 23, 42, .10);
    --nb-shadow: 0 24px 70px rgba(15, 23, 42, .12);
    --nb-shadow-sm: 0 14px 35px rgba(15, 23, 42, .10);
    --nb-radius: 26px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--nb-soft);
    color: var(--nb-ink);
    font-family: var(--nb-font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--nb-blue);
    text-decoration: none;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

a:hover {
    color: var(--nb-cyan);
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6,
.nb-brand,
.nb-footer-brand,
.nb-hero h1,
.nb-section-heading h2,
.nb-about-card h2,
.nb-demo-cta h2,
.nb-clients-section h2,
.nb-contact-strip h2,
.nb-band-item h3,
.nb-plan-card h3 {
    font-family: var(--nb-font-display);
}

.nb-page-shell {
    overflow: hidden;
}

.container-xxl {
    max-width: 1200px;
}

/* Navigation */
.nb-navbar {
    min-height: 76px;
    background: rgba(5, 16, 29, .88);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
}

.nb-brand,
.nb-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: #fff !important;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.04em;
}

.nb-brand img,
.nb-footer-brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nb-brand span,
.nb-footer-brand span {
    display: inline-block;
    transform: translateY(-.01em);
}

.nb-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, .2);
    box-shadow: none;
}

.nb-navbar .navbar-toggler-icon {
    filter: invert(1) grayscale(1) brightness(3);
}

.nb-nav-links {
    gap: .2rem;
}

.nb-nav-links .nav-link {
    position: relative;
    color: rgba(255, 255, 255, .82);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .9rem .85rem !important;
}

.nb-nav-links .nav-link:hover,
.nb-nav-links .nav-link:focus,
.nb-nav-links .nav-link.active {
    color: #fff;
}

.nb-nav-links .nav-link::after {
    border: 0;
}

.nb-nav-links > .nav-item > .nav-link::before {
    content: "";
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .55rem;
    height: 2px;
    background: linear-gradient(90deg, var(--nb-blue), var(--nb-cyan));
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .18s ease, transform .18s ease;
}

.nb-nav-links > .nav-item > .nav-link:hover::before,
.nb-nav-links > .nav-item > .nav-link.active::before {
    opacity: 1;
    transform: scaleX(1);
}

.nb-dropdown {
    padding: .65rem;
    background: rgba(8, 24, 39, .98);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.nb-dropdown .dropdown-item {
    color: rgba(255, 255, 255, .82);
    border-radius: 12px;
    font-weight: 700;
    padding: .65rem .8rem;
}

.nb-dropdown .dropdown-item:hover,
.nb-dropdown .dropdown-item:focus {
    color: #fff;
    background: rgba(47, 124, 255, .18);
}

.nb-dropdown .dropdown-divider {
    border-color: rgba(255, 255, 255, .12);
}

/* Buttons */
.nb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 48px;
    padding: .8rem 1.25rem;
    border-radius: 12px;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1;
    box-shadow: none;
}

.nb-btn:hover {
    transform: translateY(-1px);
}

.nb-btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--nb-blue), #075bff);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 14px 32px rgba(47, 124, 255, .34);
}

.nb-btn-primary:hover,
.nb-btn-primary:focus {
    background: linear-gradient(135deg, #3f88ff, #0f6bff);
    box-shadow: 0 18px 42px rgba(47, 124, 255, .42);
}

.nb-btn-glass {
    color: #fff !important;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .36);
}

.nb-btn-glass:hover,
.nb-btn-glass:focus {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .55);
}

.nb-btn-outline {
    color: var(--nb-blue) !important;
    background: rgba(47, 124, 255, .06);
    border: 1px solid rgba(47, 124, 255, .45);
}

.nb-btn-outline:hover,
.nb-btn-outline:focus {
    color: #fff !important;
    background: var(--nb-blue);
    border-color: var(--nb-blue);
}

.nb-btn-light {
    color: var(--nb-blue) !important;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .16);
}

.nb-btn-outline-light {
    color: #fff !important;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .28);
}

.nb-btn-outline-light:hover,
.nb-btn-outline-light:focus {
    color: var(--nb-navy-900) !important;
    background: #fff;
}

/* Hero */
.nb-hero {
    position: relative;
    min-height: 640px;
    color: #fff;
    background: radial-gradient(circle at 74% 42%, rgba(25, 211, 255, .26), transparent 28%), linear-gradient(135deg, #06101d 0%, #071a2f 48%, #09294a 100%);
    isolation: isolate;
}

.nb-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(25, 211, 255, .7), transparent);
    z-index: 2;
}

.nb-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        url("/images/mainbg.jpg"),
        url("/images/introbg.jpg");
    background-size: 58px 58px, 58px 58px, cover, cover;
    background-position: center, center, center, center;
    opacity: .45;
    mix-blend-mode: screen;
    z-index: -2;
}

.nb-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 16, 29, .98) 0%, rgba(6, 16, 29, .88) 42%, rgba(6, 16, 29, .15) 100%);
}

.min-vh-hero {
    min-height: 640px;
    padding: 5.5rem 0;
}

.nb-eyebrow,
.nb-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--nb-blue);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nb-eyebrow {
    color: #80eaff;
    border: 1px solid rgba(25, 211, 255, .55);
    border-radius: 999px;
    padding: .35rem .7rem;
    background: rgba(25, 211, 255, .08);
    margin-bottom: 1.35rem;
}

.nb-hero h1 {
    max-width: 620px;
    font-size: clamp(3rem, 7vw, 5.9rem);
    line-height: .96;
    font-weight: 900;
    letter-spacing: -.07em;
    margin: 0;
}

.nb-hero h1 span {
    color: var(--nb-cyan);
    text-shadow: 0 0 32px rgba(25, 211, 255, .28);
}

.nb-hero-lead {
    max-width: 560px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.75;
    margin: 1.4rem 0 2rem;
}

.nb-hero-actions,
.nb-hero-points {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.nb-hero-points {
    margin-top: 2.8rem;
    gap: 1.35rem 2rem;
}

.nb-hero-points div {
    display: grid;
    grid-template-columns: 42px auto;
    grid-template-rows: auto auto;
    column-gap: .75rem;
    align-items: center;
}

.nb-hero-points i {
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #b9efff;
    background: rgba(47, 124, 255, .16);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
}

.nb-hero-points strong {
    color: #fff;
    font-size: .88rem;
}

.nb-hero-points small {
    color: rgba(255, 255, 255, .62);
    font-size: .78rem;
}

.nb-hero-orb {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 470px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 211, 255, .35), rgba(47, 124, 255, .08) 42%, transparent 66%);
}

.nb-hero-orb::before,
.nb-hero-orb::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.nb-hero-orb::before {
    inset: 5%;
    border: 1px solid rgba(25, 211, 255, .18);
    box-shadow: inset 0 0 80px rgba(25, 211, 255, .12), 0 0 70px rgba(47, 124, 255, .18);
}

.nb-hero-orb::after {
    width: 18px;
    height: 18px;
    right: 18%;
    top: 28%;
    background: #fff;
    box-shadow: 0 0 32px 12px rgba(25, 211, 255, .75), -160px 90px 28px 4px rgba(47, 124, 255, .5), -70px -120px 22px 2px rgba(25, 211, 255, .34);
}

.nb-hero-orb img {
    position: relative;
    width: min(430px, 78%);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .42);
    opacity: .95;
}

.nb-orb-grid {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        linear-gradient(120deg, transparent 0 16%, rgba(25, 211, 255, .24) 16.2% 16.5%, transparent 16.7% 100%),
        linear-gradient(35deg, transparent 0 38%, rgba(255, 255, 255, .16) 38.2% 38.5%, transparent 38.7% 100%),
        radial-gradient(circle at 30% 38%, rgba(255,255,255,.8) 0 2px, transparent 3px),
        radial-gradient(circle at 67% 52%, rgba(255,255,255,.72) 0 2px, transparent 3px),
        radial-gradient(circle at 54% 22%, rgba(255,255,255,.6) 0 2px, transparent 3px),
        radial-gradient(circle at 80% 72%, rgba(255,255,255,.55) 0 2px, transparent 3px);
    opacity: .65;
}

/* Sections */
.nb-section {
    padding: 4.8rem 0;
}

.nb-section-light {
    background: linear-gradient(180deg, #f8fbff 0%, var(--nb-soft) 100%);
}

.nb-section-heading {
    max-width: 760px;
    margin: 0 auto 2.4rem;
}

.nb-section-heading h2,
.nb-about-card h2,
.nb-demo-cta h2,
.nb-clients-section h2,
.nb-contact-strip h2 {
    color: var(--nb-ink);
    font-size: clamp(2rem, 4vw, 3.05rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.045em;
    margin: .5rem 0 .85rem;
}

.nb-section-heading p,
.nb-about-card p,
.nb-demo-cta p,
.nb-contact-strip p {
    color: var(--nb-muted);
    font-size: 1.02rem;
    margin-bottom: 0;
}

.nb-about-card,
.nb-screenshot-panel,
.nb-plan-card {
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--nb-radius);
    box-shadow: var(--nb-shadow-sm);
    backdrop-filter: blur(14px);
}

.nb-about-card {
    padding: clamp(1.25rem, 3vw, 2.2rem);
}

.nb-feature-image {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    border-radius: 18px;
    background: var(--nb-navy-900);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), 0 18px 45px rgba(15,23,42,.16);
}

.nb-feature-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 55% 45%, rgba(25, 211, 255, .18), transparent 45%);
    z-index: 1;
}

.nb-feature-image img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.nb-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .95rem 1.4rem;
    margin-top: 1.5rem;
}

.nb-check-grid div {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: #334155;
    font-size: .95rem;
    font-weight: 650;
}

.nb-check-grid i {
    color: var(--nb-blue);
    font-size: 1.15rem;
    margin-top: .12rem;
}

/* Feature band */
.nb-feature-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: linear-gradient(135deg, #06101d 0%, #0a1c31 55%, #071827 100%);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--nb-radius);
    box-shadow: var(--nb-shadow);
    margin-bottom: 4rem;
}

.nb-band-item {
    position: relative;
    padding: 2.2rem 2rem;
    color: #fff;
}

.nb-band-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(255, 255, 255, .12);
}

.nb-band-icon,
.nb-plan-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: #fff;
    border-radius: 18px;
    font-size: 1.5rem;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}

.nb-icon-blue { background: linear-gradient(135deg, #3582ff, #155eff); }
.nb-icon-purple { background: linear-gradient(135deg, #bd3cff, #6724ff); }
.nb-icon-green { background: linear-gradient(135deg, #20d0a7, #087d69); }
.nb-icon-gold { background: linear-gradient(135deg, #ffbd3f, #ff7b00); }

.nb-band-item h3,
.nb-plan-card h3 {
    font-size: 1.12rem;
    font-weight: 900;
    letter-spacing: -.025em;
    margin: 1.15rem 0 .5rem;
}

.nb-band-item p {
    color: rgba(255, 255, 255, .7);
    font-size: .94rem;
    margin: 0;
}

/* Screenshots */
.nb-screenshot-panel {
    padding: clamp(1.25rem, 3vw, 2.2rem);
}

.nb-shot-card {
    display: block;
    overflow: hidden;
    min-height: 182px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 18px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, .12);
}

.nb-shot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, .18);
}

.nb-shot-card img {
    width: 100%;
    height: 182px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Demo CTA */
.nb-demo-cta {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    color: #fff;
    background: radial-gradient(circle at 12% 50%, rgba(25, 211, 255, .22), transparent 20%), linear-gradient(135deg, #0b2d9a 0%, #4b18d2 55%, #8d16f1 100%);
    border-radius: var(--nb-radius);
    box-shadow: var(--nb-shadow);
}

.nb-demo-cta::before,
.nb-demo-cta::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    background-image: radial-gradient(rgba(255,255,255,.35) 1px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: .45;
}

.nb-demo-cta::before { left: -38px; bottom: -72px; }
.nb-demo-cta::after { right: -28px; top: -58px; }

.nb-demo-icon,
.nb-contact-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    font-size: 2rem;
}

.nb-demo-icon {
    color: #fff;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .18);
}

.nb-demo-cta h2,
.nb-demo-cta p,
.nb-demo-cta .btn {
    position: relative;
    z-index: 1;
}

.nb-demo-cta h2 {
    color: #fff;
    margin-top: 0;
}

.nb-demo-cta p {
    color: rgba(255, 255, 255, .78);
    max-width: 560px;
}

/* Plans */
.nb-plan-card {
    height: 100%;
    padding: 2rem;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.nb-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nb-shadow);
    border-color: rgba(47, 124, 255, .28);
}

.nb-plan-card.featured {
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, var(--nb-blue), var(--nb-cyan)) border-box;
    border: 1px solid transparent;
}

.nb-plan-card i {
    color: #fff;
    background: linear-gradient(135deg, var(--nb-blue), var(--nb-purple));
}

.nb-plan-card p {
    color: var(--nb-muted);
    margin: 0;
}

/* Clients */
.nb-clients-section {
    padding: 4.8rem 0;
    color: #fff;
    background:
        radial-gradient(circle at 50% 30%, rgba(25, 211, 255, .13), transparent 35%),
        linear-gradient(135deg, #06101d 0%, #081827 60%, #06101d 100%);
}

.nb-clients-section h2 {
    color: #fff;
}

.nb-client-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 3rem;
    margin: 2rem 0 2.2rem;
}

.nb-client-logos img {
    max-width: 190px;
    max-height: 58px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.8) contrast(.82);
    opacity: .82;
    transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}

.nb-client-logos img:hover {
    filter: grayscale(0) brightness(1.08) contrast(1);
    opacity: 1;
    transform: translateY(-2px);
}

/* Contact */
.nb-contact-strip {
    padding: 3rem 0;
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.nb-contact-icon {
    flex: 0 0 auto;
    color: var(--nb-blue);
    background: rgba(47, 124, 255, .12);
}

.nb-contact-strip h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: 0 0 .25rem;
}

/* Footer */
.nb-footer {
    padding: 3.8rem 0 1.6rem;
    color: rgba(255, 255, 255, .76);
    background: linear-gradient(135deg, #06101d 0%, #081827 70%, #05101c 100%);
}

.nb-footer h6 {
    color: #fff;
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: -.01em;
    margin-bottom: 1rem;
}

.nb-footer a:not(.btn):not(.nb-footer-brand) {
    display: block;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .52rem;
}

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

.nb-footer-text {
    color: rgba(255, 255, 255, .64);
    margin: 1rem 0 0;
}

.nb-socials {
    display: flex;
    gap: .65rem;
    margin-top: 1.25rem;
}

.nb-socials a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #fff !important;
    background: rgba(47, 124, 255, .18);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.nb-socials a:hover {
    background: var(--nb-blue);
}

.nb-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .4rem 1rem;
    color: rgba(255, 255, 255, .54);
    font-size: .86rem;
    padding-top: 2.2rem;
    margin-top: 2.8rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.nb-footer-bottom a {
    display: inline !important;
    margin: 0 !important;
}

/* Image modal */
.nb-image-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 2rem;
    background: rgba(2, 8, 15, .88);
    backdrop-filter: blur(12px);
}

.nb-image-modal.is-open {
    display: flex;
}

.nb-image-modal-img {
    max-width: min(1100px, 96vw);
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.nb-image-modal-caption {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .82);
    font-weight: 700;
    text-align: center;
}

.nb-image-modal-close {
    position: absolute;
    right: 1.4rem;
    top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
}

/* Modernize older inner-page markup without needing to rewrite every page at once */
.section-bg {
    background: linear-gradient(180deg, #f8fbff 0%, var(--nb-soft) 100%) !important;
}

#mainpane {
    min-height: 70vh;
    max-width: 1120px;
    margin: 0 auto;
    padding: 3rem clamp(1rem, 3vw, 2rem) 4rem !important;
}

.section-header,
#mainpane > .section-header {
    text-align: center;
    margin: 0 auto 2rem !important;
}

.section-header h1,
.section-header h2,
.section-header h3 {
    color: var(--nb-ink);
    font-weight: 900;
    letter-spacing: -.045em;
}

.well,
#mainpane .tab-content,
#mainpane > .row,
.networkcards,
.box {
    background: rgba(255, 255, 255, .9) !important;
    border: 1px solid rgba(15, 23, 42, .08) !important;
    border-radius: 22px !important;
    box-shadow: var(--nb-shadow-sm) !important;
}

.well {
    padding: 1.5rem;
}

.img-thumbnail {
    border-radius: 16px;
    border-color: rgba(15, 23, 42, .08);
}

.nav-tabs {
    gap: .5rem;
    border-bottom: 0;
    justify-content: center;
}

.nav-tabs .nav-link {
    color: #334155;
    font-weight: 800;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 999px;
    padding: .65rem 1rem;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
    color: #fff;
    background: var(--nb-blue);
    border-color: var(--nb-blue);
}

.networkcards {
    overflow: hidden;
    height: calc(100% - 1.5rem);
    transition: transform .18s ease, box-shadow .18s ease;
}

.networkcards:hover {
    transform: translateY(-4px);
    box-shadow: var(--nb-shadow) !important;
}

.networkcards .card-body h1,
.networkcards .card-body h2,
.networkcards .card-body h3 {
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: -.03em;
}

.networkcards .btn-group a,
#mainpane .btn,
#mainpane button,
#mainpane input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: .7rem 1rem;
    color: #fff !important;
    background: var(--nb-blue);
    border: 1px solid var(--nb-blue);
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
}

/* Slide-out documentation menu */
.sidenav {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 1040;
    transform: translate(-100%, -50%);
    width: min(340px, calc(100vw - 2rem));
    max-height: calc(100vh - 6rem);
    transition: transform .22s ease;
}

.sidenav.is-open {
    transform: translate(0, -50%);
}

.sidenavContent {
    overflow: auto;
    max-height: calc(100vh - 6rem);
    padding: 1rem;
    color: #dbeafe;
    background: rgba(6, 16, 29, .98);
    border: 1px solid rgba(255, 255, 255, .12);
    border-left: 0;
    border-radius: 0 22px 22px 0;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
    backdrop-filter: blur(18px);
}

.openNav {
    position: absolute;
    right: -58px;
    top: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 54px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--nb-blue), var(--nb-cyan));
    border-radius: 0 16px 16px 0 !important;
    box-shadow: 0 14px 32px rgba(47, 124, 255, .28);
}

.sidenav.is-open .openNav i {
    transform: rotate(180deg);
}

.menuclosebtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.menuclosebtn span,
.sidenav h1 {
    color: #fff;
    font-size: .88rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.closebtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #fff !important;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.sidenav hr {
    display: none;
}

.sidenav .list-group,
.sidenav .list-group-item {
    background: transparent;
    border: 0;
}

.sidenav .list-group-item {
    padding: .25rem 0;
}

.sidenav .list-group-item a {
    display: block;
    color: rgba(255, 255, 255, .76);
    padding: .65rem .75rem;
    border-radius: 12px;
    font-weight: 750;
}

.sidenav .list-group-item a:hover {
    color: #fff;
    background: rgba(47, 124, 255, .18);
}

/* Bootstrap 5 carousel helpers for older pages */
.carousel {
    width: 100%;
}

.carousel-item img {
    width: 100%;
    border-radius: 18px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .4));
}

@media (max-width: 991.98px) {
    .nb-navbar {
        min-height: 68px;
    }

    .nb-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: .85rem;
        background: rgba(8, 24, 39, .96);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 18px;
    }

    .nb-nav-links .nav-link {
        padding: .8rem .75rem !important;
    }

    .nb-nav-links > .nav-item > .nav-link::before {
        display: none;
    }

    .nb-hero,
    .min-vh-hero {
        min-height: auto;
    }

    .min-vh-hero {
        padding: 4.5rem 0;
    }

    .nb-hero-bg::after {
        background: rgba(6, 16, 29, .78);
    }

    .nb-check-grid,
    .nb-feature-band {
        grid-template-columns: 1fr;
    }

    .nb-band-item:not(:last-child)::after {
        top: auto;
        bottom: 0;
        left: 2rem;
        right: 2rem;
        width: auto;
        height: 1px;
    }

    .nb-demo-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nb-demo-icon {
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 15px;
    }

    .nb-brand,
    .nb-footer-brand {
        font-size: 1.15rem;
    }

    .nb-hero-actions,
    .nb-hero-actions .btn,
    .nb-demo-cta .btn,
    .nb-contact-strip .btn {
        width: 100%;
    }

    .nb-hero-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nb-section {
        padding: 3.5rem 0;
    }

    .nb-client-logos {
        gap: 1.35rem;
    }

    .nb-client-logos img {
        max-width: 145px;
    }

    .nb-contact-strip .d-flex {
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .nb-contact-icon {
        width: 62px;
        height: 62px;
        font-size: 1.5rem;
    }
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.col-xs-6 {
    width: 50%;
}

/* Pass 1.1 polish: stronger shell, wider canvas, brighter nav, larger hero art, better readability */
body {
    font-size: 16.5px;
}

body .container-xxl {
    max-width: 1320px;
}

body #mainnav.nb-navbar,
body nav.nb-navbar,
body .navbar.nb-navbar {
    position: relative;
    z-index: 50;
    min-height: 82px !important;
    background: rgba(4, 14, 27, .94) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .28) !important;
}

body #mainnav .container-xxl {
    min-height: 82px;
}

body #mainnav .nb-brand,
body #mainnav .navbar-brand.nb-brand {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    letter-spacing: -.045em;
    text-shadow: 0 1px 18px rgba(25, 211, 255, .18);
    opacity: 1 !important;
}

body #mainnav .nb-brand img {
    width: 38px !important;
    height: 38px !important;
    filter: drop-shadow(0 0 10px rgba(25, 211, 255, .22));
}

body #mainnav .nb-nav-links .nav-link,
body #mainnav .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .88) !important;
    font-size: .84rem !important;
    font-weight: 850 !important;
    padding: 1rem .95rem !important;
}

body #mainnav .nb-nav-links .nav-link:hover,
body #mainnav .nb-nav-links .nav-link:focus,
body #mainnav .nb-nav-links .nav-link.active {
    color: #ffffff !important;
}

.nb-hero {
    min-height: 700px;
    background:
        radial-gradient(circle at 74% 40%, rgba(25, 211, 255, .34), transparent 31%),
        radial-gradient(circle at 92% 18%, rgba(47, 124, 255, .20), transparent 24%),
        linear-gradient(135deg, #06101d 0%, #071a2f 47%, #092b4d 100%);
}

.min-vh-hero {
    min-height: 700px;
    padding: 6rem 0;
}

.nb-hero h1 {
    max-width: 640px;
    font-size: clamp(3.35rem, 6.8vw, 6.15rem);
}

.nb-hero-lead {
    max-width: 610px;
    color: rgba(255, 255, 255, .87);
    font-size: clamp(1.05rem, 1.25vw, 1.24rem);
}

.nb-hero-orb {
    min-height: 570px;
    margin-right: -1.5rem;
    background:
        radial-gradient(circle at 50% 52%, rgba(25, 211, 255, .42), rgba(47, 124, 255, .12) 43%, transparent 69%),
        radial-gradient(circle at 78% 30%, rgba(255, 255, 255, .16), transparent 12%);
}

.nb-hero-orb::before {
    inset: 0;
    border-color: rgba(25, 211, 255, .24);
    box-shadow: inset 0 0 95px rgba(25, 211, 255, .16), 0 0 95px rgba(47, 124, 255, .24);
}

.nb-hero-orb img {
    width: min(585px, 92%);
    border-radius: 26px;
    box-shadow: 0 48px 125px rgba(0, 0, 0, .52), 0 0 54px rgba(25, 211, 255, .16);
}

.nb-section {
    padding: 5.4rem 0;
}

.nb-about-card,
.nb-screenshot-panel,
.nb-feature-band,
.nb-demo-cta {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.nb-about-card {
    padding: clamp(1.6rem, 3.3vw, 2.85rem);
}

.nb-feature-image,
.nb-feature-image img {
    min-height: 375px;
}

.nb-section-heading {
    max-width: 830px;
}

.nb-section-heading p,
.nb-about-card p,
.nb-demo-cta p,
.nb-contact-strip p,
.nb-plan-card p,
.nb-band-item p,
.nb-footer-text,
.nb-footer a:not(.btn):not(.nb-footer-brand) {
    line-height: 1.75;
}

.nb-section-heading p,
.nb-about-card p,
.nb-demo-cta p,
.nb-contact-strip p {
    font-size: 1.08rem;
}

.nb-check-grid div {
    font-size: 1rem;
    line-height: 1.55;
}

.nb-band-item {
    padding: 2.45rem 2.25rem;
}

.nb-band-item h3,
.nb-plan-card h3 {
    font-size: 1.2rem;
}

.nb-band-item p,
.nb-plan-card p {
    font-size: 1rem;
}

.nb-shot-card {
    min-height: 210px;
}

.nb-shot-card img {
    height: 210px;
}

.nb-demo-cta {
    padding: clamp(1.7rem, 3.2vw, 2.6rem);
}

.nb-demo-cta .nb-btn,
.nb-contact-strip .nb-btn {
    min-width: 184px;
    min-height: 52px;
}

.nb-plan-card {
    padding: 2.25rem;
}

.nb-clients-section {
    padding: 5.4rem 0;
}

.nb-client-logos {
    gap: 2.4rem 3.5rem;
    margin: 2.25rem 0 2.55rem;
}

.nb-client-logos img {
    max-width: 220px;
    max-height: 70px;
    filter: grayscale(1) brightness(2.05) contrast(.9);
    opacity: .9;
}

.nb-contact-strip {
    padding: 3.35rem 0;
}

.nb-contact-icon {
    box-shadow: 0 14px 34px rgba(47, 124, 255, .16);
}

.nb-footer {
    font-size: .98rem;
}

@media (min-width: 1400px) {
    body .container-xxl {
        max-width: 1380px;
    }
}

@media (max-width: 991.98px) {
    body #mainnav.nb-navbar,
    body nav.nb-navbar,
    body .navbar.nb-navbar {
        min-height: 70px !important;
    }

    body #mainnav .container-xxl {
        min-height: 70px;
    }

    body #mainnav .nb-brand,
    body #mainnav .navbar-brand.nb-brand {
        font-size: 1.32rem !important;
    }

    body #mainnav .nb-brand img {
        width: 34px !important;
        height: 34px !important;
    }

    .nb-hero,
    .min-vh-hero {
        min-height: auto;
    }

    .min-vh-hero {
        padding: 5rem 0;
    }
}

/* Pass 1.2 polish: compact hero, clearer screenshot scale, stronger contact CTA */
.nb-hero {
    min-height: 575px;
    background:
        radial-gradient(circle at 74% 38%, rgba(25, 211, 255, .28), transparent 29%),
        radial-gradient(circle at 92% 16%, rgba(47, 124, 255, .16), transparent 22%),
        linear-gradient(135deg, #06101d 0%, #071a2f 48%, #092b4d 100%);
}

.min-vh-hero {
    min-height: 575px;
    padding: 4.35rem 0;
}

.nb-eyebrow {
    margin-bottom: 1rem;
}

.nb-hero h1 {
    max-width: 720px;
    font-size: clamp(2.9rem, 5.25vw, 5.15rem);
    line-height: .98;
    letter-spacing: -.07em;
}

.nb-hero-lead {
    max-width: 590px;
    margin: 1.1rem 0 1.55rem;
    font-size: clamp(1rem, 1.08vw, 1.14rem);
    line-height: 1.68;
}

.nb-hero-points {
    margin-top: 2rem;
    gap: 1rem 1.45rem;
}

.nb-hero-points div {
    grid-template-columns: 36px auto;
    column-gap: .65rem;
}

.nb-hero-points i {
    width: 36px;
    height: 36px;
    font-size: .9rem;
}

.nb-hero-points strong {
    font-size: .83rem;
}

.nb-hero-points small {
    font-size: .74rem;
}

.nb-hero-orb {
    min-height: 430px;
    margin-right: 0;
    background:
        radial-gradient(circle at 50% 52%, rgba(25, 211, 255, .34), rgba(47, 124, 255, .1) 42%, transparent 66%),
        radial-gradient(circle at 78% 30%, rgba(255, 255, 255, .12), transparent 12%);
}

.nb-hero-orb::before {
    inset: 5%;
    box-shadow: inset 0 0 75px rgba(25, 211, 255, .14), 0 0 72px rgba(47, 124, 255, .20);
}

.nb-hero-orb::after {
    width: 14px;
    height: 14px;
    box-shadow: 0 0 28px 10px rgba(25, 211, 255, .65), -128px 72px 24px 3px rgba(47, 124, 255, .42), -58px -92px 18px 2px rgba(25, 211, 255, .28);
}

.nb-hero-orb img {
    width: min(485px, 86%);
    border-radius: 22px;
    box-shadow: 0 36px 96px rgba(0, 0, 0, .48), 0 0 42px rgba(25, 211, 255, .14);
}

.nb-section {
    padding: 4.65rem 0;
}

#features.nb-section,
#live-demo.nb-section,
#plans.nb-section {
    padding-bottom: 4.1rem;
}

#live-demo.nb-section,
#plans.nb-section {
    margin-top: -1.2rem;
}

.nb-section-heading {
    margin-bottom: 2.15rem;
}

.nb-screenshot-panel {
    padding: clamp(1.5rem, 2.6vw, 2.3rem);
}

.nb-shot-card {
    min-height: 240px;
}

.nb-shot-card img {
    height: 240px;
    object-fit: cover;
    object-position: top center;
}

.nb-contact-strip {
    padding: 3.7rem 0;
    background:
        radial-gradient(circle at 12% 50%, rgba(47, 124, 255, .13), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
}

.nb-contact-strip .container-xxl {
    max-width: 1240px;
}

.nb-contact-strip .row {
    padding: 2.15rem 2.35rem;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(47, 124, 255, .12);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(8, 22, 40, .08);
}

.nb-contact-strip h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.35rem);
}

.nb-footer-bottom {
    font-size: .9rem;
}

@media (min-width: 1200px) {
    .nb-hero .col-xl-6:first-child {
        padding-right: 2rem;
    }

    .nb-hero .col-xl-6:last-child {
        padding-left: 2rem;
    }
}

@media (max-width: 1199.98px) {
    .nb-hero h1 {
        font-size: clamp(2.8rem, 6.4vw, 4.7rem);
    }

    .nb-hero-orb {
        min-height: 390px;
    }

    .nb-hero-orb img {
        width: min(430px, 88%);
    }
}

@media (max-width: 991.98px) {
    .min-vh-hero {
        padding: 4.25rem 0;
    }

    .nb-hero h1 {
        max-width: 680px;
        font-size: clamp(2.75rem, 10vw, 4.3rem);
    }
}

@media (max-width: 767.98px) {
    .nb-section {
        padding: 3.6rem 0;
    }

    .nb-shot-card,
    .nb-shot-card img {
        min-height: 230px;
        height: 230px;
    }

    .nb-contact-strip .row {
        padding: 1.65rem;
        border-radius: 22px;
    }
}


/* Pass 1.3 typography tune: keep Sora for brand/major headings, soften weights, use Inter for dense UI/card text */
.nb-brand,
.nb-footer-brand {
    font-weight: 700 !important;
    letter-spacing: -.03em !important;
}

body #mainnav .nb-brand,
body #mainnav .navbar-brand.nb-brand {
    font-weight: 700 !important;
    letter-spacing: -.032em !important;
}

.nb-nav-links .nav-link,
body #mainnav .nb-nav-links .nav-link,
body #mainnav .navbar-nav .nav-link {
    font-family: var(--nb-font-body) !important;
    font-weight: 700 !important;
    letter-spacing: .055em !important;
}

.nb-btn,
.nb-dropdown .dropdown-item,
.nb-footer a:not(.btn):not(.nb-footer-brand) {
    font-family: var(--nb-font-body) !important;
    font-weight: 700 !important;
}

.nb-hero h1 {
    font-family: var(--nb-font-display) !important;
    font-weight: 700 !important;
    letter-spacing: -.055em !important;
    line-height: 1.01;
}

.nb-section-heading h2,
.nb-about-card h2,
.nb-demo-cta h2,
.nb-clients-section h2,
.nb-contact-strip h2,
.section-header h1,
.section-header h2,
.section-header h3 {
    font-family: var(--nb-font-display) !important;
    font-weight: 700 !important;
    letter-spacing: -.035em !important;
}

.nb-eyebrow,
.nb-section-kicker {
    font-family: var(--nb-font-body) !important;
    font-weight: 800 !important;
    letter-spacing: .085em;
}

.nb-band-item h3,
.nb-plan-card h3,
.networkcards .card-body h1,
.networkcards .card-body h2,
.networkcards .card-body h3,
.nb-footer h6 {
    font-family: var(--nb-font-body) !important;
    font-weight: 700 !important;
    letter-spacing: -.015em !important;
}

.nb-check-grid div,
.nb-hero-points strong {
    font-weight: 650;
}

.nb-section-heading p,
.nb-about-card p,
.nb-demo-cta p,
.nb-contact-strip p,
.nb-plan-card p,
.nb-band-item p,
.nb-hero-lead,
.nb-footer-text {
    font-weight: 400;
}

/* Networks page */
.nb-inner-hero {
    position: relative;
    padding: clamp(4.2rem, 7vw, 6.4rem) 0 clamp(3.2rem, 5.6vw, 5rem);
    color: #fff;
    background:
        radial-gradient(circle at 78% 28%, rgba(25, 211, 255, .22), transparent 28%),
        radial-gradient(circle at 20% 12%, rgba(47, 124, 255, .18), transparent 30%),
        linear-gradient(135deg, #06101d 0%, #0b2035 54%, #0d2a45 100%);
    overflow: hidden;
}

.nb-inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 72%);
    pointer-events: none;
}

.nb-inner-hero .container-xxl {
    position: relative;
    z-index: 1;
}

.nb-inner-hero h1 {
    max-width: 760px;
    margin: .75rem 0 1rem;
    font-family: var(--nb-font-display);
    font-size: clamp(2.45rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.nb-inner-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 1.08rem;
    line-height: 1.75;
}

.nb-inner-hero-card {
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
}

.nb-inner-hero-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .85rem;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--nb-blue), var(--nb-cyan));
    box-shadow: 0 16px 36px rgba(25, 211, 255, .26);
}

.nb-inner-hero-card strong,
.nb-inner-hero-card span {
    display: block;
}

.nb-inner-hero-card strong {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
}

.nb-inner-hero-card span {
    margin-top: .35rem;
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    line-height: 1.55;
}

.nb-networks-section {
    padding: clamp(3.8rem, 6vw, 5.4rem) 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(47, 124, 255, .10), transparent 24%),
        radial-gradient(circle at 92% 12%, rgba(25, 211, 255, .08), transparent 26%),
        var(--nb-soft);
}

.nb-network-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.45rem;
}

.nb-network-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 26px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.nb-network-card:hover {
    transform: translateY(-5px);
    border-color: rgba(47, 124, 255, .24);
    box-shadow: 0 32px 90px rgba(15, 23, 42, .14);
}

.nb-network-card-featured {
    grid-column: span 2;
}

.nb-network-thumb {
    display: block;
    padding: .75rem .75rem 0;
}

.nb-network-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top center;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 18px;
    background: #f8fafc;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .10);
}

.nb-network-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.2rem;
}

.nb-network-tag {
    align-self: flex-start;
    margin-bottom: .65rem;
    padding: .28rem .62rem;
    border: 1px solid rgba(47, 124, 255, .18);
    border-radius: 999px;
    color: var(--nb-blue);
    background: rgba(47, 124, 255, .075);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1;
    text-transform: uppercase;
}

.nb-network-body h2 {
    margin: 0 0 .65rem;
    color: var(--nb-ink);
    font-family: var(--nb-font-body);
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.16;
}

.nb-network-body p {
    margin: 0 0 1.1rem;
    color: var(--nb-muted);
    font-size: .95rem;
    line-height: 1.6;
}

.nb-network-body .nb-btn {
    align-self: flex-start;
    margin-top: auto;
    padding: .74rem 1rem;
}

.nb-network-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: clamp(1.45rem, 3vw, 2.2rem);
    border: 1px solid rgba(47, 124, 255, .13);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(25, 211, 255, .15), transparent 26%),
        #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .09);
}

.nb-network-cta h2 {
    margin: .3rem 0 .35rem;
    font-family: var(--nb-font-display);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -.035em;
}

.nb-network-cta p {
    max-width: 720px;
    margin: 0;
    color: var(--nb-muted);
}

.nb-network-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: .7rem;
    justify-content: flex-end;
}

.nb-btn-outline-dark {
    color: var(--nb-ink) !important;
    background: rgba(15, 23, 42, .04);
    border: 1px solid rgba(15, 23, 42, .16);
}

.nb-btn-outline-dark:hover,
.nb-btn-outline-dark:focus {
    color: #fff !important;
    background: var(--nb-navy-900);
    border-color: var(--nb-navy-900);
}

@media (max-width: 1199.98px) {
    .nb-network-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .nb-network-card-featured {
        grid-column: span 1;
    }
}

@media (max-width: 991.98px) {
    .nb-inner-hero-card {
        max-width: 480px;
    }

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

    .nb-network-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .nb-network-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .nb-inner-hero {
        padding-top: 3.2rem;
    }

    .nb-network-grid {
        grid-template-columns: 1fr;
    }

    .nb-network-body .nb-btn,
    .nb-network-cta-actions,
    .nb-network-cta-actions .nb-btn {
        width: 100%;
    }
}

/* Networks page polish */
.nb-dropdown .dropdown-item.active,
.nb-dropdown .dropdown-item:active {
    color: #fff;
    background: rgba(47, 124, 255, .24);
}

.nb-network-summary-card {
    position: relative;
    overflow: hidden;
}

.nb-network-summary-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(25, 211, 255, .22), transparent 65%);
    pointer-events: none;
}

.nb-network-summary-meta {
    position: relative;
    display: grid;
    gap: .45rem;
    margin-top: 1rem;
    padding-top: .95rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.nb-network-summary-meta span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
    font-weight: 700;
}

.nb-network-summary-meta i {
    color: var(--nb-cyan);
}

.nb-network-demo-card {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: center;
    margin-top: 1.55rem;
    padding: clamp(1rem, 2.5vw, 1.35rem);
    border: 1px solid rgba(47, 124, 255, .14);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(25, 211, 255, .14), transparent 28%),
        rgba(255, 255, 255, .9);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
}

.nb-network-demo-thumb {
    display: block;
}

.nb-network-demo-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top center;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 20px;
    background: #f8fafc;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .12);
}

.nb-network-demo-body {
    padding: .35rem .35rem .35rem 0;
}

.nb-network-demo-body h2 {
    margin: 0 0 .65rem;
    color: var(--nb-ink);
    font-family: var(--nb-font-display);
    font-size: clamp(1.45rem, 2.5vw, 2.05rem);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.12;
}

.nb-network-demo-body p {
    max-width: 620px;
    margin: 0 0 1.25rem;
    color: var(--nb-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.nb-network-tag-demo {
    color: #6d28d9;
    background: rgba(124, 60, 255, .09);
    border-color: rgba(124, 60, 255, .18);
}

.nb-network-demo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

@media (max-width: 991.98px) {
    .nb-network-demo-card {
        grid-template-columns: 1fr;
    }

    .nb-network-demo-body {
        padding: 0 .15rem .15rem;
    }
}

@media (max-width: 575.98px) {
    .nb-network-demo-actions,
    .nb-network-demo-actions .nb-btn {
        width: 100%;
    }
}

/* ircWx protocol page */
.nb-inner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.8rem;
}

.nb-ircwx-hero .nb-eyebrow {
    margin-bottom: .8rem;
}

.nb-ircwx-hero-card span {
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
}

.nb-ircwx-hero-list {
    display: grid;
    gap: .55rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.nb-ircwx-hero-list span {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255, 255, 255, .82);
    font-size: .9rem;
    font-weight: 700;
}

.nb-ircwx-hero-list i {
    color: var(--nb-cyan);
}

.nb-ircwx-page {
    position: relative;
}

.nb-ircwx-page .container-xxl {
    max-width: 1260px;
}

.nb-doc-nav {
    position: sticky;
    top: 112px;
    display: grid;
    gap: .35rem;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
}

.nb-doc-nav-title {
    display: block;
    margin-bottom: .35rem;
    color: var(--nb-muted);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nb-doc-nav a {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: #334155;
    padding: .7rem .8rem;
    border-radius: 14px;
    font-size: .95rem;
    font-weight: 750;
}

.nb-doc-nav a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(47, 124, 255, .34);
}

.nb-doc-nav a:hover,
.nb-doc-nav a:focus {
    color: var(--nb-blue);
    background: rgba(47, 124, 255, .08);
}

.nb-doc-card {
    scroll-margin-top: 110px;
    margin-bottom: 1.55rem;
    padding: clamp(1.55rem, 3vw, 2.4rem);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 28px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .09);
    backdrop-filter: blur(14px);
}

.nb-doc-card h2 {
    max-width: 820px;
    margin: .5rem 0 1rem;
    color: var(--nb-ink);
    font-family: var(--nb-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.08;
}

.nb-doc-lead {
    max-width: 880px;
    color: var(--nb-muted);
    font-size: 1.08rem;
    line-height: 1.78;
}

.nb-doc-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.nb-doc-feature-grid > div {
    min-height: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(47, 124, 255, .13);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(25, 211, 255, .11), transparent 34%),
        #fff;
}

.nb-doc-feature-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: .8rem;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--nb-blue), var(--nb-cyan));
    box-shadow: 0 14px 30px rgba(47, 124, 255, .25);
}

.nb-doc-feature-grid h3 {
    margin: 0 0 .4rem;
    color: var(--nb-ink);
    font-family: var(--nb-font-body);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.nb-doc-feature-grid p {
    margin: 0;
    color: var(--nb-muted);
    font-size: .98rem;
    line-height: 1.7;
}

.nb-doc-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background:
        radial-gradient(circle at 100% 0%, rgba(25, 211, 255, .15), transparent 28%),
        linear-gradient(135deg, #fff 0%, #f7fbff 100%);
}

.nb-doc-callout h2 {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.nb-doc-callout p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--nb-muted);
}

.nb-doc-section-heading {
    margin-bottom: 1.2rem;
}

.nb-faq-list {
    display: grid;
    gap: 1rem;
}

.nb-faq-item {
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    background: #fff;
}

.nb-faq-item h3 {
    margin: 0 0 .6rem;
    color: var(--nb-ink);
    font-family: var(--nb-font-body);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.2;
}

.nb-faq-item p {
    color: #475569;
    line-height: 1.78;
}

.nb-faq-item p:last-child {
    margin-bottom: 0;
}

.nb-faq-item a,
.nb-doc-card a:not(.btn) {
    font-weight: 700;
}

.nb-ircwx-cta {
    scroll-margin-top: 110px;
}

@media (max-width: 991.98px) {
    .nb-inner-actions,
    .nb-inner-actions .nb-btn {
        width: 100%;
    }

    .nb-doc-nav {
        position: relative;
        top: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: .75rem;
    }

    .nb-doc-nav-title {
        grid-column: 1 / -1;
    }

    .nb-doc-callout {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .nb-doc-nav,
    .nb-doc-feature-grid {
        grid-template-columns: 1fr;
    }

    .nb-doc-card {
        border-radius: 22px;
    }

    .nb-doc-callout .nb-btn {
        width: 100%;
    }
}

/* Help & Documentation page */
.nb-help-hero .nb-inner-hero-card {
    max-width: 430px;
    margin-left: auto;
}

.nb-help-page {
    padding: clamp(3.8rem, 6vw, 5.6rem) 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(47, 124, 255, .09), transparent 24%),
        radial-gradient(circle at 90% 12%, rgba(25, 211, 255, .08), transparent 26%),
        var(--nb-soft);
}

.nb-help-shell {
    max-width: 1120px;
    margin: 0 auto;
}

.nb-help-tabs {
    margin-bottom: 1.2rem;
}

.nb-help-tabs .nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .75rem;
    padding: .75rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 20px 55px rgba(15, 23, 42, .08);
}

.nb-help-tabs .nav-link {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .48rem;
    padding: .8rem .7rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    color: var(--nb-ink);
    background: rgba(248, 251, 255, .72);
    font-family: var(--nb-font-body);
    font-size: .86rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    box-shadow: none;
}

.nb-help-tabs .nav-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--nb-blue), var(--nb-purple));
    box-shadow: 0 12px 26px rgba(47, 124, 255, .20);
}

.nb-help-tabs .nav-link:hover,
.nb-help-tabs .nav-link:focus {
    color: var(--nb-blue);
    border-color: rgba(47, 124, 255, .20);
    transform: translateY(-2px);
}

.nb-help-tabs .nav-link.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--nb-blue), #1557d9);
    box-shadow: 0 18px 38px rgba(47, 124, 255, .25);
}

.nb-help-tabs .nav-link.active i {
    color: var(--nb-blue);
    background: #fff;
    box-shadow: none;
}

.nb-help-content {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 28px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 26px 78px rgba(15, 23, 42, .10);
    overflow: hidden;
}

.nb-help-pane {
    padding: clamp(1.35rem, 3.2vw, 2.3rem);
}

.nb-help-intro-card,
.nb-help-resource-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.35rem, 3vw, 2rem);
    border: 1px solid rgba(47, 124, 255, .12);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(25, 211, 255, .16), transparent 30%),
        #fff;
}

.nb-help-intro-card h2,
.nb-help-resource-card h2,
.nb-help-resource-head h2,
.nb-help-doc h2 {
    margin: .35rem 0 .75rem;
    font-family: var(--nb-font-display);
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.12;
}

.nb-help-intro-card p,
.nb-help-resource-card p,
.nb-help-resource-head p,
.nb-help-doc p {
    color: var(--nb-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.nb-help-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.nb-help-topic-card {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    gap: .75rem;
    padding: 1.25rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    color: var(--nb-ink);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.nb-help-topic-card:hover,
.nb-help-topic-card:focus {
    color: var(--nb-ink);
    transform: translateY(-4px);
    border-color: rgba(47, 124, 255, .24);
    box-shadow: 0 26px 64px rgba(15, 23, 42, .12);
}

.nb-help-topic-card i,
.nb-help-resource-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--nb-blue), var(--nb-purple));
    box-shadow: 0 16px 34px rgba(47, 124, 255, .22);
}

.nb-help-topic-card strong {
    color: var(--nb-ink);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.25;
}

.nb-help-topic-card span {
    color: var(--nb-muted);
    font-size: .95rem;
    line-height: 1.6;
}

.nb-help-doc-block {
    padding: 1.35rem 0;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.nb-help-doc-block:first-of-type {
    border-top: 0;
    padding-top: .65rem;
}

.nb-help-doc-block h3,
.nb-help-feature-list h3 {
    margin: 0 0 .65rem;
    color: var(--nb-ink);
    font-family: var(--nb-font-body);
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -.025em;
}

.nb-help-image-link,
.nb-help-gallery-item {
    display: block;
    color: inherit;
}

.nb-help-image-link {
    margin: .9rem 0 1rem;
}

.nb-help-image-link img,
.nb-help-gallery-item img {
    display: block;
    width: 100%;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 20px;
    background: #f8fafc;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
}

.nb-help-image-link img {
    max-height: 460px;
    object-fit: contain;
    object-position: top center;
}

.nb-help-code-note {
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid rgba(47, 124, 255, .13);
    border-radius: 18px;
    background: rgba(47, 124, 255, .055);
}

.nb-help-code-note span {
    display: block;
    margin-bottom: .45rem;
    color: var(--nb-blue);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nb-help-code-note code {
    display: block;
    padding: .7rem .8rem;
    border-radius: 12px;
    color: #dbeafe;
    background: var(--nb-navy-900);
    white-space: normal;
}

.nb-help-warning {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid rgba(255, 178, 46, .32);
    border-radius: 18px;
    background: rgba(255, 178, 46, .10);
}

.nb-help-warning i {
    margin-top: .2rem;
    color: #d97706;
    font-size: 1.15rem;
}

.nb-help-warning p {
    margin: 0;
    color: #70460a;
}

.nb-help-warning a {
    font-weight: 800;
}

.nb-help-warning-soft {
    border-color: rgba(47, 124, 255, .20);
    background: rgba(47, 124, 255, .06);
}

.nb-help-warning-soft i {
    color: var(--nb-blue);
}

.nb-help-warning-soft p {
    color: var(--nb-muted);
}

.nb-help-resource-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 1.25rem;
}

.nb-help-resource-card {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.nb-help-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.nb-help-gallery-single {
    max-width: 520px;
    margin-bottom: 1.25rem;
}

.nb-help-gallery-item {
    padding: .55rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 20px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.nb-help-gallery-item:hover,
.nb-help-gallery-item:focus {
    transform: translateY(-4px);
    border-color: rgba(47, 124, 255, .24);
    box-shadow: 0 26px 64px rgba(15, 23, 42, .12);
}

.nb-help-gallery-item img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
    border-radius: 15px;
    box-shadow: none;
}

.nb-help-gallery-item span {
    display: block;
    padding: .75rem .45rem .25rem;
    color: var(--nb-ink);
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.25;
}

.nb-help-feature-list {
    margin-top: 1.2rem;
    padding: 1.2rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    background: rgba(248, 251, 255, .72);
}

.nb-help-feature-list ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem 1.2rem;
    margin: .9rem 0 0;
    padding-left: 1.15rem;
    color: var(--nb-muted);
}

.nb-help-cta {
    max-width: 1120px;
    margin: 1.4rem auto 0;
}

@media (max-width: 1199.98px) {
    .nb-help-tabs .nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 991.98px) {
    .nb-help-hero .nb-inner-hero-card {
        margin-left: 0;
    }

    .nb-help-card-grid,
    .nb-help-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nb-help-resource-head {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .nb-help-tabs .nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nb-help-card-grid,
    .nb-help-gallery,
    .nb-help-feature-list ul {
        grid-template-columns: 1fr;
    }

    .nb-help-resource-card {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .nb-help-tabs .nav {
        grid-template-columns: 1fr;
    }

    .nb-help-tabs .nav-link,
    .nb-help-resource-head .nb-btn,
    .nb-help-cta .nb-btn {
        width: 100%;
    }
}

/* Blog page */
.nb-blog-hero .nb-inner-hero-card {
    max-width: 430px;
    margin-left: auto;
}

.nb-blog-hero-card strong {
    font-size: 1.12rem;
}

.nb-blog-page {
    padding: clamp(3.8rem, 6vw, 5.6rem) 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(47, 124, 255, .09), transparent 25%),
        radial-gradient(circle at 90% 12%, rgba(25, 211, 255, .08), transparent 28%),
        var(--nb-soft);
}

.nb-blog-page .container-xxl {
    max-width: 1180px;
}

.nb-blog-list {
    display: grid;
    gap: 1.25rem;
}

.nb-blog-card,
.nb-blog-empty {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 28px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .09);
    backdrop-filter: blur(14px);
}

.nb-blog-card {
    padding: clamp(1.35rem, 3vw, 2.25rem);
}

.nb-blog-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--nb-blue), var(--nb-cyan));
    opacity: .55;
}

.nb-blog-card-featured {
    border-color: rgba(47, 124, 255, .16);
    background:
        radial-gradient(circle at 100% 0%, rgba(25, 211, 255, .12), transparent 30%),
        rgba(255, 255, 255, .92);
}

.nb-blog-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem 1rem;
    margin-bottom: .85rem;
}

.nb-blog-tag {
    display: inline-flex;
    align-items: center;
    padding: .32rem .68rem;
    border: 1px solid rgba(47, 124, 255, .18);
    border-radius: 999px;
    color: var(--nb-blue);
    background: rgba(47, 124, 255, .075);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .065em;
    line-height: 1;
    text-transform: uppercase;
}

.nb-blog-meta-row time {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--nb-muted);
    font-size: .9rem;
    font-weight: 700;
}

.nb-blog-meta-row time i {
    color: var(--nb-blue);
}

.nb-blog-card h2,
.nb-blog-empty h2 {
    margin: 0 0 1rem;
    color: var(--nb-ink);
    font-family: var(--nb-font-display);
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.12;
}

.nb-blog-content {
    color: #334155;
    font-size: 1rem;
    line-height: 1.82;
}

.nb-blog-content p {
    margin-bottom: 1.05rem;
}

.nb-blog-content p + p {
    margin-top: .2rem;
}

.nb-blog-content p:last-child,
.nb-blog-content ul:last-child,
.nb-blog-content ol:last-child {
    margin-bottom: 0;
}

.nb-blog-content a {
    font-weight: 750;
}

.nb-blog-content ul,
.nb-blog-content ol {
    padding-left: 1.35rem;
}

.nb-blog-content li + li {
    margin-top: .25rem;
}

.nb-blog-content strong,
.nb-blog-content b {
    color: var(--nb-ink);
}

.nb-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.nb-blog-content hr {
    margin: 1.5rem 0;
    border-color: rgba(15, 23, 42, .1);
}


.nb-blog-footer {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1rem;
    margin-top: 1.35rem;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(15, 23, 42, .08);
    color: var(--nb-muted);
    background: transparent !important;
    box-shadow: none !important;
    font-size: .9rem;
    font-weight: 650;
}

.nb-blog-footer span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .38rem .7rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 999px;
    background: rgba(248, 250, 252, .82);
}

.nb-blog-footer i {
    color: var(--nb-blue);
}

.nb-blog-empty {
    padding: clamp(1.8rem, 4vw, 3rem);
    text-align: center;
}

.nb-blog-empty .nb-inner-hero-icon {
    margin: 0 auto 1rem;
}

.nb-blog-empty p {
    max-width: 560px;
    margin: 0 auto;
    color: var(--nb-muted);
}

.nb-blog-cta {
    margin-top: 1.5rem;
}

@media (max-width: 991.98px) {
    .nb-blog-hero .nb-inner-hero-card {
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .nb-blog-card {
        border-radius: 22px;
    }

    .nb-blog-footer {
        flex-direction: column;
    }
}
