@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --np-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --np-forest-deep: #071912;
    --np-forest-night: #0c2419;
    --np-forest-canopy: #134e3a;
    --np-brand: #10b981;
    --np-brand-light: #34d399;
    --np-brand-mist: #a7f3d0;
    --np-accent-red: #f42a41;
    --np-paper: #fafcfa;
    --np-ink: #0f172a;
    --np-header: #005b3a;
    --np-header-deep: #003d29;
    --np-header-mid: #064e3b;
    --np-heading: #06452f;
    --np-heading-dark: #053c2b;
    --np-body: #374151;
    --np-body-muted: #4b5563;
    --np-green-primary: #047857;
    --np-green-bright: #059669;
    --np-green-accent: #10b981;
    --np-green-soft: #dff5e7;
    --np-green-mist: #ecfdf5;
    --np-green-wash: #f2faf5;
}

html {
    scroll-behavior: smooth;
}

body.np-marketing {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Page load */
.np-page-enter {
    animation: np-fade-in 0.8s var(--np-ease) both;
}

@keyframes np-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes np-fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes np-fade-down {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes np-scale-in {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes np-float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-18px) translateX(8px); }
}

@keyframes np-float-reverse {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(14px) translateX(-10px); }
}

@keyframes np-pulse-glow {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.05); }
}

@keyframes np-shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes np-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Scroll reveal — hidden only after JS boots */
.np-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s var(--np-ease), transform 0.7s var(--np-ease);
}

html.np-js .np-reveal:not(.np-visible) {
    opacity: 0;
    transform: translateY(32px);
}

.np-reveal.np-visible {
    opacity: 1;
    transform: translateY(0);
}

.np-reveal-delay-1 { transition-delay: 0.1s; }
.np-reveal-delay-2 { transition-delay: 0.2s; }
.np-reveal-delay-3 { transition-delay: 0.3s; }
.np-reveal-delay-4 { transition-delay: 0.4s; }
.np-reveal-delay-5 { transition-delay: 0.5s; }

/* Hero entrance (runs on load) */
.np-hero-badge {
    animation: np-fade-up 0.7s var(--np-ease) 0.1s both;
}

.np-hero-title {
    animation: np-fade-up 0.8s var(--np-ease) 0.2s both;
}

.np-hero-sub {
    animation: np-fade-up 0.8s var(--np-ease) 0.35s both;
}

.np-hero-cta {
    animation: np-fade-up 0.8s var(--np-ease) 0.5s both;
}

.np-hero-stats > *:nth-child(1) { animation: np-scale-in 0.7s var(--np-ease) 0.55s both; }
.np-hero-stats > *:nth-child(2) { animation: np-scale-in 0.7s var(--np-ease) 0.65s both; }
.np-hero-stats > *:nth-child(3) { animation: np-scale-in 0.7s var(--np-ease) 0.75s both; }

/* Animated background orbs */
.np-orb {
    animation: np-float 8s ease-in-out infinite;
}

.np-orb-alt {
    animation: np-float-reverse 10s ease-in-out infinite;
}

.np-orb-pulse {
    animation: np-pulse-glow 6s ease-in-out infinite;
}

/* Gradient text */
.np-gradient-text {
    background: linear-gradient(135deg, #fff 0%, #a7f3d0 40%, #6ee7b7 60%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: np-shimmer 6s linear infinite;
}

/* Buttons */
.np-btn-primary {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s var(--np-ease), box-shadow 0.25s var(--np-ease);
}

.np-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--np-ease);
}

.np-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px -12px rgba(16, 185, 129, 0.45);
}

.np-btn-primary:hover::after {
    transform: translateX(100%);
}

.np-btn-ghost {
    transition: transform 0.25s var(--np-ease), background 0.25s, border-color 0.25s;
}

.np-btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Cards */
.np-card {
    transition: transform 0.35s var(--np-ease), box-shadow 0.35s var(--np-ease), border-color 0.35s;
}

.np-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 24px 48px -16px rgba(16, 185, 129, 0.22);
}

.np-card-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -16px rgba(15, 23, 42, 0.12);
}

/* Feature icon pulse */
.np-icon-ring {
    position: relative;
}

.np-icon-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgba(16, 185, 129, 0.3);
    animation: np-pulse-glow 3s ease-in-out infinite;
}

/* Courier pills */
.np-pill {
    transition: transform 0.3s var(--np-ease), background 0.3s, border-color 0.3s;
}

.np-pill:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(52, 211, 153, 0.45);
}

/* Header scroll */
.np-header {
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.np-header.np-scrolled {
    background: rgba(7, 25, 18, 0.92);
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.4);
}

.np-header-light.np-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px -8px rgba(15, 23, 42, 0.08);
}

/* Nav links */
.np-nav-link {
    position: relative;
    transition: color 0.2s;
}

.np-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--np-brand-light);
    transition: width 0.3s var(--np-ease);
}

.np-nav-link:hover::after {
    width: 100%;
}

/* Counter */
.np-counter {
    font-variant-numeric: tabular-nums;
}

/* Register / app shell */
.np-form-card {
    animation: np-scale-in 0.6s var(--np-ease) both;
}

.np-input {
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.np-input:focus {
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

/* ── Home page — reference-matched light premium layout ── */
body.np-home {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    background: #fff;
    color: var(--np-body);
}

.np-home-container {
    width: 100%;
    max-width: 87.5rem;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 5rem);
}

.np-home-header {
    background: linear-gradient(180deg, var(--np-header) 0%, var(--np-header-mid) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    animation: np-fade-down 0.65s var(--np-ease) both;
}

.np-home-header.np-scrolled {
    background: linear-gradient(180deg, var(--np-header-deep) 0%, var(--np-header) 100%);
    box-shadow: 0 10px 40px -12px rgba(0, 61, 41, 0.55);
}

.np-home-header-inner {
    max-width: 87.5rem;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 5rem);
    min-height: 4.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.np-home-brand {
    justify-self: start;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.np-home-nav-center {
    justify-self: center;
}

.np-home-header-actions {
    justify-self: end;
}

.np-home-nav-link {
    position: relative;
    padding-block: 0.35rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.25s var(--np-ease), transform 0.25s var(--np-ease);
}

.np-home-nav-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.np-home-nav-link.np-active {
    color: #fff;
}

.np-home-nav-link.np-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.15rem;
    height: 2px;
    border-radius: 9999px;
    background: var(--np-accent-red);
}

.np-home-btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.25rem;
    border-radius: 0.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    transition: transform 0.25s var(--np-ease), border-color 0.25s, background 0.25s;
}

.np-home-btn-login:hover {
    transform: translateY(-1px);
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.np-home-btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.35rem;
    border-radius: 0.5rem;
    background: var(--np-accent-red);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 16px -4px rgba(244, 42, 65, 0.55);
    transition: transform 0.25s var(--np-ease), box-shadow 0.25s, background 0.25s;
}

.np-home-btn-red:hover {
    transform: translateY(-1px);
    background: #ef3340;
    box-shadow: 0 8px 22px -6px rgba(244, 42, 65, 0.6);
}

.np-home-menu-btn {
    justify-self: end;
    grid-column: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.5rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.np-home-mobile-nav {
    background: var(--np-header-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.np-home-mobile-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.np-home-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(3.5rem, 7vw, 6.5rem);
    background: linear-gradient(180deg, #fff 0%, var(--np-green-wash) 100%);
}

.np-home-hero-bg {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 88% 45%, rgba(16, 185, 129, 0.16) 0%, transparent 62%),
        radial-gradient(ellipse 40% 50% at 75% 85%, rgba(4, 120, 87, 0.1) 0%, transparent 55%),
        linear-gradient(105deg, transparent 42%, rgba(223, 245, 231, 0.55) 72%, rgba(236, 253, 245, 0.35) 100%);
    animation: np-home-bg-drift 20s ease-in-out infinite;
}

.np-home-hero-bg::after {
    content: '';
    position: absolute;
    right: 8%;
    top: 18%;
    width: 18rem;
    height: 18rem;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 68%);
    filter: blur(8px);
    animation: np-home-bg-orb 14s ease-in-out infinite;
}

.np-home-hero-bg::before {
    content: '';
    position: absolute;
    right: -2%;
    bottom: 8%;
    width: min(52%, 34rem);
    height: 55%;
    opacity: 0.14;
    background:
        linear-gradient(to top, rgba(4, 120, 87, 0.35) 0%, transparent 55%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cpath fill='%23047557' d='M0 180 Q80 120 160 150 T320 130 T400 160 L400 200 L0 200Z'/%3E%3Cpath fill='%23059669' opacity='.5' d='M0 190 Q100 150 200 170 T400 175 L400 200 L0 200Z'/%3E%3C/svg%3E") center bottom / cover no-repeat;
    mask-image: linear-gradient(to left, black 20%, transparent 95%);
}

.np-home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}

@media (min-width: 1024px) {
    .np-home-hero-grid {
        grid-template-columns: 0.45fr 0.55fr;
    }
}

.np-home-hero-title {
    max-width: 14.5em;
    font-size: clamp(1.875rem, 2.65vw, 3.125rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--np-heading);
}

.np-home-hero-sub {
    margin-top: 1.35rem;
    max-width: 34rem;
    font-size: clamp(1rem, 1.35vw, 1.125rem);
    line-height: 1.65;
    color: var(--np-body-muted);
}

.np-home-hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.np-home-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 0.5625rem;
    background: linear-gradient(135deg, var(--np-green-primary) 0%, var(--np-green-bright) 55%, var(--np-green-accent) 100%);
    background-size: 180% 180%;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: 0 10px 28px -10px rgba(4, 120, 87, 0.45);
    transition: transform 0.25s var(--np-ease), box-shadow 0.25s, background-position 0.45s var(--np-ease);
}

.np-home-btn-primary svg {
    transition: transform 0.25s var(--np-ease);
}

.np-home-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -12px rgba(4, 120, 87, 0.5);
    background-position: 100% 50%;
}

.np-home-btn-primary:hover svg {
    transform: translateX(4px);
}

.np-home-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.85rem 1.35rem;
    border-radius: 0.5625rem;
    border: 1.5px solid rgba(4, 120, 87, 0.35);
    background: #fff;
    color: var(--np-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: transform 0.25s var(--np-ease), border-color 0.25s, box-shadow 0.25s;
}

.np-home-btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--np-green-accent);
    box-shadow: 0 8px 24px -12px rgba(16, 185, 129, 0.22);
}

.np-home-play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.75rem;
    width: 1.75rem;
    border-radius: 9999px;
    background: var(--np-green-mist);
    color: var(--np-green-bright);
    transition: transform 0.25s var(--np-ease), background 0.25s;
}

.np-home-btn-outline:hover .np-home-play-icon {
    transform: scale(1.08);
    background: var(--np-green-soft);
}

.np-home-trust-grid {
    margin-top: 2.25rem;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .np-home-trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

.np-home-trust-block {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.np-home-trust-icon-wrap {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    width: 2rem;
    border-radius: 9999px;
    background: var(--np-green-mist);
    color: var(--np-green-bright);
}

.np-home-trust-icon-wrap.is-red {
    background: rgba(244, 42, 65, 0.1);
    color: var(--np-accent-red);
}

.np-home-trust-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--np-heading);
    line-height: 1.3;
}

.np-home-trust-sub {
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: var(--np-body-muted);
    line-height: 1.4;
}

.np-home-hero-visual {
    position: relative;
}

.np-home-hero-visual::before {
    content: '';
    position: absolute;
    inset: 8% 0 4% 10%;
    border-radius: 2rem;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.22) 0%, transparent 72%);
    filter: blur(28px);
    z-index: 0;
    animation: np-home-glow-pulse 6s ease-in-out infinite;
}

.np-home-hero-visual .np-home-dashboard {
    position: relative;
    z-index: 1;
}

.np-home-dashboard {
    display: flex;
    min-height: 22rem;
    overflow: hidden;
    border-radius: 1.375rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #fff;
    box-shadow:
        0 28px 70px -24px rgba(5, 60, 43, 0.22),
        0 12px 32px -16px rgba(15, 23, 42, 0.12);
    animation:
        np-home-preview-in 1s var(--np-ease) 0.25s both,
        np-home-dashboard-float 8s ease-in-out 1.35s infinite;
    transition: box-shadow 0.4s var(--np-ease), transform 0.4s var(--np-ease);
}

.np-home-dashboard:hover {
    box-shadow:
        0 34px 80px -22px rgba(5, 60, 43, 0.28),
        0 16px 40px -18px rgba(15, 23, 42, 0.14);
}

.np-home-dashboard-sidebar {
    display: none;
    width: 11.5rem;
    flex-shrink: 0;
    padding: 1.25rem 0.875rem;
    background: linear-gradient(180deg, var(--np-header) 0%, var(--np-header-deep) 100%);
}

@media (min-width: 640px) {
    .np-home-dashboard-sidebar {
        display: flex;
        flex-direction: column;
    }
}

.np-home-dashboard-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-inline: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
}

.np-home-dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.np-home-dashboard-nav-item {
    padding: 0.55rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

.np-home-dashboard-nav-item.is-active {
    background: rgba(16, 185, 129, 0.22);
    color: #fff;
}

.np-home-dashboard-main {
    flex: 1;
    padding: 1.25rem 1.25rem 1.5rem;
    background: #fafcfa;
}

@media (min-width: 640px) {
    .np-home-dashboard-main {
        padding: 1.5rem 1.75rem 1.75rem;
    }
}

.np-home-dashboard-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.np-home-dashboard-kicker {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--np-green-bright);
}

.np-home-dashboard-title {
    margin-top: 0.2rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--np-heading);
}

.np-home-dashboard-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.np-home-dashboard-bell {
    position: relative;
    display: inline-flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.np-home-dashboard-bell::before {
    content: '';
    width: 0.875rem;
    height: 0.875rem;
    border: 1.5px solid var(--np-body-muted);
    border-radius: 0.125rem 0.125rem 0.25rem 0.25rem;
    border-top: none;
}

.np-home-dashboard-bell-dot {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    height: 0.375rem;
    width: 0.375rem;
    border-radius: 9999px;
    background: var(--np-accent-red);
}

.np-home-dashboard-avatar {
    display: inline-flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--np-green-bright), var(--np-green-accent));
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
}

.np-home-dashboard-grid {
    display: grid;
    gap: 0.875rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.np-home-dashboard-panel {
    padding: 1rem 1.1rem;
    border-radius: 0.875rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    opacity: 0;
    animation: np-fade-up 0.55s var(--np-ease) both;
    transition: transform 0.35s var(--np-ease), box-shadow 0.35s, border-color 0.35s;
}

.np-home-dashboard-panel-large {
    animation-delay: 0.55s;
}

.np-home-dashboard-panel-chart {
    animation-delay: 0.7s;
}

.np-home-dashboard-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.28);
    box-shadow: 0 8px 20px -12px rgba(16, 185, 129, 0.12);
}

.np-home-dashboard-panel-large {
    grid-column: 1 / -1;
}

@media (min-width: 640px) {
    .np-home-dashboard-panel-large {
        grid-column: span 1;
    }
}

.np-home-dashboard-panel-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--np-body-muted);
}

.np-home-dashboard-panel-value {
    margin-top: 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--np-heading);
}

.np-home-dashboard-panel-note {
    margin-top: 0.35rem;
    font-size: 0.6875rem;
    color: var(--np-body-muted);
}

.np-home-dashboard-chart {
    margin-top: 0.65rem;
    width: 100%;
    height: auto;
}

.np-home-dashboard-metric {
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    opacity: 0;
    animation: np-fade-up 0.5s var(--np-ease) both;
    transition: transform 0.35s var(--np-ease), border-color 0.35s;
}

.np-home-dashboard-grid .np-home-dashboard-metric:nth-child(3) { animation-delay: 0.85s; }
.np-home-dashboard-grid .np-home-dashboard-metric:nth-child(4) { animation-delay: 0.95s; }
.np-home-dashboard-grid .np-home-dashboard-metric:nth-child(5) { animation-delay: 1.05s; }

.np-home-dashboard-metric:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.25);
}

.np-home-dashboard-chart-line {
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
}

.np-home-dashboard-chart-fill {
    opacity: 0;
    transform-origin: center bottom;
}

.np-home-dashboard.is-live .np-home-dashboard-chart-line {
    animation: np-home-chart-draw 1.35s var(--np-ease) 0.9s forwards;
}

.np-home-dashboard.is-live .np-home-dashboard-chart-fill {
    animation: np-home-chart-fill-in 1s var(--np-ease) 1.1s forwards;
}

.np-home-dashboard-metric-value {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--np-green-bright);
    animation: np-home-live-pulse 2.8s ease-in-out 1.2s infinite;
}

.np-home-features {
    position: relative;
    padding-block: clamp(4.5rem, 8vw, 6.75rem);
    background: #fff;
}

.np-home-features-head {
    text-align: center;
    max-width: 42rem;
    margin-inline: auto;
}

.np-home-features-title {
    margin-top: 0.85rem;
    font-size: clamp(1.75rem, 3vw, 2.625rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--np-heading);
}

.np-home-features-sub {
    margin-top: 0.85rem;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--np-body-muted);
}

.np-home-feature-grid {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .np-home-feature-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.np-home-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--np-green-bright);
}

.np-home-section-label::before {
    content: '';
    height: 0.375rem;
    width: 0.375rem;
    border-radius: 9999px;
    background: var(--np-accent-red);
    animation: np-pulse-glow 2.5s ease-in-out infinite;
}

.np-home-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.75rem 1.5rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #e8edf0;
    box-shadow: 0 4px 28px -10px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s var(--np-ease), box-shadow 0.35s, border-color 0.35s;
}

.np-home-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.32);
    box-shadow: 0 22px 44px -18px rgba(16, 185, 129, 0.14);
}

.np-home-feature-icon {
    display: inline-flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: var(--np-green-mist);
    color: var(--np-green-primary);
    transition: transform 0.35s var(--np-ease), background 0.35s, box-shadow 0.35s;
}

.np-home-feature-card:hover .np-home-feature-icon {
    transform: scale(1.06);
    background: var(--np-green-soft);
    box-shadow: 0 8px 20px -10px rgba(16, 185, 129, 0.25);
}

.np-home-feature-card h3 {
    margin-top: 1.1rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--np-heading);
}

.np-home-feature-card p {
    margin-top: 0.65rem;
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--np-body-muted);
}

.np-home-feature-arrow {
    margin-top: 1.25rem;
    align-self: flex-end;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--np-accent-red);
    transition: transform 0.25s var(--np-ease);
}

.np-home-feature-card:hover .np-home-feature-arrow {
    transform: translate(2px, -2px);
}

.np-home-whats-new {
    position: relative;
    padding-block: clamp(4.5rem, 8vw, 6.75rem);
    background: linear-gradient(180deg, #071912 0%, #0b2e1f 100%);
    color: #fff;
}

.np-home-whats-new .np-home-features-title,
.np-home-whats-new .np-home-section-label {
    color: #fff;
}

.np-home-whats-new .np-home-features-sub {
    color: rgba(226, 232, 240, 0.78);
}

.np-home-whats-grid {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .np-home-whats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.np-home-whats-card {
    padding: 1.35rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.np-home-whats-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.np-home-whats-tag {
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.14);
    padding: 0.15rem 0.55rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6ee7b7;
}

.np-home-whats-card-body {
    margin-top: 0.55rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(203, 213, 225, 0.88);
}

.np-home-whats-new .np-home-btn-outline,
.np-home-whats-new-btn {
    border-color: rgba(255, 255, 255, 0.35);
    background-color: transparent;
    background-image: none;
    color: #fff;
}

.np-home-whats-new .np-home-btn-outline:hover,
.np-home-whats-new-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.35);
}

.np-home-whats-new-cta {
    margin-top: 2rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.np-home-trust-strip-wrap {
    padding-block: clamp(2rem, 4vw, 3rem) clamp(5.5rem, 8vw, 7.5rem);
    background: #fff;
}

.np-home-stats-bar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.75rem);
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--np-header-deep) 0%, var(--np-header) 45%, var(--np-header-mid) 100%);
    box-shadow: 0 24px 60px -24px rgba(0, 61, 41, 0.55);
    overflow: hidden;
    position: relative;
}

.np-home-stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 14px),
        repeating-linear-gradient(-45deg, rgba(16, 185, 129, 0.08) 0 2px, transparent 2px 18px);
    pointer-events: none;
}

@media (min-width: 900px) {
    .np-home-stats-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.np-home-stats-copy {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    max-width: 22rem;
}

.np-home-stats-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}

.np-home-stats-sub {
    margin-top: 0.35rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(167, 243, 208, 0.75);
}

.np-home-stats-bar-dot {
    position: relative;
    flex-shrink: 0;
    margin-top: 0.35rem;
    height: 0.625rem;
    width: 0.625rem;
    border-radius: 9999px;
    background: var(--np-accent-red);
    box-shadow: 0 0 12px rgba(244, 42, 65, 0.65);
}

.np-home-stats-bar-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: rgba(244, 42, 65, 0.35);
    animation: np-pulse-glow 2s ease-in-out infinite;
}

.np-home-stats-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    width: 100%;
}

@media (min-width: 640px) {
    .np-home-stats-metrics {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0;
        width: auto;
    }
}

.np-home-stat-metric {
    text-align: center;
    min-width: 5.5rem;
}

@media (min-width: 640px) {
    .np-home-stat-metric {
        padding-inline: 1.25rem;
    }
}

.np-home-stat-value {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.np-home-stat-label {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: rgba(167, 243, 208, 0.72);
}

.np-home-stat-divider {
    display: none;
    width: 1px;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.14);
}

@media (min-width: 640px) {
    .np-home-stat-divider {
        display: block;
    }
}

.np-home-footer-light {
    background: #fff;
    border-top: 1px solid #e8edf0;
    color: var(--np-body-muted);
}

.np-home-mobile-nav.np-open {
    display: block;
    animation: np-fade-down 0.35s var(--np-ease) both;
}

.np-home-menu-btn[aria-expanded="true"] .np-home-icon-open {
    display: none;
}

.np-home-menu-btn[aria-expanded="true"] .np-home-icon-close {
    display: block;
}

@keyframes np-home-preview-in {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes np-home-dashboard-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes np-home-bg-drift {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-1.5%, 1%, 0) scale(1.015);
    }
}

@keyframes np-home-bg-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.75;
    }
    50% {
        transform: translate(-12px, 10px) scale(1.08);
        opacity: 1;
    }
}

@keyframes np-home-glow-pulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.04); }
}

@keyframes np-home-chart-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes np-home-chart-fill-in {
    to { opacity: 1; }
}

@keyframes np-home-live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.62; }
}

/* Hero load stagger */
.np-home-fade-up {
    animation: np-fade-up 0.85s var(--np-ease) both;
}

.np-home-fade-up-delay-1 { animation-delay: 0.1s; }
.np-home-fade-up-delay-2 { animation-delay: 0.22s; }
.np-home-fade-up-delay-3 { animation-delay: 0.34s; }
.np-home-fade-up-delay-4 { animation-delay: 0.46s; }

.np-home-trust-block {
    opacity: 0;
    animation: np-fade-up 0.6s var(--np-ease) both;
}

.np-home-trust-stagger-1 { animation-delay: 0.38s; }
.np-home-trust-stagger-2 { animation-delay: 0.5s; }
.np-home-trust-stagger-3 { animation-delay: 0.62s; }

html.np-js .np-home-stats-bar.np-visible .np-home-stat-metric {
    opacity: 0;
    animation: np-fade-up 0.55s var(--np-ease) both;
}

html.np-js .np-home-stats-bar.np-visible .np-home-stat-stagger-1 { animation-delay: 0.08s; }
html.np-js .np-home-stats-bar.np-visible .np-home-stat-stagger-2 { animation-delay: 0.18s; }
html.np-js .np-home-stats-bar.np-visible .np-home-stat-stagger-3 { animation-delay: 0.28s; }
html.np-js .np-home-stats-bar.np-visible .np-home-stat-stagger-4 { animation-delay: 0.38s; }

html.np-js .np-home-stats-bar.np-visible .np-home-stats-copy {
    animation: np-fade-up 0.65s var(--np-ease) both;
}

/* Light auth / register shell */
body.np-auth-light {
    background:
        radial-gradient(50% 40% at 80% 0%, rgba(16, 185, 129, 0.08) 0%, transparent 55%),
        linear-gradient(to bottom right, var(--np-paper), #fff, #ecfdf5);
}

.np-auth-card {
    border-color: rgba(16, 185, 129, 0.12);
    box-shadow: 0 24px 48px -24px rgba(16, 185, 129, 0.2);
}

.np-btn-primary-solid {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
}

.np-btn-primary-solid:hover {
    background: linear-gradient(135deg, #047857, #059669);
}

.np-marketing-footer a:hover {
    color: var(--np-brand-light);
}

@media (max-width: 1023px) {
    .np-home-header-inner {
        grid-template-columns: 1fr auto;
    }

    .np-home-menu-btn {
        grid-column: 2;
    }
}

@media (max-width: 767px) {
    .np-home-dashboard {
        min-height: 18rem;
    }
}

/* Site footer — managed website settings */
.np-site-footer {
    margin-top: auto;
}

.np-site-footer-dark {
    background: linear-gradient(180deg, var(--np-header-deep) 0%, var(--np-header) 100%);
    color: rgba(236, 253, 245, 0.88);
    border-top: 1px solid rgba(16, 185, 129, 0.12);
}

.np-site-footer-light {
    background: #fff;
    color: var(--np-body-muted);
    border-top: 1px solid #e8edf0;
}

.np-site-footer-inner {
    max-width: 87.5rem;
    margin-inline: auto;
    padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 4vw, 5rem) 2rem;
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .np-site-footer-inner {
        grid-template-columns: 1.1fr 1.5fr 0.95fr;
        align-items: start;
    }
}

.np-site-footer-payments-col {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 1.25rem;
}

@media (min-width: 900px) {
    .np-site-footer-payments-col {
        justify-content: center;
        align-self: end;
        margin-top: 2.5rem;
    }
}

.np-site-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: inherit;
}

.np-site-footer-description {
    margin-top: 1rem;
    max-width: 26rem;
    line-height: 1.65;
    color: rgba(167, 243, 208, 0.78);
}

.np-site-footer-light .np-site-footer-description {
    color: var(--np-body-muted);
}

.np-site-footer-contact {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.875rem;
}

.np-site-footer-contact a:hover {
    color: #fff;
}

.np-site-footer-links-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .np-site-footer-links-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.np-site-footer-links-title {
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(167, 243, 208, 0.72);
}

.np-site-footer-light .np-site-footer-links-title {
    color: var(--np-green-bright);
}

.np-site-footer-links-col ul {
    display: grid;
    gap: 0.55rem;
}

.np-site-footer-links-col a {
    font-size: 0.9375rem;
    color: rgba(236, 253, 245, 0.82);
    transition: color 0.2s, transform 0.2s;
}

.np-site-footer-links-col a:hover {
    color: #fff;
    transform: translateX(2px);
}

.np-site-footer-light .np-site-footer-links-col a {
    color: var(--np-body-muted);
}

.np-site-footer-light .np-site-footer-links-col a:hover {
    color: var(--np-heading);
}

.np-site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem clamp(1rem, 4vw, 5rem) 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    font-size: 0.8125rem;
    color: rgba(167, 243, 208, 0.65);
}

.np-site-footer-bottom > p {
    margin: 0;
}

.np-site-footer-credit {
    margin-left: auto;
    text-align: right;
}

.np-site-footer-credit a {
    color: #a7f3d0;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.np-site-footer-credit a:hover {
    color: #fff;
}

.np-site-footer-light .np-site-footer-bottom {
    border-top-color: #e8edf0;
    color: var(--np-body-muted);
}

.np-site-footer-light .np-site-footer-credit a {
    color: var(--np-green-bright);
}

.np-site-footer-light .np-site-footer-credit a:hover {
    color: var(--np-heading);
}

@media (max-width: 640px) {
    .np-site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .np-site-footer-credit {
        margin-left: 0;
        text-align: left;
    }
}

.np-footer-payments {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 18rem;
    text-align: center;
    width: 100%;
}

.np-footer-payments-label {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(167, 243, 208, 0.72);
}

.np-site-footer-light .np-footer-payments-label {
    color: var(--np-green-bright);
}

.np-footer-payments-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.np-pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 1.85rem;
    padding: 0.2rem 0.55rem;
    border-radius: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.np-site-footer-light .np-pay-badge {
    border-color: #e5e7eb;
    background: #fff;
    color: #111827;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.np-pay-badge svg {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
}

.np-pay-bkash {
    background: #e2136e;
    border-color: transparent;
    color: #fff;
}

.np-pay-nagad {
    background: #f15a29;
    border-color: transparent;
    color: #fff;
}

.np-pay-rocket {
    background: #8c3494;
    border-color: transparent;
    color: #fff;
}

.np-pay-upay {
    background: #086c3c;
    border-color: transparent;
    color: #fff;
}

.np-pay-visa {
    background: #1a1f71;
    border-color: transparent;
    color: #fff;
    min-width: 2.75rem;
    justify-content: center;
}

.np-pay-wordmark {
    font-style: italic;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.np-pay-mastercard {
    background: #1f2937;
    border-color: transparent;
    color: #fff;
}

.np-pay-mc {
    display: inline-flex;
    width: 1.15rem;
    height: 0.75rem;
    position: relative;
}

.np-pay-mc i {
    position: absolute;
    top: 0;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
}

.np-pay-mc i:first-child {
    left: 0;
    background: #eb001b;
}

.np-pay-mc i:last-child {
    right: 0;
    background: #f79e1b;
    opacity: 0.95;
}

.np-footer-social {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.np-footer-social-link {
    display: inline-flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(236, 253, 245, 0.9);
    transition: transform 0.25s var(--np-ease), background 0.25s, border-color 0.25s, color 0.25s;
}

.np-footer-social-link:hover {
    transform: translateY(-2px);
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.35);
    color: #fff;
}

.np-site-footer-light .np-footer-social-link {
    border-color: #e5e7eb;
    background: #fff;
    color: var(--np-green-primary);
}

.np-footer-app-badges {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.np-footer-app-badge {
    display: inline-flex;
    line-height: 0;
    border-radius: 0.45rem;
    overflow: hidden;
    transition: transform 0.25s var(--np-ease), box-shadow 0.25s var(--np-ease);
}

.np-footer-app-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.np-footer-app-badge-img {
    display: block;
    height: 2.75rem;
    width: auto;
    max-width: 100%;
}

.np-live-chat {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 70;
}

.np-live-chat-launcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border: 0;
    border-radius: 9999px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    box-shadow: 0 16px 36px rgba(5, 150, 105, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.np-live-chat-launcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.42);
}

.np-live-chat-panel {
    position: absolute;
    right: 0;
    bottom: 4.5rem;
    width: min(22rem, calc(100vw - 2.5rem));
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.25);
    background: #fff;
    color: #0f172a;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
}

.np-live-chat-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1rem 0.85rem;
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
    color: #fff;
}

.np-live-chat-kicker {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(209, 250, 229, 0.85);
}

.np-live-chat-title {
    margin: 0.2rem 0 0;
    font-size: 1rem;
    font-weight: 700;
}

.np-live-chat-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
}

.np-live-chat-body,
.np-live-chat-compose {
    padding: 1rem;
}

.np-live-chat-intro {
    margin: 0 0 0.85rem;
    font-size: 0.875rem;
    color: #475569;
}

.np-live-chat-input {
    width: 100%;
    margin-bottom: 0.65rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.65rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.875rem;
}

.np-live-chat-input:focus {
    outline: 2px solid rgba(16, 185, 129, 0.35);
    border-color: #10b981;
}

.np-live-chat-submit {
    width: 100%;
    border: 0;
    border-radius: 0.65rem;
    padding: 0.7rem 0.85rem;
    background: #059669;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

.np-live-chat-messages {
    max-height: 16rem;
    overflow-y: auto;
    padding: 1rem;
    background: #f8fafc;
}

.np-live-chat-message {
    max-width: 85%;
    margin-bottom: 0.55rem;
    border-radius: 0.85rem;
    padding: 0.55rem 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.np-live-chat-message-visitor {
    margin-left: auto;
    background: #059669;
    color: #fff;
}

.np-live-chat-message-agent {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
}

.np-live-chat-empty {
    margin: 0;
    font-size: 0.8125rem;
    color: #64748b;
    text-align: center;
}

.np-live-chat-compose {
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid #e2e8f0;
}

.np-live-chat-compose .np-live-chat-input {
    margin-bottom: 0;
}

.np-live-chat-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    border: 0;
    border-radius: 0.65rem;
    background: #059669;
    color: #fff;
    cursor: pointer;
}

.np-live-chat-error {
    margin: -0.35rem 0 0.55rem;
    font-size: 0.75rem;
    color: #dc2626;
}

/* ─── Premium Pricing ─── */
.np-pricing-page {
    position: relative;
    min-height: 100%;
}

.np-pricing-ambient {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.np-pricing-ambient::before,
.np-pricing-ambient::after {
    content: '';
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    opacity: 0.45;
}

.np-pricing-ambient::before {
    top: -12%;
    left: 18%;
    width: 42vw;
    height: 42vw;
    max-width: 520px;
    max-height: 520px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.28), transparent 70%);
    animation: np-pricing-drift 18s ease-in-out infinite;
}

.np-pricing-ambient::after {
    right: -8%;
    bottom: 8%;
    width: 36vw;
    height: 36vw;
    max-width: 420px;
    max-height: 420px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.22), transparent 70%);
    animation: np-pricing-drift 22s ease-in-out infinite reverse;
}

@keyframes np-pricing-drift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(2%, -3%, 0) scale(1.05); }
}

.np-pricing-shell {
    position: relative;
    z-index: 1;
}

.np-pricing-page > .np-site-footer,
.np-pricing-page .np-site-footer {
    position: relative;
    z-index: 1;
}

.np-pricing-hero {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto;
}

.np-pricing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--np-brand-mist);
}

.np-pricing-title {
    margin-top: 0.85rem;
    font-family: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: #fff;
}

.np-pricing-sub {
    margin: 1rem auto 0;
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(203, 213, 225, 0.88);
}

.np-pricing-fade {
    opacity: 0;
    animation: np-fade-up 0.85s var(--np-ease) both;
}

.np-pricing-fade-1 { animation-delay: 0.05s; }
.np-pricing-fade-2 { animation-delay: 0.16s; }
.np-pricing-fade-3 { animation-delay: 0.28s; }

.np-billing-switch {
    position: relative;
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    padding: 0.28rem;
    margin: 1.75rem auto 0;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    min-width: 15.5rem;
}

.np-billing-switch-pill {
    position: absolute;
    top: 0.28rem;
    bottom: 0.28rem;
    left: 0.28rem;
    width: calc(50% - 0.28rem);
    border-radius: 9999px;
    background: linear-gradient(180deg, #10b981, #059669);
    box-shadow: 0 8px 20px -10px rgba(16, 185, 129, 0.8);
    transition: transform 0.35s var(--np-ease);
    z-index: 0;
}

.np-billing-switch[data-interval="yearly"] .np-billing-switch-pill {
    transform: translateX(100%);
}

.np-billing-toggle {
    position: relative;
    z-index: 1;
    border: 0;
    background: transparent;
    border-radius: 9999px;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(226, 232, 240, 0.72);
    cursor: pointer;
    transition: color 0.25s ease;
}

.np-billing-toggle[aria-pressed="true"] {
    color: #fff;
}

.np-pricing-deck {
    display: grid;
    gap: 1rem;
    margin: 2.75rem auto 0;
    width: 100%;
    max-width: 86rem;
}

@media (min-width: 768px) {
    .np-pricing-deck {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.1rem;
    }
}

@media (min-width: 1100px) {
    .np-pricing-deck {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: stretch;
        gap: 0.85rem;
    }
}

.np-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.35rem 1.2rem 1.25rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        #0d2419;
    box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    animation: np-pricing-card-in 0.75s var(--np-ease) both;
    transition:
        transform 0.35s var(--np-ease),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.np-pricing-card:nth-child(1) { animation-delay: 0.18s; }
.np-pricing-card:nth-child(2) { animation-delay: 0.26s; }
.np-pricing-card:nth-child(3) { animation-delay: 0.34s; }
.np-pricing-card:nth-child(4) { animation-delay: 0.42s; }
.np-pricing-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes np-pricing-card-in {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.np-pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 211, 153, 0.35);
    box-shadow: 0 28px 50px -28px rgba(16, 185, 129, 0.35);
}

.np-pricing-card:focus-within {
    outline: 2px solid rgba(16, 185, 129, 0.55);
    outline-offset: 3px;
}

.np-pricing-card.is-featured {
    border-color: rgba(16, 185, 129, 0.55);
    background:
        linear-gradient(180deg, rgba(16, 185, 129, 0.14), rgba(13, 36, 25, 0.96)),
        #0d2419;
    box-shadow:
        0 0 0 1px rgba(16, 185, 129, 0.22),
        0 30px 60px -30px rgba(16, 185, 129, 0.45);
    z-index: 2;
}

@media (min-width: 1100px) {
    .np-pricing-card.is-featured {
        transform: translateY(-10px) scale(1.03);
    }

    .np-pricing-card.is-featured:hover {
        transform: translateY(-14px) scale(1.03);
    }
}

.np-pricing-badge {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    border-radius: 9999px;
    background: linear-gradient(180deg, #34d399, #10b981);
    color: #042f1e;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    box-shadow: 0 10px 20px -12px rgba(16, 185, 129, 0.9);
}

.np-pricing-card-name {
    font-family: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.np-pricing-card-subtitle {
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: rgba(167, 243, 208, 0.9);
}

.np-pricing-amount {
    margin-top: 1.15rem;
    min-height: 4.25rem;
}

.np-pricing-amount-value {
    display: block;
    font-family: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
    font-size: clamp(1.55rem, 1.2vw + 1rem, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.1;
}

.np-pricing-amount-period {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.78rem;
    color: rgba(148, 163, 184, 0.95);
}

.np-price-swap {
    animation: np-pricing-price-in 0.35s var(--np-ease) both;
}

@keyframes np-pricing-price-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.np-pricing-desc {
    margin-top: 0.85rem;
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(148, 163, 184, 0.95);
    min-height: 2.4rem;
}

.np-pricing-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    gap: 0.55rem;
    flex: 1;
}

.np-pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgba(226, 232, 240, 0.88);
}

.np-pricing-feature svg {
    width: 0.9rem;
    height: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    color: #34d399;
}

.np-pricing-feature-value {
    margin-left: auto;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.np-pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1.15rem;
    border-radius: 0.9rem;
    border: 0;
    padding: 0.8rem 0.9rem;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s var(--np-ease), background 0.25s ease, box-shadow 0.25s ease;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.np-pricing-cta:hover {
    transform: translateY(-1px);
    background: rgba(16, 185, 129, 0.18);
}

.np-pricing-card.is-featured .np-pricing-cta {
    background: linear-gradient(180deg, #34d399, #059669);
    color: #042f1e;
    box-shadow: 0 14px 28px -16px rgba(16, 185, 129, 0.9);
}

.np-pricing-card.is-featured .np-pricing-cta:hover {
    background: linear-gradient(180deg, #6ee7b7, #10b981);
}

.np-pricing-empty {
    margin: 3rem auto 0;
    max-width: 28rem;
    text-align: center;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    padding: 2.5rem 1.5rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .np-reveal,
    .np-home-fade-up,
    .np-home-dashboard,
    .np-home-trust-block,
    .np-home-dashboard-panel,
    .np-home-dashboard-metric,
    .np-home-stat-metric,
    .np-pricing-fade,
    .np-pricing-card,
    .np-pricing-ambient::before,
    .np-pricing-ambient::after {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .np-home-dashboard-chart-line {
        stroke-dashoffset: 0;
    }

    .np-home-dashboard-chart-fill {
        opacity: 1;
    }
}
