@import url("password-toggle.css");

/* ==========================================================
   NX Landing - totally new theme (bento + panel dashboard)
   ========================================================== */

:root{
    --nx-bg: #0b1020;
    --nx-surface: #0f172a;
    --nx-surface-2: #101b33;
    --nx-border: rgba(148, 163, 184, 0.18);
    --nx-text: rgba(226, 232, 240, 0.92);
    --nx-muted: rgba(226, 232, 240, 0.65);
    --nx-strong: #ffffff;
    --nx-blue: #2563eb;
    --nx-blue-2: #60a5fa;
    --nx-gold: #f59e0b;
    --nx-green: #22c55e;
    --nx-indigo: #6366f1;
    --nx-shadow: 0 24px 60px rgba(0,0,0,0.45);
    --nx-radius: 16px;
    --nx-radius-lg: 22px;
}

.nx-landing{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--nx-bg);
    color: var(--nx-text);
    overflow-x: hidden;
}

.nx-main{ padding-top: 74px; }

/* Topbar */
.nx-topbar{
    background: rgba(11, 16, 32, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--nx-border);
}
@media (max-width: 991.98px) {
    /* Backdrop blur is very expensive when the collapse animates / repaints */
    .nx-topbar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(11, 16, 32, 0.97);
    }
}
.nx-topbar-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding: 0.85rem 0;
}
@media (min-width: 992px) {
    .nx-topbar-inner {
        flex-wrap: nowrap;
    }
}
.nx-brand{
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--nx-strong);
    font-weight: 800;
    letter-spacing: -0.01em;
}
.nx-brand-logo{ height: 34px; width: auto; display:block; filter: drop-shadow(0 12px 22px rgba(0,0,0,0.35)); }
.nx-brand-name{ color: rgba(255,255,255,0.92); }
.nx-menu-btn{
    width: 44px; height: 44px;
    display: inline-flex; align-items:center; justify-content:center;
    border-radius: 12px;
    border: 1px solid var(--nx-border);
    background: rgba(255,255,255,0.04);
    color: var(--nx-text);
    touch-action: manipulation;
}
.nx-nav{
    align-items: center;
    gap: 0.25rem;
}
.nx-nav-link{
    display: inline-flex;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    color: var(--nx-muted);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nx-nav-link:hover{
    color: var(--nx-strong);
    background: rgba(255,255,255,0.06);
    transform: translateY(-1px);
}
.nx-nav-link[aria-current="page"]{
    color: var(--nx-strong);
    background: rgba(255,255,255,0.08);
}
.nx-nav-link[aria-current="page"]:hover{
    transform: none;
}
.nx-nav-actions{
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 0.35rem;
}

/* Topbar - mobile: stack nav full-width under logo + toggler */
@media (max-width: 991.98px) {
    .nx-menu-btn {
        margin-left: auto;
        flex-shrink: 0;
    }
    .nx-nav.collapse {
        flex-basis: 100%;
        width: 100%;
        order: 3;
        margin-top: 0.25rem;
        padding-top: 0.85rem;
        border-top: 1px solid var(--nx-border);
        flex-direction: column;
        align-items: stretch;
        gap: 0.15rem;
        background: rgba(11, 16, 32, 0.92);
        border-radius: 12px;
        transform: translateZ(0);
    }
    /* Bootstrap collapse toggles display:block; use flex for layout */
    .nx-nav.collapse.show,
    .nx-nav.collapsing {
        display: flex !important;
    }
    /* Drop Bootstrap’s height tween - it reflows every frame and feels laggy on mobile */
    #nxNav.collapsing {
        transition: none !important;
    }
    .nx-brand-logo {
        filter: none;
    }
    .nx-nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.65rem 0.85rem;
        border-radius: 10px;
        transition: background-color 0.15s ease, color 0.15s ease;
    }
    .nx-nav-link:hover {
        transform: none;
    }
    .nx-nav-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-left: 0;
        margin-top: 0.35rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(148, 163, 184, 0.14);
        gap: 0.5rem;
    }
    .nx-nav-actions .nx-btn {
        width: 100%;
        justify-content: center;
    }
}
@media (min-width: 992px) {
    .nx-nav.collapse {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        flex-grow: 1;
        gap: 0.25rem;
    }
}

/* Buttons */
.nx-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.nx-btn-lg{ padding: 0.9rem 1.3rem; }
.nx-btn-primary{
    background: linear-gradient(135deg, var(--nx-gold), #ffd18a);
    color: #0b1020;
    box-shadow: 0 14px 36px rgba(245,158,11,0.22);
}
.nx-btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 18px 46px rgba(245,158,11,0.28); color:#0b1020; }
.nx-btn-ghost{
    background: rgba(255,255,255,0.04);
    border-color: var(--nx-border);
    color: var(--nx-text);
}
.nx-btn-ghost:hover{ background: rgba(255,255,255,0.08); color: var(--nx-strong); transform: translateY(-1px); }
.nx-btn-soft{
    background: rgba(37,99,235,0.14);
    border-color: rgba(37,99,235,0.18);
    color: rgba(226,232,240,0.95);
}
.nx-btn-soft:hover{ background: rgba(37,99,235,0.2); transform: translateY(-1px); color: rgba(226,232,240,0.98); }
.nx-btn-invert{
    background: #ffffff;
    color: #0b1020;
}
.nx-btn-outline-invert{
    background: rgba(255,255,255,0.0);
    border-color: rgba(255,255,255,0.55);
    color: #ffffff;
}
.nx-btn-outline-invert:hover{ background: rgba(255,255,255,0.12); color:#fff; transform: translateY(-1px); }

/* Auth (login/register pages) */
.nx-auth{
    position: relative;
    padding: 4.2rem 0 3rem;
}
.nx-auth-wrap{
    max-width: 520px;
    margin: 0 auto;
}
.nx-auth-form .form-label{
    color: rgba(226,232,240,0.78);
    font-weight: 800;
    margin-bottom: 0.45rem;
    font-size: 0.95rem;
}
.nx-auth-form .form-control{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(148,163,184,0.28);
    color: rgba(226,232,240,0.96);
    border-radius: 14px;
    padding: 0.8rem 1rem;
}
.nx-auth-form .form-control::placeholder{
    color: rgba(226,232,240,0.45);
}
.nx-auth-form .form-control:focus{
    background: rgba(255,255,255,0.05);
    border-color: rgba(245,158,11,0.55);
    box-shadow: 0 0 0 0.2rem rgba(245,158,11,0.12);
    color: rgba(226,232,240,0.98);
}
.nx-auth-form .form-check-input{
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(148,163,184,0.28);
}
.nx-auth-links{
    margin-top: 0.75rem;
    display:flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.75rem 1rem;
}
.nx-referred-by{
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 650;
    color: rgba(226, 232, 240, 0.88);
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.22);
}
.nx-referred-by i{
    font-size: 1.1rem;
    color: rgba(96, 165, 250, 0.95);
}
.nx-referred-by__name{
    color: rgba(255, 255, 255, 0.96);
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

/* Legacy auth markup (e.g. forgot-password.php) */
.nx-landing .auth-wrapper{
    min-height: calc(100vh - 74px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 6.5rem 1rem 3.25rem;
}
.nx-landing .auth-card{
    width: 100%;
    max-width: 520px;
    border-radius: var(--nx-radius-lg);
    border: 1px solid rgba(148,163,184,0.26);
    background: rgba(15,23,42,0.78);
    box-shadow: var(--nx-shadow);
    overflow: hidden;
    backdrop-filter: blur(14px);
    padding: 1.25rem 1.25rem 1.2rem;
}
.nx-landing .auth-card h1{
    font-weight: 950;
    color: var(--nx-strong);
    font-size: 1.5rem;
    margin: 0 0 0.6rem;
}
.nx-landing .auth-card .text-muted{
    color: rgba(226,232,240,0.65) !important;
}
.nx-landing .auth-card .form-label{
    color: rgba(226,232,240,0.78);
    font-weight: 800;
    margin-bottom: 0.45rem;
}
.nx-landing .auth-card .form-control{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(148,163,184,0.28);
    color: rgba(226,232,240,0.96);
    border-radius: 14px;
    padding: 0.8rem 1rem;
}
.nx-landing .auth-card .form-control:focus{
    border-color: rgba(245,158,11,0.55);
    box-shadow: 0 0 0 0.2rem rgba(245,158,11,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(226,232,240,0.98);
}
.nx-landing .auth-card .btn-primary{
    background: linear-gradient(135deg, var(--nx-gold), #ffd18a);
    color: #0b1020;
    border-color: transparent;
    font-weight: 800;
    border-radius: 14px;
    padding: 0.8rem 1rem;
    width: 100%;
}
.nx-landing .auth-card .btn-primary:hover{
    transform: translateY(-1px);
    box-shadow: 0 18px 46px rgba(245,158,11,0.28);
    color:#0b1020;
}
.nx-landing .auth-card .btn-link{
    color: rgba(245,158,11,0.95) !important;
    font-weight: 800;
    text-decoration: none;
}
.nx-landing .auth-card .btn-link:hover{
    color: #ffd18a !important;
    text-decoration: none;
}

/* Inputs inside NX panels (used by Contact / Payment pages) */
.nx-panel .form-control,
.nx-panel textarea.form-control{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(148,163,184,0.28);
    color: rgba(226,232,240,0.96);
    border-radius: 14px;
    padding: 0.8rem 1rem;
}
.nx-panel .form-control::placeholder,
.nx-panel textarea.form-control::placeholder{
    color: rgba(226,232,240,0.45);
}
.nx-panel .form-control:focus,
.nx-panel textarea.form-control:focus{
    border-color: rgba(245,158,11,0.55);
    box-shadow: 0 0 0 0.2rem rgba(245,158,11,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(226,232,240,0.98);
}

/* Selects match panel inputs (Contact, etc.) */
.nx-panel .form-select{
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23cbd5e1' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    appearance: none;
    background-color: rgba(255,255,255,0.03);
    background-image: var(--bs-form-select-bg-img);
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px 10px;
    border: 1px solid rgba(148,163,184,0.28);
    border-radius: 14px;
    color: rgba(226,232,240,0.96);
    padding: 0.8rem 2.75rem 0.8rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: none;
}
.nx-panel .form-select:focus{
    border-color: rgba(245,158,11,0.55);
    box-shadow: 0 0 0 0.2rem rgba(245,158,11,0.12);
    background-color: rgba(255,255,255,0.05);
    color: rgba(226,232,240,0.98);
}
.nx-panel .form-select:disabled{
    opacity: 0.65;
    cursor: not-allowed;
}
/* Placeholder-style label until a real topic is chosen */
.nx-panel .nx-contact-form .form-select:required:invalid{
    color: rgba(226,232,240,0.45);
}
.nx-panel .nx-contact-form .form-select option{
    background-color: #121a2e;
    color: rgba(226,232,240,0.96);
    font-weight: 650;
}
.nx-panel .nx-contact-form .form-select option[value=""]{
    color: rgba(226,232,240,0.5);
}

.nx-panel .form-check-input{
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(148,163,184,0.28);
}

/* Hero */
.nx-hero{ position: relative; padding: 3.2rem 0 2.2rem; }
.nx-hero-bg{
    position: absolute; inset: 0;
    background:
        radial-gradient(900px 520px at 10% 12%, rgba(245,158,11,0.18) 0%, transparent 60%),
        radial-gradient(900px 520px at 92% 22%, rgba(96,165,250,0.18) 0%, transparent 60%),
        radial-gradient(900px 520px at 55% 95%, rgba(34,197,94,0.12) 0%, transparent 60%),
        linear-gradient(180deg, #0b1020 0%, #0b1220 100%);
    pointer-events: none;
}
.nx-hero-inner{
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.2rem;
    align-items: center;
}
@media (max-width: 991.98px){
    .nx-hero-inner{ grid-template-columns: 1fr; }
}
.nx-pill{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.28);
    background: rgba(255,255,255,0.04);
    color: rgba(226,232,240,0.9);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.nx-h1{
    font-size: clamp(2.1rem, 3.2vw + 1rem, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--nx-strong);
    margin: 0 0 1rem;
}
.nx-lead{
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--nx-muted);
    max-width: 42rem;
    margin: 0 0 1.35rem;
}
.nx-hero-cta{ display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.nx-badges{ display:flex; flex-wrap:wrap; gap:0.6rem 0.9rem; }
.nx-badge{
    display:inline-flex; align-items:center; gap:0.5rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    color: rgba(226,232,240,0.82);
    font-weight: 600;
    font-size: 0.92rem;
}
.nx-badge i{ color: rgba(245,158,11,0.95); }

.nx-hero-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nx-hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--nx-radius-lg);
}

/* CEO strip - full-width band under hero */
.nx-ceo-strip {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
}
.nx-ceo-strip-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 120% 80% at 15% 50%, rgba(99, 102, 241, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 90% 70% at 92% 40%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
        linear-gradient(105deg, rgba(15, 23, 42, 0.97) 0%, rgba(17, 24, 39, 0.99) 45%, rgba(11, 16, 32, 1) 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.nx-ceo-strip-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 30%, rgba(0, 0, 0, 0.35) 70%, transparent 100%);
    pointer-events: none;
}
.nx-ceo-strip-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: clamp(1.15rem, 3.5vw, 2.5rem);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(1.35rem, 3vw, 2.1rem) clamp(1rem, 5vw, 3.5rem);
    box-sizing: border-box;
    backdrop-filter: blur(0);
}
.nx-ceo-photo-wrap {
    position: relative;
    flex-shrink: 0;
}
.nx-ceo-photo-ring {
    position: absolute;
    inset: -6px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.55), rgba(99, 102, 241, 0.45), rgba(37, 99, 235, 0.35));
    opacity: 0.9;
    z-index: 0;
}
.nx-ceo-photo {
    position: relative;
    z-index: 1;
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 22px;
    border: 2px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
@media (min-width: 576px) {
    .nx-ceo-photo {
        width: 152px;
        height: 152px;
        border-radius: 24px;
    }
    .nx-ceo-photo-ring {
        border-radius: 30px;
        inset: -7px;
    }
}
@media (min-width: 992px) {
    .nx-ceo-photo {
        width: 168px;
        height: 168px;
        border-radius: 26px;
    }
    .nx-ceo-photo-ring {
        border-radius: 32px;
        inset: -8px;
    }
}
.nx-ceo-copy {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-left: 1.15rem;
}
.nx-ceo-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.9), rgba(99, 102, 241, 0.55));
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}
@media (max-width: 575.98px) {
    /* Card-style layout: photo + headline row, quote full width below */
    .nx-ceo-strip-inner {
        display: grid;
        grid-template-columns: 96px minmax(0, 1fr);
        align-items: start;
        column-gap: 1rem;
        row-gap: 0.65rem;
        padding: 1rem 1rem 1.2rem;
    }
    .nx-ceo-photo-wrap {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
    }
    .nx-ceo-copy {
        display: contents;
    }
    .nx-ceo-copy::before {
        display: none;
    }
    .nx-ceo-meta {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        margin-bottom: 0;
        min-width: 0;
    }
    .nx-ceo-role {
        font-size: 0.6rem;
        padding: 0.18rem 0.5rem;
    }
    .nx-ceo-name {
        font-size: 1.08rem;
        line-height: 1.2;
    }
    .nx-ceo-quote {
        grid-column: 1 / -1;
        grid-row: 2;
        margin: 0;
        padding: 0.9rem 0.85rem 1rem 2.75rem;
        border-left: none;
        border-top: 1px solid rgba(148, 163, 184, 0.22);
        border-radius: 14px;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
    .nx-ceo-quote::before {
        left: 0.5rem;
        top: 0.45rem;
        font-size: 2.35rem;
        color: rgba(245, 158, 11, 0.28);
    }
    .nx-ceo-quote::after {
        right: 0.45rem;
        bottom: 0.35rem;
        font-size: 1.65rem;
        color: rgba(99, 102, 241, 0.22);
    }
    .nx-ceo-quote p {
        font-size: 1rem;
        line-height: 1.65;
        padding-top: 0.15rem;
        padding-right: 0.25rem;
        letter-spacing: -0.01em;
        text-wrap: pretty;
    }
    .nx-ceo-photo {
        width: 96px;
        height: 96px;
        border-radius: 18px;
    }
    .nx-ceo-photo-ring {
        border-radius: 22px;
        inset: -5px;
    }
}
.nx-ceo-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.85rem;
    margin-bottom: 0.65rem;
}
.nx-ceo-role {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(11, 16, 32, 0.95);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(253, 224, 71, 0.88));
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.25);
}
.nx-ceo-name {
    font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--nx-strong);
}
.nx-ceo-quote {
    margin: 0;
    padding: 0.85rem 0 0.35rem 0.85rem;
    border: none;
    border-left: 2px solid rgba(245, 158, 11, 0.35);
    position: relative;
}
.nx-ceo-quote::before {
    content: "\201C";
    position: absolute;
    left: 0.15rem;
    top: -0.1rem;
    font-size: clamp(2.75rem, 4vw + 1.5rem, 4rem);
    line-height: 1;
    font-family: Georgia, "Times New Roman", ui-serif, serif;
    color: rgba(245, 158, 11, 0.22);
    pointer-events: none;
    z-index: 0;
}
.nx-ceo-quote::after {
    content: "\201D";
    position: absolute;
    right: 0.15rem;
    bottom: -0.15rem;
    font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
    line-height: 1;
    font-family: Georgia, "Times New Roman", ui-serif, serif;
    color: rgba(99, 102, 241, 0.18);
    pointer-events: none;
    z-index: 0;
}
.nx-ceo-quote p {
    position: relative;
    z-index: 1;
    margin: 0;
    padding-top: 0.35rem;
    font-size: clamp(0.95rem, 1.15vw + 0.82rem, 1.12rem);
    line-height: 1.68;
    font-weight: 500;
    font-style: italic;
    color: rgba(241, 245, 249, 0.95);
    letter-spacing: -0.012em;
    max-width: 62ch;
}
@media (min-width: 1200px) {
    .nx-ceo-quote p {
        max-width: none;
    }
}

/* Panel */
.nx-panel{
    border-radius: var(--nx-radius-lg);
    background: rgba(15,23,42,0.78);
    border: 1px solid rgba(148,163,184,0.26);
    box-shadow: var(--nx-shadow);
    overflow: hidden;
    backdrop-filter: blur(14px);
}
.nx-panel-head{
    display:flex; align-items:center; justify-content:space-between;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(148,163,184,0.18);
    background: rgba(255,255,255,0.03);
}
.nx-panel-title{ font-weight: 800; color: rgba(226,232,240,0.92); letter-spacing: 0.01em; }
.nx-panel-status{ display:inline-flex; align-items:center; gap:0.45rem; font-weight:700; color: rgba(226,232,240,0.78); font-size:0.9rem; }
.nx-dot{ width:8px; height:8px; border-radius:999px; background: var(--nx-green); box-shadow: 0 0 0 6px rgba(34,197,94,0.12); }
.nx-panel-body{ padding: 1rem; }
.nx-panel-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}
.nx-metric{
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 0.85rem 0.85rem;
}
.nx-metric-k{ font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(226,232,240,0.6); font-weight: 700; }
.nx-metric-v{ font-size: 1.35rem; font-weight: 900; color: rgba(226,232,240,0.96); margin-top: 0.25rem; letter-spacing: -0.02em; }
.nx-metric-v-green{ color: rgba(34,197,94,0.95); }
.nx-sparkline{
    height: 74px;
    display:flex; align-items:flex-end; gap:8px;
    padding: 0.85rem 0.85rem 0.75rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    margin-bottom: 0.9rem;
}
.nx-sparkline span{
    flex: 1;
    height: var(--h, 50%);
    min-height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(245,158,11,0.95) 0%, rgba(34,197,94,0.85) 100%);
    opacity: 0.92;
}
.nx-panel-foot{
    display:flex; align-items:center; justify-content:space-between; gap: 1rem;
}
.nx-footnote{ color: rgba(226,232,240,0.62); font-weight: 600; font-size: 0.9rem; }
.nx-link{ color: rgba(245,158,11,0.95); text-decoration:none; font-weight: 800; }
.nx-link:hover{ color: #ffd18a; }

/* Sections */
.nx-section-head{ margin-bottom: 1.25rem; }
.nx-h2{ font-size: clamp(1.6rem, 1.6vw + 1.1rem, 2.05rem); font-weight: 900; letter-spacing:-0.02em; color: var(--nx-strong); margin:0 0 0.25rem; }
.nx-sub{ margin:0; color: var(--nx-muted); font-size: 1rem; line-height: 1.6; }
.nx-h2-invert{ color: #fff; }
.nx-sub-invert{ color: rgba(255,255,255,0.78); }

/* Metrics cards row */
.nx-metrics{ padding: 2.2rem 0 2.6rem; }
.nx-metrics-row{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
@media (max-width: 991.98px){ .nx-metrics-row{ grid-template-columns: 1fr; } }
.nx-card{
    border-radius: var(--nx-radius);
    border: 1px solid rgba(148,163,184,0.18);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
    padding: 1.1rem 1.1rem 1rem;
}
.nx-card-top{ display:flex; align-items:center; gap: 0.75rem; margin-bottom: 0.9rem; }
.nx-ico{
    width: 44px; height: 44px; border-radius: 14px;
    display:flex; align-items:center; justify-content:center;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    font-size: 1.25rem;
}
.nx-ico-blue{ color: var(--nx-blue-2); background: rgba(96,165,250,0.12); border-color: rgba(96,165,250,0.24); }
.nx-ico-green{ color: rgba(34,197,94,0.95); background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.22); }
.nx-ico-indigo{ color: rgba(99,102,241,0.95); background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.22); }
.nx-card-label{ color: rgba(226,232,240,0.72); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
.nx-card-value{ font-size: 2.1rem; font-weight: 950; letter-spacing:-0.03em; color: var(--nx-strong); line-height: 1.05; }
.nx-card-value-green{ color: rgba(34,197,94,0.95); }

/* Bento */
.nx-cap{ padding: 2.4rem 0 3.2rem; }
.nx-bento{
    display:grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.1rem;
}
@media (max-width: 991.98px){ .nx-bento{ grid-template-columns: 1fr; } }
.nx-bento-a{ grid-column: 1 / 2; grid-row: 1 / 3; }
.nx-bento-b{ grid-column: 2 / 3; grid-row: 1 / 2; }
.nx-bento-c{ grid-column: 2 / 3; grid-row: 2 / 3; }
@media (max-width: 991.98px){
    .nx-bento-a, .nx-bento-b, .nx-bento-c{ grid-column:auto; grid-row:auto; }
}
.nx-bento > article{
    border-radius: var(--nx-radius-lg);
    border: 1px solid rgba(148,163,184,0.18);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 18px 44px rgba(0,0,0,0.28);
    padding: 1.25rem 1.25rem 1.15rem;
}
.nx-bento-head{ display:flex; align-items:center; gap: 0.85rem; margin-bottom: 0.75rem; }
.nx-h3{ margin:0; font-size: 1.15rem; font-weight: 900; letter-spacing:-0.02em; color: var(--nx-strong); }
.nx-p{ margin:0 0 0.95rem; color: var(--nx-muted); line-height: 1.65; }
.nx-list{ margin:0; padding-left: 1.1rem; color: rgba(226,232,240,0.78); font-weight: 600; }
.nx-list li{ margin: 0.35rem 0; }
.nx-mini-table{
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    overflow:hidden;
}
.nx-mini-table > div{
    display:flex; justify-content:space-between; gap: 1rem;
    padding: 0.6rem 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-weight: 800;
    color: rgba(226,232,240,0.78);
}
.nx-mini-table > div:first-child{ border-top: none; color: rgba(226,232,240,0.6); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; }
.nx-levels{
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    overflow: hidden;
}
.nx-levels-row{
    display: grid;
    grid-template-columns: 0.62fr 1.35fr 0.85fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.58rem 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-weight: 800;
    color: rgba(226,232,240,0.80);
}
.nx-levels-row:first-child{ border-top: none; }
.nx-levels-head{
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    color: rgba(226,232,240,0.62);
    background: rgba(255,255,255,0.02);
}
.nx-levels-row:not(.nx-levels-head):nth-child(even){
    background: rgba(255,255,255,0.015);
}
.nx-levels-row span:last-child{ text-align: right; }
.nx-lv{
    width: 34px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(96,165,250,0.25);
    background: rgba(96,165,250,0.12);
    color: rgba(226,232,240,0.92);
    font-weight: 950;
}
.nx-money{
    color: rgba(34,197,94,0.95);
    font-weight: 950;
    letter-spacing: -0.01em;
}
.nx-gold-shares{
    color: rgba(245,158,11,0.98);
    font-weight: 950;
    letter-spacing: -0.01em;
}
.nx-levels-note{
    margin-top: 0.9rem;
    padding: 0.65rem 0.85rem;
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,0.18);
    background: rgba(255,255,255,0.02);
    color: rgba(226,232,240,0.72);
    font-weight: 650;
    line-height: 1.5;
}

/* Top earners (last 48h) */
.nx-top5{
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    overflow: hidden;
}
.nx-top5-row{
    display: grid;
    grid-template-columns: 0.6fr 1.6fr 1fr 1.1fr;
    gap: 0.85rem;
    align-items: center;
    padding: 0.58rem 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-weight: 800;
    color: rgba(226,232,240,0.80);
}
.nx-top5-row:first-child{ border-top: none; }
.nx-top5-head{
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: rgba(226,232,240,0.62);
    background: rgba(255,255,255,0.02);
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}
.nx-top5-rank{
    width: 34px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(34,197,94,0.25);
    background: rgba(34,197,94,0.10);
    color: rgba(226,232,240,0.92);
    font-weight: 950;
}
.nx-top5-user{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nx-top5-country{
    color: rgba(226,232,240,0.66);
    font-weight: 750;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.nx-top5-flag-img{
    display: block;
    width: 2.5rem;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    margin: 0 auto;
}
.nx-top5-country-fallback{
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(226,232,240,0.55);
}
.nx-top5-right{ text-align: right; }
.nx-top5-amount{
    color: rgba(34,197,94,0.95);
    font-weight: 950;
    letter-spacing: -0.01em;
}

/* Capabilities (bento) - phones & small tablets */
@media (max-width: 767.98px) {
    .nx-cap {
        padding: 1.65rem 0 2.35rem;
    }
    .nx-cap .nx-section-head {
        margin-bottom: 1.05rem;
    }
    .nx-bento {
        gap: 0.85rem;
    }
    .nx-bento > article {
        padding: 1.05rem 0.9rem 0.95rem;
        border-radius: var(--nx-radius);
    }
    .nx-bento-head {
        align-items: flex-start;
        gap: 0.65rem;
        margin-bottom: 0.6rem;
    }
    .nx-bento-head .nx-ico {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    .nx-bento .nx-h3 {
        font-size: 1.05rem;
        line-height: 1.28;
    }
    .nx-bento .nx-p {
        font-size: 0.94rem;
        line-height: 1.62;
        margin-bottom: 0.8rem;
    }
    /* Levels table: swipe horizontally instead of squishing */
    .nx-levels {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        border-radius: 14px;
        scrollbar-width: thin;
    }
    .nx-levels .nx-levels-row {
        min-width: 318px;
        padding: 0.5rem 0.72rem;
        gap: 0.5rem;
        grid-template-columns: 3.25rem minmax(0, 1.35fr) minmax(5.5rem, 1fr);
    }
    .nx-levels-head {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }
    .nx-lv {
        width: 30px;
        height: 26px;
        font-size: 0.82rem;
    }
    .nx-levels-note {
        margin-top: 0.75rem;
        padding: 0.55rem 0.72rem;
        font-size: 0.88rem;
        line-height: 1.5;
    }
    /* Top 5: horizontal scroll */
    .nx-top5 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        border-radius: 14px;
        scrollbar-width: thin;
    }
    .nx-top5 .nx-top5-row {
        min-width: 300px;
        padding: 0.5rem 0.72rem;
        gap: 0.5rem;
        grid-template-columns: 2.75rem minmax(0, 1.5fr) minmax(0, 1fr) minmax(4.25rem, 1.1fr);
    }
    .nx-top5-head {
        font-size: 0.68rem;
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }
    .nx-top5-rank {
        width: 30px;
        height: 26px;
        font-size: 0.82rem;
    }
    .nx-callout {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        padding: 0.75rem 0.8rem;
        border-radius: 14px;
    }
    .nx-callout-k {
        align-self: flex-start;
    }
    .nx-callout-v {
        font-size: 0.92rem;
        line-height: 1.55;
    }
}
@media (max-width: 420px) {
    .nx-top5 .nx-top5-row {
        min-width: 268px;
        grid-template-columns: 2.75rem minmax(0, 1fr) 2.5rem minmax(4.5rem, 1.2fr);
    }
    .nx-top5-country {
        text-align: center;
    }
    .nx-top5-flag-img {
        width: 2.15rem;
    }
    .nx-top5-right {
        padding-left: 0.2rem;
    }
    .nx-levels .nx-levels-row {
        min-width: 292px;
        grid-template-columns: 3rem minmax(0, 1.3fr) minmax(5rem, 1fr);
        gap: 0.45rem;
    }
    .nx-levels-note {
        padding: 0.55rem 0.65rem;
    }
}
.nx-callout{
    position: relative;
    display:flex;
    gap: 0.75rem;
    align-items:center;
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    border: 1px solid rgba(245,158,11,0.28);
    background:
        radial-gradient(520px 160px at 20% 0%, rgba(245,158,11,0.22) 0%, transparent 55%),
        linear-gradient(135deg, rgba(245,158,11,0.14) 0%, rgba(245,158,11,0.06) 100%);
    box-shadow: 0 18px 44px rgba(0,0,0,0.25);
}
.nx-callout::after{
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(245,158,11,0.22), rgba(99,102,241,0.08));
    opacity: 0.25;
    pointer-events: none;
    padding: 1px;
}
.nx-callout-k{
    font-weight: 950;
    color: rgba(245,158,11,0.98);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(245,158,11,0.35);
    background: rgba(245,158,11,0.12);
    white-space: nowrap;
}
.nx-callout-v{
    color: rgba(226,232,240,0.92);
    font-weight: 700;
    line-height: 1.5;
}

.nx-gold-percent{
    color: rgba(245,158,11,0.98);
    font-weight: 950;
    letter-spacing: -0.01em;
}

/* Workflow timeline */
.nx-flow{ padding: 2.2rem 0 3.2rem; }
.nx-timeline{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
@media (max-width: 991.98px){ .nx-timeline{ grid-template-columns: 1fr; } }
.nx-step{
    border-radius: var(--nx-radius-lg);
    border: 1px solid rgba(148,163,184,0.18);
    background: rgba(255,255,255,0.03);
    padding: 1.1rem 1.1rem 1rem;
}
.nx-step-num{
    display:inline-flex;
    font-weight: 950;
    letter-spacing: 0.08em;
    color: rgba(96,165,250,0.95);
    background: rgba(96,165,250,0.12);
    border: 1px solid rgba(96,165,250,0.22);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    margin-bottom: 0.75rem;
}
.nx-step-title{ font-weight: 950; color: var(--nx-strong); margin-bottom: 0.25rem; }
.nx-step-desc{ color: var(--nx-muted); line-height: 1.6; }

/* CTA */
.nx-cta{ padding: 2.8rem 0 3.2rem; }
.nx-cta-box{
    border-radius: 24px;
    padding: 1.6rem 1.6rem;
    border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(135deg, rgba(37,99,235,0.9) 0%, rgba(245,158,11,0.85) 100%);
    box-shadow: var(--nx-shadow);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 1.25rem;
}
@media (max-width: 991.98px){ .nx-cta-box{ flex-direction: column; align-items:flex-start; } }
.nx-cta-actions{ display:flex; flex-wrap:wrap; gap: 0.75rem; }

/* Footer */
.nx-footer{
    padding: 2.2rem 0 2.4rem;
    border-top: 1px solid rgba(148,163,184,0.18);
    background: rgba(11,16,32,0.88);
}
.nx-footer-inner{
    display:grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 1.8rem;
}
.nx-footer-col{
    display:flex;
    flex-direction: column;
}
.nx-footer-brand{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}
.nx-footer-logo{ height: 34px; width: auto; }
.nx-footer-name{ font-weight: 900; color: rgba(226,232,240,0.92); }
.nx-footer-desc{
    color: rgba(226,232,240,0.62);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.05rem;
    display: block;
    width: 100%;
    max-width: 32rem;
    line-height: 1.65;
}
.nx-footer-col-title{
    color: rgba(226,232,240,0.78);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: none;
    font-size: 1rem;
    margin-bottom: 0.65rem;
}
.nx-footer-ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.nx-footer-ul li{
    margin: 0.42rem 0;
}
.nx-footer-ul a{
    color: rgba(226,232,240,0.66);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: color 0.18s ease;
}
.nx-footer-ul a:hover{
    color: rgba(226,232,240,0.92);
}
.nx-footer-bottom{
    grid-column: 1 / -1;
    margin-top: 0.35rem;
    color: rgba(226,232,240,0.55);
    font-weight: 650;
}

@media (max-width: 991.98px){
    .nx-footer-inner{ grid-template-columns: 1fr; }
}

html{ scroll-behavior: smooth; }

/* Contact / legal / proofs landing heroes (shared) */
.nx-contact-hero,
.nx-legal-hero,
.nx-proofs-hero{
    position: relative;
    padding: 2.75rem 0 2.25rem;
    margin-bottom: 0.25rem;
}
.nx-contact-hero-bg,
.nx-legal-hero-bg,
.nx-proofs-hero-bg{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(720px 420px at 8% 0%, rgba(245,158,11,0.14) 0%, transparent 58%),
        radial-gradient(640px 380px at 92% 18%, rgba(96,165,250,0.14) 0%, transparent 55%),
        linear-gradient(180deg, rgba(15,23,42,0.35) 0%, transparent 100%);
    pointer-events: none;
}
.nx-contact-hero .nx-h1,
.nx-legal-hero .nx-h1,
.nx-proofs-hero .nx-h1{
    font-size: clamp(1.85rem, 2.2vw + 1rem, 2.65rem);
}
.nx-contact-quick .nx-card{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.nx-contact-quick .nx-card-top{
    margin-bottom: 0.5rem;
}
.nx-contact-card-title{
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--nx-strong);
    margin: 0.2rem 0 0;
    line-height: 1.25;
}
.nx-contact-subhead{
    color: rgba(226,232,240,0.7);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.nx-contact-email-link{
    display: inline-block;
    word-break: break-word;
    font-size: clamp(1.05rem, 1.1vw + 0.95rem, 1.28rem);
    font-weight: 850;
    color: rgba(226,232,240,0.98);
    text-decoration: none;
    margin-bottom: 1rem;
    line-height: 1.45;
}
.nx-contact-email-link:hover{
    color: rgba(245,158,11,0.98);
}
.nx-contact-divider{
    border-color: rgba(148,163,184,0.2);
    margin: 1.15rem 0;
    opacity: 1;
}
.nx-contact-tip{
    padding: 0.75rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,0.16);
    background: rgba(255,255,255,0.03);
    color: rgba(226,232,240,0.78);
    font-weight: 650;
    font-size: 0.95rem;
    line-height: 1.55;
}
.nx-contact-tip strong{
    color: rgba(245,158,11,0.95);
    font-weight: 850;
}
.nx-contact-list{
    margin: 0;
    padding-left: 1.15rem;
    color: rgba(226,232,240,0.78);
    font-weight: 650;
    line-height: 1.65;
    font-size: 0.95rem;
}
.nx-contact-list li{
    margin: 0.4rem 0;
}
.nx-contact-form .form-label{
    color: rgba(226,232,240,0.82);
    font-weight: 800;
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
}
.nx-contact-form .form-text{
    color: rgba(226,232,240,0.52);
    font-size: 0.85rem;
    margin-top: 0.35rem;
}
.nx-panel-status.nx-contact-form-hint{
    font-size: 0.8rem;
    font-weight: 650;
    color: rgba(226,232,240,0.55);
}
@media (max-width: 575.98px){
    .nx-contact-hero,
    .nx-legal-hero,
    .nx-proofs-hero{ padding: 2.1rem 0 1.65rem; }
}

/* Terms / legal document layout */
.nx-legal-meta{
    margin-top: 1rem;
    font-size: 0.95rem;
    color: rgba(226,232,240,0.58);
    font-weight: 650;
}
.nx-legal-quick .nx-card{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.nx-legal-quick .nx-card-top{
    margin-bottom: 0.45rem;
}
.nx-toc-panel .nx-panel-body{
    padding-top: 0.85rem;
}
.nx-toc-sticky{
    position: sticky;
    top: 5.5rem;
    align-self: flex-start;
    z-index: 1;
}
@media (max-width: 991.98px){
    .nx-toc-sticky{
        position: static;
    }
}
.nx-toc-title{
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
    color: rgba(226,232,240,0.55);
    margin-bottom: 0.65rem;
}
.nx-toc-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.nx-toc-list a{
    display: block;
    padding: 0.45rem 0.55rem;
    border-radius: 10px;
    color: rgba(226,232,240,0.78);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.4;
    border: 1px solid transparent;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.nx-toc-list a:hover,
.nx-toc-list a:focus-visible{
    color: rgba(226,232,240,0.96);
    background: rgba(255,255,255,0.05);
    border-color: rgba(148,163,184,0.14);
}
.nx-legal-doc{
    padding: 0;
}
.nx-legal-doc .nx-panel-body{
    padding: 1.1rem 1.15rem 1.25rem;
}
@media (min-width: 576px){
    .nx-legal-doc .nx-panel-body{
        padding: 1.25rem 1.35rem 1.45rem;
    }
}
.nx-legal-section{
    scroll-margin-top: 5.5rem;
    padding-bottom: 1.35rem;
    margin-bottom: 1.35rem;
    border-bottom: 1px solid rgba(148,163,184,0.14);
}
.nx-legal-section:last-of-type{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.nx-legal-h{
    font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.2rem);
    font-weight: 950;
    letter-spacing: -0.02em;
    color: var(--nx-strong);
    margin: 0 0 0.65rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.nx-legal-h .nx-legal-num{
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.65rem;
    height: 1.65rem;
    margin-top: 0.1rem;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 950;
    color: rgba(11,16,32,0.95);
    background: linear-gradient(135deg, rgba(245,158,11,0.95), rgba(253,224,71,0.88));
}
.nx-legal-p{
    margin: 0 0 0.85rem;
    color: rgba(226,232,240,0.76);
    font-weight: 650;
    line-height: 1.7;
    font-size: 0.97rem;
}
.nx-legal-p:last-child{
    margin-bottom: 0;
}
.nx-legal-list{
    margin: 0 0 0.85rem;
    padding-left: 1.2rem;
    color: rgba(226,232,240,0.76);
    font-weight: 650;
    line-height: 1.68;
    font-size: 0.95rem;
}
.nx-legal-list:last-child{
    margin-bottom: 0;
}
.nx-legal-list li{
    margin: 0.4rem 0;
}
.nx-legal-list li::marker{
    color: rgba(245,158,11,0.65);
}
.nx-legal-note{
    margin-top: 0.5rem;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    border: 1px solid rgba(99,102,241,0.22);
    background: rgba(99,102,241,0.08);
    color: rgba(226,232,240,0.82);
    font-weight: 650;
    font-size: 0.92rem;
    line-height: 1.55;
}
.nx-legal-note strong{
    color: rgba(165,180,252,0.98);
    font-weight: 850;
}

/* Payment proofs page */
.nx-proofs-table-wrap{
    margin-top: 0.35rem;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.18);
    background: rgba(0,0,0,0.2);
}
/* Payment proofs — pagination (custom pager, not Bootstrap .pagination) */
.nx-proofs-pagination-bar{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.25rem;
    padding: 0.85rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,0.18);
    background: linear-gradient(165deg, rgba(15,23,42,0.55) 0%, rgba(0,0,0,0.28) 100%);
    box-shadow: 0 12px 40px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.04);
}
.nx-proofs-pagination-meta{
    color: rgba(226,232,240,0.58);
    font-size: 0.875rem;
    font-weight: 650;
    line-height: 1.4;
    letter-spacing: 0.01em;
}
.nx-proofs-pagination-meta__label{
    margin-right: 0.28rem;
}
.nx-proofs-pagination-meta__current{
    color: #4ade80;
    font-weight: 850;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(34,197,94,0.28);
}
.nx-proofs-pagination-meta__of{
    margin: 0 0.2rem;
    font-weight: 600;
    opacity: 0.85;
}
.nx-proofs-pagination-meta__total{
    color: rgba(248,250,252,0.95);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.nx-proofs-pagination-meta__dot{
    margin: 0 0.45rem;
    opacity: 0.45;
}
.nx-proofs-pagination-meta__count{
    color: rgba(226,232,240,0.72);
    font-weight: 700;
}
.nx-proofs-pager{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.35rem;
}
.nx-proofs-pager__edge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    min-height: 2.35rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: rgba(248,250,252,0.92);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(148,163,184,0.22);
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.nx-proofs-pager__edge:hover{
    color: #fff;
    background: rgba(99,102,241,0.22);
    border-color: rgba(129,140,248,0.45);
    box-shadow: 0 0 0 1px rgba(129,140,248,0.12);
}
.nx-proofs-pager__edge--disabled{
    opacity: 0.38;
    pointer-events: none;
    cursor: not-allowed;
    background: rgba(0,0,0,0.12);
    border-color: rgba(148,163,184,0.1);
    color: rgba(226,232,240,0.45);
}
.nx-proofs-pager__edge .bi{
    font-size: 1rem;
    opacity: 0.95;
}
.nx-proofs-pager__edge-text{
    max-width: 3.2rem;
}
.nx-proofs-pager__nums{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    padding: 0 0.15rem;
}
.nx-proofs-pager__num{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.35rem;
    height: 2.35rem;
    padding: 0 0.5rem;
    border-radius: 9px;
    font-size: 0.84rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    text-decoration: none;
    color: rgba(226,232,240,0.88);
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(148,163,184,0.14);
    transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease, transform 0.12s ease;
}
.nx-proofs-pager__num:hover{
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-color: rgba(148,163,184,0.32);
    transform: translateY(-1px);
}
.nx-proofs-pager__num--active{
    color: #0f172a;
    background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%);
    border-color: rgba(74,222,128,0.65);
    box-shadow: 0 0 0 1px rgba(34,197,94,0.25), 0 6px 20px rgba(34,197,94,0.22);
    pointer-events: none;
    cursor: default;
}
.nx-proofs-pager__gap{
    display: inline-flex;
    align-items: center;
    padding: 0 0.15rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: rgba(226,232,240,0.38);
    user-select: none;
}
@media (max-width: 575.98px){
    .nx-proofs-pagination-bar{
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1rem 0.9rem;
    }
    .nx-proofs-pager{
        justify-content: center;
    }
    .nx-proofs-pager__edge-text{
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0,0,0,0);
        white-space: nowrap;
        border: 0;
    }
    .nx-proofs-pager__edge{
        min-width: 2.75rem;
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }
}
.nx-proofs-table{
    --bs-table-bg: transparent;
    --bs-table-color: rgba(255, 255, 255, 0.94);
    --bs-table-hover-bg: rgba(255,255,255,0.06);
    --bs-table-hover-color: rgba(255, 255, 255, 0.98);
    color: rgba(255, 255, 255, 0.94);
    font-weight: 650;
    font-size: 0.95rem;
}
.nx-proofs-table thead th{
    border-bottom: 1px solid rgba(148,163,184,0.22);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    padding: 0.85rem 1rem;
    white-space: nowrap;
}
.nx-proofs-table tbody td{
    border-color: rgba(148,163,184,0.12);
    padding: 0.8rem 1rem;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.94);
}
.nx-proofs-table .nx-proofs-user{
    font-weight: 750;
    color: rgba(255, 255, 255, 0.96);
}
.nx-proofs-table .nx-proofs-amt{
    font-weight: 800;
    color: #4ade80;
    text-shadow: 0 0 24px rgba(34, 197, 94, 0.35);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
@media (max-width: 767.98px){
    .nx-proofs-table thead th,
    .nx-proofs-table tbody td{
        padding: 0.65rem 0.65rem;
        font-size: 0.88rem;
    }
}
.nx-proofs-empty{
    text-align: center;
    padding: 2rem 1.25rem 2.1rem;
}
.nx-proofs-empty-ico{
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(148,163,184,0.2);
    background: rgba(255,255,255,0.04);
    font-size: 1.5rem;
    color: rgba(245,158,11,0.75);
}
.nx-proofs-empty-title{
    font-weight: 950;
    font-size: 1.2rem;
    color: rgba(226,232,240,0.95);
    margin-bottom: 0.45rem;
}
.nx-proofs-empty-desc{
    color: rgba(226,232,240,0.62);
    font-weight: 650;
    line-height: 1.6;
    max-width: 26rem;
    margin: 0 auto 1.1rem;
    font-size: 0.96rem;
}
.nx-proofs-empty-actions{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}
/* How it works — long-form */
.nx-hiw-toc{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin-top: 1.35rem;
    max-width: 52rem;
}
.nx-hiw-toc a{
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 750;
    color: rgba(226,232,240,0.85);
    text-decoration: none;
    border: 1px solid rgba(148,163,184,0.22);
    background: rgba(255,255,255,0.04);
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.nx-hiw-toc a:hover{
    color: rgba(226,232,240,0.98);
    background: rgba(255,255,255,0.07);
    border-color: rgba(245,158,11,0.35);
}
.nx-hiw-section{
    scroll-margin-top: 5.5rem;
    padding: 2.35rem 0;
}
.nx-hiw-section--tight{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.nx-hiw-prose .nx-p{
    max-width: 52rem;
}
.nx-hiw-split .nx-panel{
    height: 100%;
}
.nx-hiw-faq .nx-panel{
    margin-bottom: 0.75rem;
}
.nx-hiw-faq .nx-panel:last-child{
    margin-bottom: 0;
}
.nx-hiw-faq-q{
    font-weight: 900;
    color: rgba(226,232,240,0.95);
    margin: 0 0 0.45rem;
    font-size: 1rem;
}
.nx-hiw-faq-a{
    margin: 0;
    color: rgba(226,232,240,0.72);
    font-weight: 650;
    line-height: 1.62;
    font-size: 0.95rem;
}
@media (max-width: 575.98px){
    .nx-hiw-toc{
        gap: 0.4rem;
    }
    .nx-hiw-toc a{
        font-size: 0.82rem;
        padding: 0.35rem 0.6rem;
    }
}
@media (min-width: 992px){
    .nx-hiw-levels-bento{
        align-items: stretch;
    }
    .nx-hiw-levels-bento > article.nx-hiw-levels-col{
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    .nx-hiw-levels-bento .nx-bento-b.nx-hiw-levels-table{
        grid-row: 1 / 3;
        display: flex;
        flex-direction: column;
    }
    .nx-hiw-levels-bento .nx-bento-b.nx-hiw-levels-table .nx-levels-note{
        margin-top: auto;
    }
    .nx-hiw-levels-bento .nx-hiw-levels-col-body{
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* How it works — beginner-friendly refresh */
.nx-legal-hero.nx-hiw-hero{
    padding-bottom: 2.75rem;
}
.nx-hiw-hero .nx-lead.nx-hiw-hero__lead{
    max-width: 40rem;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.78);
    font-size: clamp(1.02rem, 0.4vw + 0.95rem, 1.12rem);
}
.nx-hiw-hero__bullets{
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-width: 44rem;
}
.nx-hiw-hero__bullets li{
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 650;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.82);
}
.nx-hiw-hero__bullets i{
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 1.1rem;
    color: rgba(96, 165, 250, 0.95);
}
.nx-hiw-keypoints{
    margin-top: 1.75rem;
}
.nx-hiw-kp{
    height: 100%;
    border-radius: var(--nx-radius);
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(165deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    padding: 1.1rem 1.15rem 1.15rem;
    box-shadow: 0 14px 40px rgba(0,0,0,0.22);
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.nx-hiw-kp:hover{
    border-color: rgba(245, 158, 11, 0.28);
    transform: translateY(-2px);
}
.nx-hiw-kp__ico{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
    font-size: 1.2rem;
    color: rgba(96, 165, 250, 0.98);
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.22);
}
.nx-hiw-kp__ico--amber{
    color: rgba(245, 158, 11, 0.98);
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.25);
}
.nx-hiw-kp__ico--green{
    color: rgba(34, 197, 94, 0.98);
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.22);
}
.nx-hiw-kp__title{
    font-weight: 950;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--nx-strong);
    margin-bottom: 0.35rem;
}
.nx-hiw-kp__text{
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(226, 232, 240, 0.68);
    font-weight: 600;
}
.nx-hiw-toc-label{
    margin: 1.75rem 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.85);
}
.nx-hiw-toc.nx-hiw-toc--grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0;
    max-width: none;
}
@media (min-width: 576px){
    .nx-hiw-toc.nx-hiw-toc--grid{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.nx-hiw-toc--grid .nx-hiw-toc__link{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.25;
    color: rgba(226, 232, 240, 0.88);
    text-decoration: none;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.45);
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
}
.nx-hiw-toc--grid .nx-hiw-toc__link i{
    font-size: 1.15rem;
    color: rgba(245, 158, 11, 0.85);
    opacity: 0.95;
}
.nx-hiw-toc--grid .nx-hiw-toc__link:hover{
    color: rgba(255, 255, 255, 0.98);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 158, 11, 0.35);
    transform: translateY(-1px);
}
.nx-hiw-section-kicker{
    display: block;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(96, 165, 250, 0.88);
    margin-bottom: 0.35rem;
}
.nx-section-head--center{
    text-align: center;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
.nx-section-head--center .nx-sub{
    margin-left: auto;
    margin-right: auto;
}
.nx-hiw-section--surface{
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(11, 16, 32, 0.2) 50%, transparent 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}
.nx-hiw-page .nx-hiw-section .nx-h2{
    letter-spacing: -0.02em;
}
.nx-hiw-page .nx-section-head .nx-sub{
    max-width: 38rem;
    line-height: 1.6;
}
.nx-timeline.nx-timeline--hiw{
    gap: 1.25rem;
}
.nx-step.nx-step--hiw{
    position: relative;
    padding-top: 1.15rem;
    padding-left: 1.15rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: linear-gradient(145deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 100%);
    overflow: hidden;
}
.nx-step--hiw::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.5), rgba(245, 158, 11, 0.45));
    opacity: 0.85;
}
.nx-step-ico{
    font-size: 1.35rem;
    color: rgba(245, 158, 11, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1;
}
.nx-step--hiw .nx-step-title{
    font-size: 1.05rem;
}
.nx-step--hiw .nx-step-desc{
    font-size: 0.94rem;
    line-height: 1.62;
}

/* FAQ accordion — dark theme */
.nx-hiw-accordion.accordion{
    --bs-accordion-border-color: rgba(148, 163, 184, 0.18);
    --bs-accordion-btn-focus-border-color: rgba(245, 158, 11, 0.35);
    --bs-accordion-active-bg: rgba(255, 255, 255, 0.06);
    --bs-accordion-btn-bg: rgba(15, 23, 42, 0.55);
    --bs-accordion-bg: rgba(11, 16, 32, 0.5);
    border-radius: var(--nx-radius);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
.nx-hiw-accordion .accordion-item{
    background: transparent;
    border-color: rgba(148, 163, 184, 0.14);
}
.nx-hiw-accordion .accordion-button{
    font-weight: 850;
    font-size: 0.98rem;
    color: rgba(226, 232, 240, 0.95);
    background: rgba(15, 23, 42, 0.4);
    padding: 1rem 1.15rem;
    box-shadow: none !important;
}
.nx-hiw-accordion .accordion-button:not(.collapsed){
    color: var(--nx-strong);
    background: rgba(255, 255, 255, 0.06);
}
.nx-hiw-accordion .accordion-button::after{
    filter: brightness(1.4) invert(0.85);
}
.nx-hiw-accordion .accordion-button:focus{
    box-shadow: none;
    border-color: rgba(245, 158, 11, 0.25);
}
.nx-hiw-accordion .accordion-body{
    padding: 0 1.15rem 1.1rem;
    color: rgba(226, 232, 240, 0.72);
    font-weight: 650;
    font-size: 0.95rem;
    line-height: 1.62;
    background: rgba(11, 16, 32, 0.35);
}
.nx-hiw-accordion .accordion-body strong{
    color: rgba(226, 232, 240, 0.92);
    font-weight: 800;
}
@media (max-width: 575.98px){
    .nx-hiw-toc.nx-hiw-toc--grid{
        grid-template-columns: 1fr;
    }
}

/* --- Full-width promotional banner (promotional.php) --- */
html:has(body.tm-promo-banner-page){
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}
body.tm-promo-banner-page{
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #0b1020;
}
.tm-promo-banner-link{
    display: block;
    width: 96%;
    max-width: 96%;
    margin: 0 auto;
    padding: 0;
    line-height: 0;
    cursor: pointer;
    text-decoration: none;
}
.tm-promo-banner-link:focus-visible{
    outline: 3px solid rgba(245, 158, 11, 0.85);
    outline-offset: -3px;
}
.tm-promo-banner-picture{
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}
.tm-promo-banner-img{
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
}
@media (max-width: 767.98px){
    .tm-promo-banner-link{
        width: 100%;
        max-width: 100%;
    }
}

/* --- Standalone promo page (promo_cards.php) — not linked from site nav --- */
.tm-promo-standalone{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.tm-promo-head{
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(11, 16, 32, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.tm-promo-head__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
}
.tm-promo-logo img{
    height: 34px;
    width: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
}
.tm-promo-head__cta{
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 850;
    text-decoration: none;
    color: #0f172a;
    background: linear-gradient(180deg, rgba(253, 224, 71, 0.98) 0%, rgba(245, 158, 11, 0.95) 100%);
    border: 1px solid rgba(245, 158, 11, 0.45);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tm-promo-head__cta:hover{
    color: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.3);
}
.tm-promo-main{
    flex: 1;
    padding-top: 0;
}
.tm-promo-hero{
    position: relative;
    padding: 2.5rem 0 2rem;
    overflow: hidden;
}
.tm-promo-hero__bg{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(520px 280px at 50% -10%, rgba(245, 158, 11, 0.2) 0%, transparent 60%),
        radial-gradient(480px 320px at 0% 40%, rgba(37, 99, 235, 0.12) 0%, transparent 55%),
        radial-gradient(480px 320px at 100% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.tm-promo-hero__eyebrow{
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(96, 165, 250, 0.9);
    margin-bottom: 0.65rem;
}
.tm-promo-hero__title{
    font-size: clamp(1.75rem, 1.2vw + 1.4rem, 2.45rem);
    font-weight: 950;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.98);
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}
.tm-promo-hero__title span{
    background: linear-gradient(90deg, rgba(253, 224, 71, 0.98), rgba(245, 158, 11, 0.92));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tm-promo-hero__btn{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 14px;
    font-size: 1.02rem;
    font-weight: 900;
    text-decoration: none;
    color: #0f172a;
    background: linear-gradient(135deg, rgba(253, 224, 71, 0.98) 0%, rgba(245, 158, 11, 0.92) 100%);
    border: 1px solid rgba(245, 158, 11, 0.5);
    box-shadow: 0 16px 40px rgba(245, 158, 11, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tm-promo-hero__btn:hover{
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(245, 158, 11, 0.32);
}
.tm-promo-tiers{
    padding: 1rem 0 2.5rem;
}
.tm-promo-tier-grid{
    margin-top: 0.5rem;
}
.tm-promo-tier{
    height: 100%;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(148, 163, 184, 0.35), rgba(245, 158, 11, 0.15));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tm-promo-tier:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}
.tm-promo-tier--tone-1{ background: linear-gradient(145deg, rgba(96, 165, 250, 0.55), rgba(37, 99, 235, 0.25)); }
.tm-promo-tier--tone-2{ background: linear-gradient(145deg, rgba(34, 197, 94, 0.45), rgba(16, 185, 129, 0.2)); }
.tm-promo-tier--tone-3{ background: linear-gradient(145deg, rgba(245, 158, 11, 0.55), rgba(217, 119, 6, 0.28)); }
.tm-promo-tier--tone-4{ background: linear-gradient(145deg, rgba(99, 102, 241, 0.5), rgba(139, 92, 246, 0.22)); }
.tm-promo-tier--tone-5{ background: linear-gradient(145deg, rgba(236, 72, 153, 0.35), rgba(245, 158, 11, 0.2)); }
.tm-promo-tier--tone-6{ background: linear-gradient(145deg, rgba(45, 212, 191, 0.4), rgba(37, 99, 235, 0.2)); }
.tm-promo-tier__inner{
    height: 100%;
    border-radius: 15px;
    padding: 0.85rem 0.75rem 0.8rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(11, 16, 32, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}
.tm-promo-tier__price{
    font-size: clamp(1.35rem, 2.2vw + 0.85rem, 1.75rem);
    font-weight: 950;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.55rem;
    color: #fff;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 2px 18px rgba(245, 158, 11, 0.12);
}
.tm-promo-tier__line{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    margin: 0.2rem 0;
    font-size: 0.72rem;
    font-weight: 650;
    color: rgba(226, 232, 240, 0.62);
}
.tm-promo-tier__line i{
    color: rgba(245, 158, 11, 0.9);
    font-size: 0.85rem;
}
.tm-promo-tier__btn{
    display: block;
    width: 100%;
    margin-top: 0.65rem;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-align: center;
    color: #0f172a;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 249, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transition: background 0.18s ease, transform 0.18s ease;
}
.tm-promo-tier__btn:hover{
    color: #0f172a;
    background: linear-gradient(180deg, rgba(253, 224, 71, 0.98) 0%, rgba(245, 158, 11, 0.88) 100%);
    transform: scale(1.02);
}
.tm-promo-after-tiers{
    margin: 1.75rem auto 0;
}
.tm-promo-after-tiers .tm-promo-hero__btn{
    margin-top: 0;
}
.tm-promo-foot{
    padding: 1.25rem 0 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    margin-top: auto;
}
.tm-promo-foot__text{
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.65);
    text-align: center;
}
@media (max-width: 575.98px){
    .tm-promo-head{
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(11, 16, 32, 0.97);
    }
}

/* --- Promotion page (split hero + preview panel) --- */
.nx-promo-page .nx-footer{
    margin-top: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.nx-promo-hero{
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.75rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 992px){
    .nx-promo-hero{
        min-height: min(88vh, 920px);
    }
}

.nx-promo-hero__mesh{
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 55% at 20% -10%, rgba(99, 102, 241, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 95% 15%, rgba(245, 158, 11, 0.22) 0%, transparent 52%),
        radial-gradient(ellipse 60% 45% at 50% 100%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
        linear-gradient(165deg, #060a14 0%, #0b1020 38%, #0a0f1c 100%);
    pointer-events: none;
}

.nx-promo-hero__grid{
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
    opacity: 0.85;
}

.nx-promo-hero__beam{
    position: absolute;
    z-index: 0;
    width: 140%;
    height: 1px;
    left: -20%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.35), rgba(96, 165, 250, 0.25), transparent);
    pointer-events: none;
    opacity: 0.65;
}
.nx-promo-hero__beam--1{ top: 28%; transform: rotate(-8deg); }
.nx-promo-hero__beam--2{ top: 62%; transform: rotate(5deg); opacity: 0.35; }

.nx-promo-hero__inner{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3.25rem);
    align-items: center;
}

@media (min-width: 992px){
    .nx-promo-hero__inner{
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(2.5rem, 4vw, 4rem);
    }
}

.nx-promo-copy{
    text-align: center;
}
@media (min-width: 992px){
    .nx-promo-copy{
        text-align: left;
    }
}

.nx-promo-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.1rem;
    padding: 0.35rem 0.9rem 0.35rem 0.55rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.88);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.2);
}
.nx-promo-eyebrow__dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.85);
    flex-shrink: 0;
}

.nx-promo-title{
    margin: 0 0 1.1rem;
    font-size: clamp(2.4rem, 5.5vw + 1rem, 3.85rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.02;
    color: var(--nx-strong);
}
.nx-promo-title__line{
    display: block;
}
.nx-promo-title__sub{
    display: block;
    margin-top: 0.06em;
    font-weight: 800;
    color: rgba(226, 232, 240, 0.55);
    font-style: normal;
    font-size: 0.92em;
}
.nx-promo-title__em{
    font-style: normal;
    background: linear-gradient(105deg, #fde68a 0%, #f59e0b 45%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nx-promo-lead{
    margin: 0 auto 1.65rem;
    max-width: 32rem;
    font-size: clamp(1.02rem, 0.35vw + 0.98rem, 1.14rem);
    line-height: 1.68;
    font-weight: 600;
    color: rgba(203, 213, 225, 0.88);
}
@media (min-width: 992px){
    .nx-promo-lead{
        margin-left: 0;
        margin-right: 0;
    }
}
.nx-promo-lead strong{
    color: rgba(255, 255, 255, 0.96);
    font-weight: 800;
}

.nx-promo-earn-range{
    margin: 0 auto 1.5rem;
    max-width: 36rem;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.92rem;
    font-weight: 650;
    line-height: 1.62;
    color: rgba(203, 213, 225, 0.88);
    text-align: left;
}
@media (min-width: 992px){
    .nx-promo-earn-range{
        margin-left: 0;
        margin-right: 0;
    }
}
.nx-promo-earn-range__title{
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 158, 11, 0.92);
}
.nx-promo-earn-range strong{
    color: rgba(255, 255, 255, 0.96);
    font-weight: 800;
}

.nx-promo-actions{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}
@media (min-width: 992px){
    .nx-promo-actions{
        justify-content: flex-start;
    }
}

.nx-promo-actions__primary{
    padding: 0.88rem 1.5rem;
    font-size: 1.02rem;
    font-weight: 900;
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(245, 158, 11, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nx-promo-actions__primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(245, 158, 11, 0.3);
    color: #0b1020;
}

.nx-promo-actions__ghost{
    border-radius: 14px;
    font-weight: 800;
    border-color: rgba(148, 163, 184, 0.32);
    color: rgba(226, 232, 240, 0.9);
}
.nx-promo-actions__ghost:hover{
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(226, 232, 240, 0.22);
    color: var(--nx-strong);
}

.nx-promo-disclaimer{
    margin: 0 auto;
    max-width: 28rem;
    font-size: 0.8rem;
    line-height: 1.55;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.72);
}
@media (min-width: 992px){
    .nx-promo-disclaimer{
        margin-left: 0;
    }
}
.nx-promo-disclaimer a{
    color: rgba(245, 158, 11, 0.92);
    font-weight: 800;
    text-decoration: none;
}
.nx-promo-disclaimer a:hover{
    text-decoration: underline;
}

/* Glass “dashboard” preview */
.nx-promo-visual{
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 420px;
}
@media (min-width: 992px){
    .nx-promo-visual{
        justify-self: end;
    }
}

.nx-promo-visual__frame{
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.07) 0%, rgba(15, 23, 42, 0.55) 45%, rgba(11, 16, 32, 0.75) 100%);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
}

.nx-promo-visual__header{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(0, 0, 0, 0.2);
}
.nx-promo-visual__dots{
    display: inline-flex;
    gap: 6px;
}
.nx-promo-visual__dots i{
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.35);
}
.nx-promo-visual__dots i:first-child{ background: #fb7185; }
.nx-promo-visual__dots i:nth-child(2){ background: #fbbf24; }
.nx-promo-visual__dots i:nth-child(3){ background: #34d399; }
.nx-promo-visual__title{
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.75);
}

.nx-promo-visual__body{
    padding: 1.15rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nx-promo-stat{
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.22);
}
.nx-promo-stat--alt{
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
}
.nx-promo-stat__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}
.nx-promo-stat__top .nx-promo-stat__label{
    margin-bottom: 0;
}
.nx-promo-stat__label{
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.75);
    margin-bottom: 0.35rem;
}
.nx-promo-stat__live{
    flex-shrink: 0;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    color: #6ee7b7;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.35);
}
.nx-promo-stat__value{
    display: block;
    margin-top: 0.15rem;
    font-size: 1.72rem;
    font-weight: 950;
    letter-spacing: -0.03em;
    color: rgba(52, 211, 153, 0.96);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}
.nx-promo-stat__delta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin: 0.4rem 0 0;
    font-size: 0.8rem;
    font-weight: 750;
    color: rgba(110, 231, 183, 0.92);
}
.nx-promo-stat__delta i{
    font-size: 0.88rem;
    opacity: 0.95;
}
.nx-promo-stat__delta-note{
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.65);
}
.nx-promo-stat__min{
    margin: 0.45rem 0 0;
    font-size: 0.78rem;
    font-weight: 650;
    color: rgba(203, 213, 225, 0.78);
}
.nx-promo-stat__min strong{
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
}
.nx-promo-stat__bar{
    margin-top: 0.65rem;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}
.nx-promo-stat__fill{
    display: block;
    height: 100%;
    width: 42%;
    min-width: 8%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(52, 211, 153, 0.45), #34d399);
}
.nx-promo-stat__steps-cap{
    margin: 0.4rem 0 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(165, 180, 252, 0.72);
}
.nx-promo-stat__bar--steps{
    display: flex;
    gap: 6px;
    height: auto;
    background: transparent;
    margin-top: 0.55rem;
}
.nx-promo-stat__bar--steps span{
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}
.nx-promo-stat__bar--steps span.is-done{
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.45), rgba(52, 211, 153, 0.85));
}
.nx-promo-stat__bar--steps span.is-active{
    background: linear-gradient(90deg, #818cf8, #6366f1);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.45);
}

.nx-promo-level-mini{
    margin-top: 0.65rem;
}
.nx-promo-level-mini__head{
    margin-bottom: 0.35rem;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(165, 180, 252, 0.78);
}
.nx-promo-level-mini__table{
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    max-height: 10.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.nx-promo-level-mini__row{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.34rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 750;
    color: rgba(226, 232, 240, 0.88);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.nx-promo-level-mini__row:first-child{
    border-top: none;
}
.nx-promo-level-mini__row--hdr{
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgba(15, 23, 42, 0.96);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nx-promo-level-mini__row--hdr span:last-child{
    color: rgba(148, 163, 184, 0.72);
    font-variant-numeric: tabular-nums;
}
.nx-promo-level-mini__row span:last-child{
    font-variant-numeric: tabular-nums;
    font-weight: 850;
    color: rgba(110, 231, 183, 0.94);
}
.nx-promo-level-mini__row--current{
    background: rgba(99, 102, 241, 0.2);
    box-shadow: inset 3px 0 0 0 rgba(129, 140, 248, 0.95);
}
.nx-promo-level-mini__row--current span:last-child{
    color: rgba(167, 243, 208, 0.98);
}
.nx-promo-level-mini__note{
    margin: 0.38rem 0 0;
    font-size: 0.6rem;
    font-weight: 650;
    line-height: 1.45;
    color: rgba(148, 163, 184, 0.62);
}
.nx-promo-stat--alt .nx-promo-stat__steps-cap{
    margin-top: 0.5rem;
}

.nx-promo-chip-row{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.nx-promo-chip{
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 750;
    color: rgba(226, 232, 240, 0.82);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.14);
}
.nx-promo-chip i{ font-size: 0.95rem; opacity: 0.9; }
.nx-promo-chip strong{
    font-weight: 950;
    color: rgba(255, 255, 255, 0.96);
}
.nx-promo-chip__meta{
    margin-left: 0.1rem;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.72);
}
.nx-promo-chip--accent .nx-promo-chip__meta{
    color: rgba(253, 224, 71, 0.78);
}
.nx-promo-chip--accent{
    border-color: rgba(245, 158, 11, 0.35);
    background: rgba(245, 158, 11, 0.1);
    color: rgba(253, 224, 71, 0.95);
}

.nx-promo-visual__badge{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.65rem 1rem;
    border-radius: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(203, 213, 225, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.03);
}
.nx-promo-visual__badge i{
    color: rgba(52, 211, 153, 0.95);
    font-size: 1.1rem;
}

@media (max-width: 991.98px){
    .nx-promo-visual__frame{
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* Feature strip */
.nx-promo-strip{
    position: relative;
    z-index: 1;
    padding: 2rem 0 2.75rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.65) 0%, rgba(11, 16, 32, 0.98) 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}
.nx-promo-strip__list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px){
    .nx-promo-strip__list{
        grid-template-columns: repeat(3, 1fr);
        gap: 1.15rem;
    }
}
.nx-promo-strip__item{
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1.05rem 1.1rem;
    border-radius: var(--nx-radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.nx-promo-strip__item:hover{
    border-color: rgba(148, 163, 184, 0.26);
    background: rgba(255, 255, 255, 0.045);
}
.nx-promo-strip__icon{
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.2rem;
    color: rgba(245, 158, 11, 0.95);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.22);
}
.nx-promo-strip__icon--indigo{
    color: rgba(165, 180, 252, 0.98);
    background: rgba(99, 102, 241, 0.14);
    border-color: rgba(99, 102, 241, 0.28);
}
.nx-promo-strip__icon--teal{
    color: rgba(94, 234, 212, 0.95);
    background: rgba(45, 212, 191, 0.1);
    border-color: rgba(45, 212, 191, 0.22);
}
.nx-promo-strip__text{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}
.nx-promo-strip__text strong{
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--nx-strong);
}
.nx-promo-strip__text span{
    font-size: 0.88rem;
    line-height: 1.55;
    font-weight: 650;
    color: rgba(203, 213, 225, 0.72);
}

@media (prefers-reduced-motion: reduce){
    .nx-promo-actions__primary,
    .nx-promo-actions__primary:hover{
        transition: none;
        transform: none;
    }
}

/* 404 page */
.nx-404-page .nx-main{
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 3rem;
}
.nx-404-panel{
    width: 100%;
    max-width: 32rem;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3rem);
    text-align: center;
    border-radius: var(--nx-radius-lg);
    border: 1px solid var(--nx-border);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.92) 0%, rgba(11, 16, 32, 0.98) 100%);
    box-shadow: var(--nx-shadow);
}
.nx-404-code{
    margin: 0 0 0.5rem;
    font-size: clamp(4rem, 12vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    background: linear-gradient(105deg, #fde68a 0%, #f59e0b 45%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nx-404-title{
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 900;
    color: var(--nx-strong);
    letter-spacing: -0.02em;
}
.nx-404-lead{
    margin: 0 auto 1.75rem;
    max-width: 26rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.65;
    color: var(--nx-muted);
}
.nx-404-actions{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* Back page (back.php) — comeback splash */
.nx-back-page{
    min-height: 100vh;
    overflow-x: hidden;
}
.nx-back-bg{
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.nx-back-bg__mesh{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 85% 60% at 50% -5%, rgba(99, 102, 241, 0.42) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 40%, rgba(245, 158, 11, 0.28) 0%, transparent 52%),
        radial-gradient(ellipse 55% 45% at 0% 80%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        linear-gradient(165deg, #060a14 0%, #0b1020 42%, #0a0f1c 100%);
}
.nx-back-bg__grid{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 75% at 50% 45%, #000 15%, transparent 72%);
    opacity: 0.9;
}
.nx-back-bg__glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}
.nx-back-bg__glow--1{
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(245, 158, 11, 0.35);
}
.nx-back-bg__glow--2{
    width: min(320px, 45vw);
    height: min(320px, 45vw);
    bottom: 12%;
    right: 8%;
    background: rgba(96, 165, 250, 0.25);
}
.nx-back{
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(2rem, 6vw, 4rem) 1.25rem clamp(4rem, 8vw, 5rem);
}
.nx-back__logo-link{
    display: block;
    margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
    line-height: 0;
    transition: transform 0.25s ease, filter 0.25s ease;
    position: relative;
    z-index: 1;
}
.nx-back__logo-link:hover{
    transform: scale(1.04);
    filter: drop-shadow(0 24px 48px rgba(245, 158, 11, 0.3));
}
.nx-back__logo{
    width: min(300px, 78vw);
    height: auto;
    max-height: min(300px, 42vh);
    object-fit: contain;
    filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.5));
}
.nx-back__title{
    margin: 0 0 2rem;
    max-width: 20ch;
}
.nx-back__brand{
    display: block;
    font-size: clamp(2.1rem, 6.5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--nx-strong);
}
.nx-back__tagline{
    display: block;
    margin-top: 0.1em;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: rgba(226, 232, 240, 0.55);
    font-style: normal;
}
.nx-back__tagline em{
    font-style: normal;
    background: linear-gradient(105deg, #fde68a 0%, #f59e0b 48%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nx-back__cta{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.nx-back__btn{
    position: relative;
    z-index: 3;
    padding: 1.05rem 2.5rem;
    font-size: clamp(1.08rem, 2.8vw, 1.25rem);
    font-weight: 900;
    border-radius: 16px;
    min-width: min(100%, 300px);
    text-transform: capitalize;
    box-shadow: 0 18px 52px rgba(245, 158, 11, 0.38);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.nx-back__btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(245, 158, 11, 0.45);
    color: #0b1020;
}
.nx-back__login{
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--nx-muted);
    text-decoration: none;
}
.nx-back__login:hover{
    color: var(--nx-strong);
}
.nx-back-foot{
    position: relative;
    z-index: 1;
    padding: 0 1rem 1.25rem;
    text-align: center;
}
.nx-back-foot p{
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.6);
}
.nx-back-earn{
    width: 100%;
    max-width: 28rem;
    margin-top: 1.75rem;
    padding: 1.15rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}
.nx-back-earn__head{
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 158, 11, 0.92);
}
.nx-back-earn__stats{
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}
.nx-back-earn__stat{
    flex: 1 1 7.5rem;
    min-width: 0;
    padding: 0.65rem 0.5rem;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.12);
}
.nx-back-earn__stat--highlight{
    border-color: rgba(245, 158, 11, 0.35);
    background: linear-gradient(165deg, rgba(245, 158, 11, 0.12) 0%, rgba(15, 23, 42, 0.6) 100%);
}
.nx-back-earn__val{
    display: block;
    font-size: clamp(1.05rem, 3vw, 1.25rem);
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    color: var(--nx-strong);
    line-height: 1.15;
}
.nx-back-earn__stat--highlight .nx-back-earn__val{
    color: #fbbf24;
}
.nx-back-earn__lbl{
    display: block;
    margin-top: 0.2rem;
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.35;
    color: var(--nx-muted);
}
.nx-back-earn__note{
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(148, 163, 184, 0.75);
}
@media (max-width: 575.98px){
    .nx-back-earn__stat{
        flex: 1 1 100%;
    }
}
@media (prefers-reduced-motion: reduce){
    .nx-back__logo-link:hover,
    .nx-back__btn:hover{
        transform: none;
    }
}
